建材商城系统20241014
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.

118 lines
2.3 KiB

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