酒店桌布为微信小程序
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.

128 lines
2.8 KiB

5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
  1. <template>
  2. <view class="purse">
  3. <navbar title="立即提现" leftClick @leftClick="$utils.navigateBack" />
  4. <!-- 水洗店 -->
  5. <view class="userShop">
  6. <userShopCommission purse />
  7. </view>
  8. <view class="from-body">
  9. <view>我要提现</view>
  10. <view class="from-line">
  11. <input v-model="form.money" placeholder="请输入提现金额" />
  12. </view>
  13. <view class="from-line">
  14. <input v-model="form.name" placeholder="请输入姓名" />
  15. </view>
  16. <view class="from-line">
  17. <input v-model="form.phone" placeholder="请输入手机号" />
  18. </view>
  19. <view class="from-line">
  20. <input v-model="form.bankAddress" placeholder="请输入开户行" />
  21. </view>
  22. <view class="from-line">
  23. <input v-model="form.bankCard" placeholder="请输入银行卡卡号" />
  24. </view>
  25. <view class="mt56">提现说明</view>
  26. <view style="line-height: 45rpx; font-size: 24rpx;color: #666666;" v-html="notice">
  27. </view>
  28. <view style="font-size: 28rpx;height: 40rpx;font-weight: 400;pad: 10rpx;">1本次提现必须通过银行卡提现暂不支持其他途径</view>
  29. <view style="font-size: 28rpx;height: 40rpx;font-weight: 400;">2如若遇到24小时提现未到账请联系客服</view>
  30. </view>
  31. <view class="b-fiexd">
  32. <view class="button-submit" @click="submit">提交</view>
  33. </view>
  34. </view>
  35. </template>
  36. <script>
  37. import userShopCommission from '@/components/userShop/userShopCommission.vue'
  38. export default {
  39. components: {
  40. userShopCommission,
  41. },
  42. data() {
  43. return {
  44. notice: '',
  45. form: {
  46. name: '',
  47. phone: '',
  48. money: '',
  49. bankCard: '',
  50. bankAddress: '',
  51. }
  52. }
  53. },
  54. methods: {
  55. submit() {
  56. this.$api('storeWithdrawalApplication', this.form, res => {
  57. if (res.code == 200) {
  58. uni.navigateBack(-1)
  59. }
  60. })
  61. },
  62. }
  63. }
  64. </script>
  65. <style scoped lang="scss">
  66. .purse {
  67. min-height: 100vh;
  68. background-color: #ffffff;
  69. // padding: 0 0 10rpx 0;
  70. .from-body {
  71. padding: 40rpx 20rpx 0rpx 20rpx;
  72. font-size: 28rpx;
  73. font-family: PingFang SC, PingFang SC-Bold;
  74. font-weight: 700;
  75. text-align: left;
  76. color: #333333;
  77. // line-height: 40px;
  78. .from-line {
  79. margin-top: 40rpx;
  80. }
  81. .mt56 {
  82. margin-top: 30rpx;
  83. }
  84. input {
  85. width: 612rpx;
  86. height: 90rpx;
  87. line-height: 90rpx;
  88. background: #F5F5F5;
  89. border-radius: 46rpx;
  90. padding: 0 50rpx;
  91. font-size: 28rpx;
  92. font-family: PingFang SC, PingFang SC-Regular;
  93. font-weight: 400;
  94. text-align: left;
  95. color: #333;
  96. }
  97. }
  98. .button-submit {
  99. width: 596rpx;
  100. height: 90rpx;
  101. line-height: 90rpx;
  102. background: $uni-color;
  103. border-radius: 46rpx;
  104. margin: 20rpx auto;
  105. font-size: 36rpx;
  106. font-family: PingFang SC, PingFang SC-Regular;
  107. font-weight: 400;
  108. text-align: center;
  109. color: #ffffff;
  110. }
  111. }
  112. </style>