tuan_tixian_link.wxml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <view class="container">
  2. <view class='main-view'>
  3. <view class='panel extract'>
  4. <view class='commision-total'>
  5. <view class='span-title span'>
  6. 可提现金额
  7. </view>
  8. <view class='number span'>
  9. ¥{{info.money}}
  10. </view>
  11. <view wx:if="{{info.limit_money >0}}">(佣金满{{info.limit_money}}元可提现)</view>
  12. </view>
  13. <view class='panel extract-account'>
  14. <view class='side-nav'>
  15. <view class='account-none li'>
  16. <view class='spans'>
  17. <view class='span mlf10'>
  18. <view>用户名:{{info.bankname}}</view>
  19. <view>银行卡号:{{info.bankaccount}}</view>
  20. <view>银行名称:{{info.bankusername}}</view>
  21. </view>
  22. </view>
  23. </view>
  24. </view>
  25. </view>
  26. <view class='address_new mbt10'>
  27. <input type='digit' placeholder='提现金额' bindinput='tixian_money'></input>
  28. </view>
  29. <view class='button [radius round] red' bindtap='shenqing'>
  30. 立即申请
  31. </view>
  32. <view class='tables' wx:if="{{list}}">
  33. <view class='tal_tr'>
  34. 提现单号
  35. </view>
  36. <view class='tal_tr'>
  37. 提现金额
  38. </view>
  39. <view class='tal_tr'>
  40. 提现状态
  41. </view>
  42. <view class='tal_tr'>
  43. 提现时间
  44. </view>
  45. <view class='clr'></view>
  46. </view>
  47. <view id="tbodyshenqing" wx:for="{{list}}">
  48. <view class='tal_tr'>
  49. {{item.id}}
  50. </view>
  51. <view class='tal_tr'>
  52. {{item.money}}
  53. </view>
  54. <view class='tal_tr'>
  55. <text wx:if="{{item.state == 0}}">申请中</text>
  56. <text class='strongs' wx:if="{{item.state == 1}}">已到账</text>
  57. <text wx:if="{{item.state == 2}}">已拒绝</text>
  58. </view>
  59. <view class='tal_tr'>
  60. {{item.addtime}}
  61. </view>
  62. <view class='clr'></view>
  63. </view>
  64. <view wx:if="{{LoadingComplete}}" class="tips fl {{hidetip?'hide':''}} ">正在加载...</view>
  65. <view wx:else class="tips fl">{{tip_html}}</view>
  66. <view class='clr'></view>
  67. </view>
  68. </view>
  69. </view>