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.

61 lines
2.7 KiB

  1. <!--pagesA/orderList/orderList.wxml-->
  2. <view class="loglist">
  3. <van-tabs active="{{ active }}" color="#419AFE" sticky bind:change="onChange">
  4. <van-tab title="待支付">
  5. <view wx:for="{{orderLogList}}" wx:key="locklogList" class="box" style="margin-bottom: 10px;">
  6. <van-cell-group>
  7. <van-cell title="租客:" value="{{item.cardName}}" />
  8. <van-cell title="电话:" value="{{item.phone}}" />
  9. <van-cell title="租金:" value="{{item.siteFee}}" />
  10. <van-cell title="水费:" value="{{item.waterFee}}" />
  11. <van-cell title="电费:" value="{{item.electricityFee}}" />
  12. <van-cell title="总金额:" value="{{item.totalFee}}" />
  13. <van-cell title="创建时间:" value="{{item.createTime}}" />
  14. <van-cell title="操作:">
  15. <van-button slot="right-icon" type="primary" round size="mini" bindtap="rentMethods" data-item="{{item}}">去支付</van-button>
  16. </van-cell>
  17. </van-cell-group>
  18. </view>
  19. </van-tab>
  20. <van-tab title="已支付">
  21. <view wx:for="{{orderLogList}}" wx:key="locklogListOne" class="box" style="margin-bottom: 10px;">
  22. <van-cell-group>
  23. <van-cell title="租客:" value="{{item.cardName}}" />
  24. <van-cell title="电话:" value="{{item.phone}}" />
  25. <van-cell title="租金:" value="{{item.siteFee}}" />
  26. <van-cell title="水费:" value="{{item.waterFee}}" />
  27. <van-cell title="电费:" value="{{item.electricityFee}}" />
  28. <van-cell title="总金额:" value="{{item.totalFee}}" />
  29. <van-cell title="创建时间:" value="{{item.createTime}}" />
  30. </van-cell-group>
  31. </view>
  32. </van-tab>
  33. <van-tab title="未支付">
  34. <view wx:for="{{orderLogList}}" wx:key="locklogListTwo" class="box" style="margin-bottom: 10px;">
  35. <van-cell-group>
  36. <van-cell title="租客:" value="{{item.cardName}}" />
  37. <van-cell title="电话:" value="{{item.phone}}" />
  38. <van-cell title="租金:" value="{{item.siteFee}}" />
  39. <van-cell title="水费:" value="{{item.waterFee}}" />
  40. <van-cell title="电费:" value="{{item.electricityFee}}" />
  41. <van-cell title="总金额:" value="{{item.totalFee}}" />
  42. <van-cell title="创建时间:" value="{{item.createTime}}" />
  43. </van-cell-group>
  44. </view>
  45. </van-tab>
  46. </van-tabs>
  47. </view>
  48. <van-dialog
  49. use-slot
  50. title="支付方式"
  51. show="{{ show }}"
  52. show-cancel-button
  53. bind:close="onClose"
  54. bind:confirm="confirmMethods"
  55. >
  56. <van-radio-group value="{{ radio }}" bind:change="onChangeRadio" class="groupRadio">
  57. <van-radio name="2" class="radioView">现金</van-radio>
  58. <van-radio name="3" class="radioView">刷卡</van-radio>
  59. <van-radio name="0" class="radioView">微信支付</van-radio>
  60. </van-radio-group>
  61. </van-dialog>