cash.vue 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. <template>
  2. <view class="page-wrap">
  3. <view class="header-panel">
  4. 提现金额
  5. <view class="input-wrap">
  6. <input class="input" type="digit" maxlength="10" />
  7. </view>
  8. <view class="money">
  9. 可提金额 3296.00 元,
  10. <text class="btn">全部提现</text>
  11. </view>
  12. </view>
  13. <view class="title-row">提现至</view>
  14. <view class="pay-row">
  15. <image class="icon" src="../../../static/icon_pay_ccb.png"></image>
  16. <view class="name">
  17. 建行善付通
  18. <text class="desc">6222 8042 5063 2401 868</text>
  19. </view>
  20. <image class="checkbox" src="../../../static/icon_checkbox.png"></image>
  21. </view>
  22. <view class="pay-row">
  23. <image class="icon" src="../../../static/icon_pay_wx.png"></image>
  24. <view class="name">
  25. 绑定微信
  26. <text class="desc">18863100789</text>
  27. </view>
  28. </view>
  29. <view class="pay-row">
  30. <image class="icon" src="../../../static/svg/wallet_pay.svg"></image>
  31. <view class="name">
  32. 公对公转账
  33. <text class="desc">招商银行 70260122000076868</text>
  34. </view>
  35. </view>
  36. <view class="pay-row">
  37. <image class="icon" src="../../../static/icon_pay_other.png"></image>
  38. <view class="name">
  39. 其他
  40. <text class="desc">线下人工处理</text>
  41. </view>
  42. </view>
  43. <button class="submit-btn" @click="handleCash">申请提现</button>
  44. </view>
  45. </template>
  46. <script>
  47. export default {
  48. data() {
  49. return {};
  50. },
  51. methods: {
  52. handleCash() {
  53. uni.redirectTo({
  54. url: 'cashSuccess'
  55. });
  56. }
  57. }
  58. };
  59. </script>
  60. <style lang="scss" scoped>
  61. .header-panel {
  62. height: 274.73rpx;
  63. background: #fff;
  64. padding: 27.47rpx;
  65. box-sizing: border-box;
  66. font-size: 27.47rpx;
  67. color: #666;
  68. .input-wrap {
  69. width: 631.87rpx;
  70. border-bottom: 1rpx solid #e0e0e0;
  71. margin: 48.08rpx auto 0;
  72. height: 61.81rpx;
  73. position: relative;
  74. &:before {
  75. content: '¥';
  76. font-size: 27.47rpx;
  77. position: absolute;
  78. left: 20.6rpx;
  79. bottom: 6.87rpx;
  80. }
  81. .input {
  82. font-size: 49.45rpx;
  83. color: #000;
  84. width: 100%;
  85. height: 100%;
  86. padding-left: 54.95rpx;
  87. }
  88. }
  89. .money {
  90. font-size: 24.73rpx;
  91. color: #999;
  92. margin: 20.6rpx 0 0 54.95rpx;
  93. }
  94. .btn {
  95. font-size: 24.73rpx;
  96. color: #0384d6;
  97. }
  98. }
  99. .title-row {
  100. height: 82.42rpx;
  101. padding: 27.47rpx 27.47rpx 0;
  102. box-sizing: border-box;
  103. font-size: 27.47rpx;
  104. color: #666;
  105. }
  106. .pay-row {
  107. background: #fff;
  108. height: 109.89rpx;
  109. display: flex;
  110. align-items: center;
  111. padding: 0 27.47rpx;
  112. position: relative;
  113. &::after {
  114. content: '';
  115. position: absolute;
  116. right: 27.47rpx;
  117. top: 50%;
  118. transform: translateY(-50%);
  119. width: 30.22rpx;
  120. height: 30.22rpx;
  121. border-radius: 50%;
  122. border: 1rpx solid #d6d6d6;
  123. box-sizing: border-box;
  124. }
  125. & + .pay-row {
  126. border-top: 1rpx solid #d6d6d6;
  127. }
  128. .icon {
  129. width: 38.46rpx;
  130. height: 41.21rpx;
  131. margin-right: 24.73rpx;
  132. }
  133. .name {
  134. flex: 1;
  135. font-size: 27.47rpx;
  136. color: #333;
  137. .desc {
  138. display: block;
  139. color: #999;
  140. }
  141. }
  142. .checkbox {
  143. width: 32.97rpx;
  144. height: 32.97rpx;
  145. position: absolute;
  146. right: 27.47rpx;
  147. top: 50%;
  148. transform: translateY(-50%);
  149. z-index: 1;
  150. }
  151. }
  152. .submit-btn {
  153. width: 631.87rpx;
  154. height: 75.55rpx;
  155. line-height: 75.55rpx;
  156. background: #079eff;
  157. border-radius: 8.24rpx;
  158. font-size: 30.22rpx;
  159. color: #fff;
  160. margin: 82.42rpx auto 0;
  161. }
  162. </style>