withdrawal.wxml 4.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <view class="content">
  2. <uni-notice-bar bind:__l="__l" single="true" text="每月25号到月底可提现上月结算余额" vueId="1f6d1c66-1"></uni-notice-bar>
  3. <view class="content-money">
  4. <view class="flex ">
  5. <view class="buttom">
  6. <view class="icon">{{$root.f0}}</view>
  7. <text class="text">可提现佣金</text>
  8. </view>
  9. <view class="interval"></view>
  10. <view class="buttom">
  11. <view class=" icon">{{$root.f1}}</view>
  12. <text class="text">待审核提现佣金</text>
  13. </view>
  14. </view>
  15. </view>
  16. <view class="row-box">
  17. <view class="title">提现金额</view>
  18. <view class="row">
  19. <text class="tit">¥</text>
  20. <input bindinput="__e" class="input" data-event-opts="{{[ [ 'input',[ [ '__set_model',[ '','withdrawal','$event',[] ] ] ] ] ]}}" placeholder="{{'最低提现金额'+minPrice+'元'}}" placeholderClass="placeholder" type="number" value="{{withdrawal}}"></input>
  21. <view bindtap="__e" class="buttom" data-event-opts="{{[ [ 'tap',[ [ 'e0',['$event'] ] ] ] ]}}">全部提现</view>
  22. </view>
  23. </view>
  24. <view class="row-box">
  25. <view class="title">手续费</view>
  26. <view class="row">
  27. <text class="tit">¥</text>
  28. <view class="placeholder">{{withdrawal*0.01*charge}}</view>
  29. </view>
  30. </view>
  31. <view class="list">
  32. <radio-group bindchange="__e" data-event-opts="{{[ [ 'change',[ [ 'tabRadio',['$event'] ] ] ] ]}}">
  33. <label>
  34. <view class="box">
  35. <view class="icon iconfont iconweixin1"></view>
  36. <view class="title-box">
  37. <view class="title">
  38. <text>提现至微信</text>
  39. </view>
  40. </view>
  41. <view class="right">
  42. <radio checked="{{type=='weixin'}}" color="#5dbc7c" value="weixin"></radio>
  43. </view>
  44. </view>
  45. </label>
  46. <label>
  47. <view class="box" wx:if="{{show==1}}">
  48. <view class="icon iconfont iconzhifubao"></view>
  49. <view class="title-box">
  50. <view class="title">
  51. <text wx:if="{{aliData.fullname}}">提现至支付宝</text>
  52. <text wx:else>请创建支付宝账号</text>
  53. </view>
  54. <view class="node">
  55. <text wx:if="{{aliData.fullname}}">{{'真实姓名('+aliData.fullname+')'}}</text>
  56. </view>
  57. </view>
  58. <view class="right">
  59. <radio checked="{{type=='alipay'}}" color="#5dbc7c" value="alipay"></radio>
  60. </view>
  61. </view>
  62. </label>
  63. <label>
  64. <view class="box" wx:if="{{show==1}}">
  65. <view class="icon iconfont">
  66. <image class="icon-img" mode="aspectFit" src="/static/icon/i8.png"></image>
  67. </view>
  68. <view class="title-box">
  69. <view class="title">
  70. <text wx:if="{{bankData.bankno}}">{{bankData.bank+' '+bankData.bankno}}</text>
  71. <text wx:else>请创建银行账号</text>
  72. </view>
  73. <view class="node">
  74. <text wx:if="{{bankData.fullname}}">{{'真实姓名('+bankData.fullname+')'}}</text>
  75. </view>
  76. </view>
  77. <view class="right">
  78. <radio checked="{{type=='bank'}}" color="#5dbc7c" value="bank"></radio>
  79. </view>
  80. </view>
  81. </label>
  82. </radio-group>
  83. </view>
  84. <button bindtap="__e" class="add-btn up" data-event-opts="{{[ [ 'tap',[ [ 'confirm',['$event'] ] ] ] ]}}">提交申请</button>
  85. <block wx:if="{{show==1}}">
  86. <button bindtap="__e" class="add-btn modified" data-event-opts="{{[ [ 'tap',[ [ 'navTo',['/pages/wallet/account'] ] ] ] ]}}">账号管理</button>
  87. </block>
  88. </view>