recharge.vue 4.8 KB

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