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

114 lines
2.3 KiB

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. </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. }
  46. },
  47. onLoad() {
  48. this.$store.commit('getUserInfo');
  49. },
  50. methods: {
  51. }
  52. }
  53. </script>
  54. <style scoped lang="scss">
  55. .purse{
  56. min-height: 100vh;
  57. background-color: #ffffff;
  58. .from-body {
  59. padding: 40rpx 20rpx;
  60. font-size: 28rpx;
  61. font-family: PingFang SC, PingFang SC-Bold;
  62. font-weight: 700;
  63. text-align: left;
  64. color: #333333;
  65. line-height: 40px;
  66. padding-bottom: 160rpx;
  67. .from-line {
  68. margin-top: 40rpx;
  69. }
  70. input {
  71. width: 612rpx;
  72. height: 90rpx;
  73. line-height: 90rpx;
  74. background: #F5F5F5;
  75. border-radius: 46rpx;
  76. padding: 0 50rpx;
  77. font-size: 28rpx;
  78. font-family: PingFang SC, PingFang SC-Regular;
  79. font-weight: 400;
  80. text-align: left;
  81. color: #333;
  82. }
  83. }
  84. .button-submit {
  85. width: 596rpx;
  86. height: 90rpx;
  87. line-height: 90rpx;
  88. background: $uni-color;
  89. border-radius: 46rpx;
  90. margin: 20rpx auto;
  91. font-size: 28rpx;
  92. font-family: PingFang SC, PingFang SC-Regular;
  93. font-weight: 400;
  94. text-align: center;
  95. color: #ffffff;
  96. }
  97. }
  98. </style>