开始做充值和发票
This commit is contained in:
@@ -1,25 +1,20 @@
|
||||
<!--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 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>
|
||||
<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>
|
||||
</picker>
|
||||
</view>
|
||||
<view class="recordsWrapper">
|
||||
<view class="recordsItem border" wx:for="{{list}}" wx:key="index">
|
||||
<view class="codeTime">
|
||||
<view class="code"> 表号:{{ item.meter.code }} </view>
|
||||
<view class="time"> {{ item.time }} </view>
|
||||
</view>
|
||||
<view class="money"> {{ item.money }} </view>
|
||||
</view>
|
||||
</scroll-view>
|
||||
</scrollPageWrapper>
|
||||
</view>
|
||||
</view>
|
||||
|
Reference in New Issue
Block a user