Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
- <!-- <view class='location'>
- <image src='./../../../static/images/bannerbg.png'></image>
- </view> -->
-
- <view class="beforeTransaction">
- <view class="fee">交易流水实收金额</view>
- <view class="fee">{{list.length > 0 ? list[0].amount : 0}} 元</view>
- <!-- <view class="fee">{{total}} 笔</view>-->
- </view>
-
- <view class="findByDate" bindtap="findByDate">
- <view class="dateTime">{{dateTime}}</view>
- <view class="find">按日期查询</view>
- </view>
-
- <view class='transaction'>
- <view>
- <view class='hide' wx:if='{{list.length==0}}'>
- <image class='jiaoyi' src='./../../../static/images/jiaoyi.png' mode='widthFix'></image>
- <text>暂无数据</text>
- </view>
- <view class='transaction_msg' wx:for='{{list}}' wx:key="index" wx:if="{{list.length!=0}}">
- <view>
- <text>交易金额</text>
- <text>{{item.payAmount}}</text>
- </view>
- <view>
- <text>退款金额</text>
- <text>{{item.refundAmount}}</text>
- </view>
- <view>
- <text>实收金额</text>
- <text>{{item.amount}}</text>
- </view>
- </view>
-
- <view class='date' hover-class='active'>
- <view class='picker'>
- <picker mode="date" value="{{dateTime}}" start="2018-01-01" end="{{endDateTime}}" bindchange="bindDateChange">
- <view class="picker">
- <icon class='iconfont icon-riliriqi'></icon>
- </view>
- </picker>
- </view>
- </view>
- <!-- <view class='hide' wx:if='{{maxIf==true}}'>
- <text>已经加载完成喽</text>
- </view> -->
- </view>
- </view>
|