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.

50 righe
1.5 KiB

  1. <!-- <view class='location'>
  2. <image src='./../../../static/images/bannerbg.png'></image>
  3. </view> -->
  4. <view class="beforeTransaction">
  5. <view class="fee">交易流水实收金额</view>
  6. <view class="fee">{{list.length > 0 ? list[0].amount : 0}} 元</view>
  7. <!-- <view class="fee">{{total}} 笔</view>-->
  8. </view>
  9. <view class="findByDate" bindtap="findByDate">
  10. <view class="dateTime">{{dateTime}}</view>
  11. <view class="find">按日期查询</view>
  12. </view>
  13. <view class='transaction'>
  14. <view>
  15. <view class='hide' wx:if='{{list.length==0}}'>
  16. <image class='jiaoyi' src='./../../../static/images/jiaoyi.png' mode='widthFix'></image>
  17. <text>暂无数据</text>
  18. </view>
  19. <view class='transaction_msg' wx:for='{{list}}' wx:key="index" wx:if="{{list.length!=0}}">
  20. <view>
  21. <text>交易金额</text>
  22. <text>{{item.payAmount}}</text>
  23. </view>
  24. <view>
  25. <text>退款金额</text>
  26. <text>{{item.refundAmount}}</text>
  27. </view>
  28. <view>
  29. <text>实收金额</text>
  30. <text>{{item.amount}}</text>
  31. </view>
  32. </view>
  33. <view class='date' hover-class='active'>
  34. <view class='picker'>
  35. <picker mode="date" value="{{dateTime}}" start="2018-01-01" end="{{endDateTime}}" bindchange="bindDateChange">
  36. <view class="picker">
  37. <icon class='iconfont icon-riliriqi'></icon>
  38. </view>
  39. </picker>
  40. </view>
  41. </view>
  42. <!-- <view class='hide' wx:if='{{maxIf==true}}'>
  43. <text>已经加载完成喽</text>
  44. </view> -->
  45. </view>
  46. </view>