recharge.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. <template>
  2. <view class="recharge">
  3. <view class="mine">
  4. 我的余额(元)
  5. </view>
  6. <view class="money">
  7. 500.00
  8. </view>
  9. <view class="to-withdrawal">
  10. <AllRight name='去提现' :withdrawal="true" @toDetail="toWithdrawal" />
  11. </view>
  12. <view class="select-money">
  13. <view class="title">
  14. 余额账户充值
  15. </view>
  16. <!-- 选择充值金额 -->
  17. <view class="select-recharge">
  18. <view class="recharge-money" :class="{'back-red':backgroundRed==1}" @click="selectMoney(1)">
  19. <text>¥</text>100
  20. </view>
  21. <view class="recharge-money" :class="{'back-red':backgroundRed==2}" @click="selectMoney(2)">
  22. <text>¥</text>200
  23. </view>
  24. <view class="recharge-money" :class="{'back-red':backgroundRed==3}" @click="selectMoney(3)">
  25. <text>¥</text>300
  26. </view>
  27. <view class="recharge-money" :class="{'back-red':backgroundRed==4}" @click="selectMoney(4)">
  28. <text>¥</text>600
  29. </view>
  30. <view class="recharge-money" :class="{'back-red':backgroundRed==5}" @click="selectMoney(5)">
  31. <text>¥</text>800
  32. </view>
  33. <view class="recharge-money" :class="{'back-red':backgroundRed==6}" @click="selectMoney(6)">
  34. <text>¥</text>1000
  35. </view>
  36. </view>
  37. <!-- 选择充值金额 -->
  38. <u--input placeholder="输入自定义金额" prefixIcon="rmb"
  39. prefixIconStyle="font-size: 36rpx;color: #000;font-weight:600"></u--input>
  40. <view class="payment">
  41. <view class="title">
  42. 支付方式
  43. </view>
  44. <view class="wx-pay">
  45. <view class="logo">
  46. <image src="../../static/mine/323.png" class="wx-logo" mode=""></image>
  47. 微信支付
  48. </view>
  49. </view>
  50. </view>
  51. <button class="recharge-btn">充值</button>
  52. </view>
  53. </view>
  54. </template>
  55. <script>
  56. import AllRight from '../mineComponent/allRight/allRight.vue'
  57. export default {
  58. components: {
  59. AllRight
  60. },
  61. data() {
  62. return {
  63. backgroundRed: 1
  64. }
  65. },
  66. methods: {
  67. selectMoney(num) {
  68. this.backgroundRed = num
  69. },
  70. toWithdrawal() {
  71. uni.navigateTo({
  72. url: '/pageC/withdrawal/withdrawal'
  73. })
  74. }
  75. }
  76. }
  77. </script>
  78. <style lang="scss" scoped>
  79. .recharge {
  80. height: 100vh;
  81. background-color: #fff;
  82. .mine {
  83. padding-top: 63rpx;
  84. text-align: center;
  85. color: #222;
  86. font-size: 28rpx;
  87. border-top: 1px solid #ccc;
  88. }
  89. .money {
  90. font-size: 84rpx;
  91. text-align: center;
  92. color: #222;
  93. font-weight: 600;
  94. margin-top: 28rpx;
  95. margin-bottom: 20rpx;
  96. }
  97. .to-withdrawal {
  98. display: flex;
  99. justify-content: center;
  100. }
  101. .select-money {
  102. padding-top: 42rpx;
  103. border-top: 1px solid #ccc;
  104. margin: 0 auto;
  105. margin-top: 64rpx;
  106. width: 94%;
  107. .title {
  108. font-size: 32rpx;
  109. color: #222;
  110. font-weight: 500;
  111. margin-bottom: 36rpx;
  112. }
  113. .payment {
  114. margin-top: 46rpx;
  115. .wx-pay {
  116. height: 100rpx;
  117. background-color: #f4f4f4;
  118. width: 94%;
  119. display: flex;
  120. justify-content: space-between;
  121. align-items: center;
  122. padding: 0 20rpx;
  123. font-size: 32rpx;
  124. .logo {
  125. display: flex;
  126. align-items: center;
  127. }
  128. .wx-logo {
  129. width: 39rpx;
  130. height: 34rpx;
  131. margin-right: 18rpx;
  132. }
  133. }
  134. }
  135. .recharge-btn {
  136. background-color: #f83224;
  137. border-radius: 44rpx;
  138. color: #fff;
  139. margin-top: 150rpx;
  140. }
  141. .select-recharge {
  142. display: flex;
  143. justify-content: space-between;
  144. flex-wrap: wrap;
  145. .recharge-money {
  146. width: 210rpx;
  147. height: 120rpx;
  148. border: 1px solid #f83224;
  149. border-radius: 16rpx;
  150. text-align: center;
  151. line-height: 120rpx;
  152. font-size: 40rpx;
  153. font-weight: 600;
  154. margin-bottom: 26rpx;
  155. text {
  156. font-size: 24rpx;
  157. }
  158. }
  159. .back-red {
  160. background-color: #f83224;
  161. color: #fff;
  162. }
  163. }
  164. }
  165. }
  166. /deep/.u-input {
  167. background-color: #f4f4f4;
  168. height: 80rpx;
  169. }
  170. </style>