修改缴费记录和对公

This commit is contained in:
2024-09-10 11:07:45 +08:00
parent 6e2608925c
commit 8482453da0
11 changed files with 120 additions and 20 deletions

View File

@@ -1,7 +1,8 @@
{
"usingComponents": {
"navigator": "/components/navigator/index",
"scrollPageWrapper": "/components/scrollPageWrapper/index"
"scrollPageWrapper": "/components/scrollPageWrapper/index",
"empty": "/components/empty/index"
},
"navigationStyle": "custom"
}

View File

@@ -2,9 +2,12 @@
<scrollPageWrapper>
<navigator title="常见问题" canBack="{{true}}" />
<view class="content">
<view wx:for="{{questions}}" wx:key="index">
<view class="question"> {{index + 1}}、 {{ item.name }} </view>
<view class="answer"> {{ item.content }} </view>
<view wx:if="{{questions.length}}">
<view wx:for="{{questions}}" wx:key="index">
<view class="question"> {{index + 1}}、 {{ item.name }} </view>
<view class="answer"> {{ item.content }} </view>
</view>
</view>
<empty bind:refresh="getList" />
</view>
</scrollPageWrapper>