first commit
This commit is contained in:
3
apps/miniprogram/pages/about-feedback/index.js
Normal file
3
apps/miniprogram/pages/about-feedback/index.js
Normal file
@@ -0,0 +1,3 @@
|
||||
const { createAboutDetailPage } = require("../../utils/aboutPageFactory");
|
||||
|
||||
Page(createAboutDetailPage("feedback"));
|
||||
9
apps/miniprogram/pages/about-feedback/index.json
Normal file
9
apps/miniprogram/pages/about-feedback/index.json
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"navigationBarTitleText": "问题反馈",
|
||||
"navigationBarBackgroundColor": "#f4f3ef",
|
||||
"navigationBarTextStyle": "black",
|
||||
"disableScroll": true,
|
||||
"usingComponents": {
|
||||
"bottom-nav": "/components/bottom-nav/index"
|
||||
}
|
||||
}
|
||||
35
apps/miniprogram/pages/about-feedback/index.wxml
Normal file
35
apps/miniprogram/pages/about-feedback/index.wxml
Normal file
@@ -0,0 +1,35 @@
|
||||
<view class="about-page" style="{{themeStyle}}">
|
||||
<scroll-view class="about-scroll" scroll-y="true">
|
||||
<view class="about-shell">
|
||||
<view class="about-bg-orb about-bg-orb-left"></view>
|
||||
<view class="about-bg-orb about-bg-orb-right"></view>
|
||||
|
||||
<view class="about-stack">
|
||||
<view class="detail-chip">{{brand.chineseName}}</view>
|
||||
<view class="detail-card">
|
||||
<text class="detail-title">{{pageContent.title}}</text>
|
||||
<text class="detail-lead">{{pageContent.lead}}</text>
|
||||
</view>
|
||||
|
||||
<view wx:for="{{pageContent.sections}}" wx:key="title" class="detail-card detail-section-list">
|
||||
<view class="detail-section-head">
|
||||
<text class="detail-section-title">{{item.title}}</text>
|
||||
<button
|
||||
wx:if="{{item.actionLabel}}"
|
||||
class="detail-bubble-action"
|
||||
bindtap="onCopyFeedbackEmail"
|
||||
>{{item.actionLabel}}</button>
|
||||
</view>
|
||||
<text wx:for="{{item.paragraphs}}" wx:key="index" class="detail-paragraph">{{item}}</text>
|
||||
<view wx:if="{{item.bullets && item.bullets.length}}" class="detail-bullet-list">
|
||||
<view wx:for="{{item.bullets}}" wx:key="index" class="detail-bullet-row">
|
||||
<text class="detail-bullet-dot">•</text>
|
||||
<text class="detail-bullet-text">{{item}}</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</scroll-view>
|
||||
<bottom-nav page="about-feedback" />
|
||||
</view>
|
||||
1
apps/miniprogram/pages/about-feedback/index.wxss
Normal file
1
apps/miniprogram/pages/about-feedback/index.wxss
Normal file
@@ -0,0 +1 @@
|
||||
@import "../about/common.wxss";
|
||||
Reference in New Issue
Block a user