开始做充值,,调整了首页
This commit is contained in:
@@ -1,20 +1,35 @@
|
||||
<!--pages/rechargeRecord/index.wxml-->
|
||||
<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>
|
||||
<navigator title="缴费记录" canBack="{{true}}" bind:back="back" />
|
||||
<view class="chooseWrapper">
|
||||
<!-- <picker bindchange="onChangeYear" value="{{index}}" range="{{years}}"> -->
|
||||
<view class="yearPicker" bind:tap="clickYear">
|
||||
{{ year }}年
|
||||
<image src="/assets/images/down.png" mode="" class="down" />
|
||||
</view>
|
||||
<!-- </picker> -->
|
||||
<picker bindchange="onChangeYear" value="{{index}}" range="{{years}}">
|
||||
<view class="tenementPicker">
|
||||
<view wx:if="{{tenementName}}" class="tenementName"> {{ tenementName }} </view>
|
||||
<view wx:else> 全部 </view>
|
||||
<image src="/assets/images/down.png" mode="" class="down" />
|
||||
</view>
|
||||
</picker>
|
||||
<view class="allMoney">
|
||||
合计: 3000元
|
||||
</view>
|
||||
</view>
|
||||
<view class="wrapper">
|
||||
<view class="recordsWrapper">
|
||||
<view class="recordsItem border" wx:for="{{list}}" wx:key="index">
|
||||
<view class="recordsItem border" wx:for="{{list}}" wx:key="index" bind:tap="jumpToDetail" data-id="{{item.id}}">
|
||||
<view class="type"> 充值 </view>
|
||||
<view class="codeTime">
|
||||
<view class="code"> 表号:{{ item.meter.code }} </view>
|
||||
<view class="code"> {{ item.meter.address }} </view>
|
||||
<view class="time"> {{ item.time }} </view>
|
||||
</view>
|
||||
<view class="money"> {{ item.money }} </view>
|
||||
<view class="money"> {{ item.money }}元 </view>
|
||||
<van-icon name="arrow" />
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<custom-picker title="{{title}}" show="{{show}}" valueKey="name" columns="{{columns}}" bind:ok="onOk" bind:cancel="onCancel" type="{{type}}" />
|
Reference in New Issue
Block a user