特易招,招聘小程序
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.

108 lines
2.2 KiB

4 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 placeholder="请输入提现金额" />
  12. </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="mt56">提现说明</view>
  23. <view style="line-height: 45rpx; font-size: 24rpx;color: #666666;" v-html="notice">
  24. </view>
  25. <!-- <p>1本次提现必须通过银行卡提现暂不支持其他途径</p>
  26. <p>2如若遇到24小时提现未到账请联系客服</p> -->
  27. </view>
  28. <view class="b-fiexd">
  29. <view class="button-submit">提交</view>
  30. </view>
  31. </view>
  32. </template>
  33. <script>
  34. import userShopCommission from '@/components/userShop/userShopCommission.vue'
  35. export default {
  36. components: {
  37. userShopCommission,
  38. },
  39. data() {
  40. return {
  41. notice : ''
  42. }
  43. },
  44. methods: {
  45. }
  46. }
  47. </script>
  48. <style scoped lang="scss">
  49. .purse{
  50. min-height: 100vh;
  51. background-color: #ffffff;
  52. .from-body {
  53. padding: 40rpx 20rpx;
  54. font-size: 28rpx;
  55. font-family: PingFang SC, PingFang SC-Bold;
  56. font-weight: 700;
  57. text-align: left;
  58. color: #333333;
  59. line-height: 40px;
  60. padding-bottom: 160rpx;
  61. .from-line {
  62. margin-top: 40rpx;
  63. }
  64. input {
  65. width: 612rpx;
  66. height: 90rpx;
  67. line-height: 90rpx;
  68. background: #F5F5F5;
  69. border-radius: 46rpx;
  70. padding: 0 50rpx;
  71. font-size: 28rpx;
  72. font-family: PingFang SC, PingFang SC-Regular;
  73. font-weight: 400;
  74. text-align: left;
  75. color: #333;
  76. }
  77. }
  78. .button-submit {
  79. width: 596rpx;
  80. height: 90rpx;
  81. line-height: 90rpx;
  82. background: $uni-color;
  83. border-radius: 46rpx;
  84. margin: 20rpx auto;
  85. font-size: 28rpx;
  86. font-family: PingFang SC, PingFang SC-Regular;
  87. font-weight: 400;
  88. text-align: center;
  89. color: #ffffff;
  90. }
  91. }
  92. </style>