完成简易版的充值和充值记录查询页面,简单的我的页面
This commit is contained in:
25
pages/rechargeRecord/index.wxml
Normal file
25
pages/rechargeRecord/index.wxml
Normal 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>
|
Reference in New Issue
Block a user