You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <view class="section">
- <view class="section__title">账单类型:</view>
- <picker class="pickerArr" bindchange="bindPickerChange" value="{{index}}" range="{{billtypes}}" range-key="name">
- <view class="picker">
- {{billTypesObj.name || '请选择'}}
- </view>
- </picker>
-
- <view class="tabLayer tc">
- <view class="picker_group">
- <view class="section__title">日期范围:</view>
- <picker mode="date" value="{{date}}" end="{{date}}" fields="day" bindchange="bindDateChange1">
- <view wx:if="{{!date}}" class="picker">开始日期</view>
- <view wx:if="{{date}}" class="picker">{{date}}</view>
- </picker>
- 至
- <picker mode="date" value="{{date2}}" start="{{date2}}" fields="day" bindchange="bindDateChange2">
- <view wx:if="{{!date2}}" class="picker">结束日期</view>
- <view wx:if="{{date2}}" class="picker">{{date2}}</view>
- </picker>
-
- </view>
- </view>
-
- <view class="section__title">查询范围:</view>
- <picker class="pickerArr" bindchange="bindPickerChange2" value="{{index}}" range="{{billScales}}" range-key="name">
- <view class="picker">
- {{billScalesObj.name || '请选择'}}
- </view>
- </picker>
- <button class='btns' hover-class='active1' bindtap='search' >查询</button>
- </view>
-
-
-
- <view class="table">
- <view class="tr bg-w">
- <view class="th">账单类型</view>
- <view class="th">账单周期</view>
- <view class="th">应付金额</view>
- <view class="th">已付金额</view>
- <view class="th">欠费金额</view>
- <view class="th">操作</view>
- </view>
- <block wx:for="{{list}}" wx:key="index">
- <view class="tr">
- <view class="td">{{item.billTypeName}}</view>
- <view class="td">起:{{item.starttime}} <text>止:{{item.endtime}}</text></view>
- <view class="td">{{item.receivePay}}</view>
- <view class="td">{{item.pay}}</view>
- <view class="td">{{item.owe}}</view>
- <view class="td">
- <button class='btn' bindtap='gotolook' data-data='{{item}}' data-id='{{item.id}}'>
- 查看
- </button>
- <button class='btn' bindtap='gotolook02' data-data='{{item}}' data-id='{{item.id}}'>
- 缴费
- </button>
- </view>
- </view>
- </block>
- </view>
|