完成简易版的充值和充值记录查询页面,简单的我的页面

This commit is contained in:
2024-02-21 16:24:39 +08:00
parent 719ee912a4
commit 66bc2262e4
517 changed files with 1092 additions and 12025 deletions

View File

@@ -0,0 +1,25 @@
<!--pages/rechargeRecord/index.wxml-->
<scrollPageWrapper>
<navigator title="充值记录" />
<scroll-view type="list" scroll-y style="display: flex; flex-direction: column; flex: 1; width: 100%; overflow: auto;">
<view class="wrapper" list-item>
<view>
<picker bindchange="onChangeYear" value="{{index}}" range="{{years}}">
<view class="yearPicker">
{{ year }}年
<image src="/assets/images/down.png" mode="" class="down" />
</view>
</picker>
</view>
<view class="recordsWrapper">
<view class="recordsItem border" wx:for="{{list}}">
<view class="codeTime">
<view class="code"> 表号:{{ item.code }} </view>
<view class="time"> {{ item.time }} </view>
</view>
<view class="money"> {{ item.money }} </view>
</view>
</view>
</view>
</scroll-view>
</scrollPageWrapper>