电速宝
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

index.wxml 2.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <!--pages/balance/index.wxml-->
  2. <view class="setup">
  3. <view class="balance">
  4. <view>总余额</view>
  5. <view class="money"><text class="money1">¥</text> <text class="moneys">{{accountdata.balance}}</text></view>
  6. <view class="top_up" bind:tap="ontopup">充值</view>
  7. <view class="withdraw" bind:tap="onwithdraw">提现</view>
  8. </view>
  9. <view class="balance_list">
  10. <view class="allocation" data-name="bill" bind:tap="ondetails">
  11. <view class="allocation_3">账单明细</view>
  12. <view class="allocation_1">
  13. <view class="allocation_2"></view>
  14. <t-icon name="chevron-right-s" size="40rpx" data-name="chevron-right-s"/>
  15. </view>
  16. </view>
  17. <view class="allocation" data-name="withdraw" bind:tap="ondetails">
  18. <view class="allocation_3">提现明细</view>
  19. <view class="allocation_1">
  20. <view class="allocation_2"></view>
  21. <t-icon name="chevron-right-s" size="40rpx" data-name="chevron-right-s"/>
  22. </view>
  23. </view>
  24. <view class="allocation" data-name="topup" bind:tap="ondetails">
  25. <view class="allocation_3">充值明细</view>
  26. <view class="allocation_1">
  27. <view class="allocation_2"></view>
  28. <t-icon name="chevron-right-s" size="40rpx" data-name="chevron-right-s"/>
  29. </view>
  30. </view>
  31. <view class="allocation" data-name="bankcard" bind:tap="ondetails">
  32. <view class="allocation_3">银行卡管理</view>
  33. <view class="allocation_1">
  34. <view class="allocation_2"></view>
  35. <t-icon name="chevron-right-s" size="40rpx" data-name="chevron-right-s"/>
  36. </view>
  37. </view>
  38. <view class="allocation" data-name="invoice" bind:tap="ondetails">
  39. <view class="allocation_3">重置结算密码</view>
  40. <view class="allocation_1">
  41. <view class="allocation_2"></view>
  42. <t-icon name="chevron-right-s" size="40rpx" data-name="chevron-right-s"/>
  43. </view>
  44. </view>
  45. </view>
  46. <view class="balance_list">
  47. <view class="allocation" data-name="balance" bind:tap="ondetails">
  48. <view class="allocation_3">温馨提示</view>
  49. </view>
  50. </view>
  51. </view>
  52. <t-popup
  53. visible="{{visible}}"
  54. bind:visible-change="onVisibleChange1"
  55. placement="bottom"
  56. >
  57. <view class="driverpopup">
  58. <view class="driverpopup_title">提现到银行卡</view>
  59. <!-- <view class="driverpopup_box" data-index="1" bind:tap="selected_wx">
  60. <view class="picker">
  61. <view>提现到微信</view>
  62. <view class="selected" wx:if="{{selectedtype==1}}">✔</view>
  63. </view>
  64. </view> -->
  65. <view class="driverpopup_box" data-index="1" bind:tap="selected_wx">
  66. <view class="picker">
  67. <view>***9908 工商银行</view>
  68. <view class="selected" wx:if="{{selectedtype==1}}">✔</view>
  69. </view>
  70. </view>
  71. <view class="driverpopup_box" data-index="2" bind:tap="selected_wx">
  72. <view class="picker">
  73. <view>***2207 农业银行</view>
  74. <view class="selected" wx:if="{{selectedtype==2}}">✔</view>
  75. </view>
  76. </view>
  77. <view style="height: 80rpx;"></view>
  78. <view class="botton">
  79. <view class="botton_box" bind:tap="submit">添加银行卡</view>
  80. </view>
  81. </view>
  82. </t-popup>
  83. <!--
  84. -->