recharge.vue 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  1. <template>
  2. <view class="recharge">
  3. <view class="mine"> {{ i18n.myBalance }}(元) </view>
  4. <view class="money">{{ userInformation.balance }}</view>
  5. <view class="to-withdrawal">
  6. <AllRight
  7. :name="i18n.goMoney"
  8. :withdrawal="true"
  9. @toDetail="toWithdrawal"
  10. />
  11. </view>
  12. <view class="select-money">
  13. <view class="title"> {{ i18n.balanceRecharge }} </view>
  14. <!-- 选择充值金额 -->
  15. <view class="select-recharge">
  16. <view
  17. class="recharge-money"
  18. :class="{ 'back-red': backgroundRed == 100 }"
  19. @click="selectMoney(100)"
  20. >
  21. <text>¥</text>100
  22. </view>
  23. <view
  24. class="recharge-money"
  25. :class="{ 'back-red': backgroundRed == 200 }"
  26. @click="selectMoney(200)"
  27. >
  28. <text>¥</text>200
  29. </view>
  30. <view
  31. class="recharge-money"
  32. :class="{ 'back-red': backgroundRed == 300 }"
  33. @click="selectMoney(300)"
  34. >
  35. <text>¥</text>300
  36. </view>
  37. <view
  38. class="recharge-money"
  39. :class="{ 'back-red': backgroundRed == 600 }"
  40. @click="selectMoney(600)"
  41. >
  42. <text>¥</text>600
  43. </view>
  44. <view
  45. class="recharge-money"
  46. :class="{ 'back-red': backgroundRed == 800 }"
  47. @click="selectMoney(800)"
  48. >
  49. <text>¥</text>800
  50. </view>
  51. <view
  52. class="recharge-money"
  53. :class="{ 'back-red': backgroundRed == 1000 }"
  54. @click="selectMoney(1000)"
  55. >
  56. <text>¥</text>1000
  57. </view>
  58. </view>
  59. <!-- 选择充值金额 -->
  60. <u--input
  61. :placeholder="i18n.customAmount"
  62. prefixIcon="rmb"
  63. v-model="rmb"
  64. prefixIconStyle="font-size: 36rpx;color: #000;font-weight:600"
  65. ></u--input>
  66. <view class="payment">
  67. <view class="title"> {{ i18n.payMethod }} </view>
  68. <view class="wx-pay">
  69. <view class="logo">
  70. <image
  71. src="../../static/mine/323.png"
  72. class="wx-logo"
  73. mode=""
  74. ></image>
  75. {{ i18n.WechatPay }}
  76. </view>
  77. <image
  78. src="../../static/mine/330.png"
  79. mode="scaleToFill"
  80. class="wx-logo"
  81. />
  82. </view>
  83. </view>
  84. <button class="recharge-btn" @click="recharge">
  85. {{ i18n.recharge }}
  86. </button>
  87. </view>
  88. </view>
  89. </template>
  90. <script>
  91. import AllRight from "../mineComponent/allRight/allRight.vue";
  92. export default {
  93. components: {
  94. AllRight,
  95. },
  96. data() {
  97. return {
  98. backgroundRed: 0,
  99. rmb: "",
  100. userInformation: {},
  101. };
  102. },
  103. onShow() {
  104. this.getBalance();
  105. },
  106. computed: {
  107. i18n() {
  108. return this.$t("index");
  109. },
  110. },
  111. methods: {
  112. selectMoney(num) {
  113. this.backgroundRed = num;
  114. },
  115. toWithdrawal() {
  116. uni.navigateTo({
  117. url: "/pageC/withdrawal/withdrawal?type=balance",
  118. });
  119. },
  120. //充值
  121. recharge() {
  122. let num = this.rmb == "" ? this.backgroundRed : this.rmb;
  123. uni.$u.http
  124. .post(`/api/recharge`, {
  125. account_type: "balance",
  126. amount: num,
  127. })
  128. .then((res) => {
  129. uni.requestPayment({
  130. provider: "wxpay",
  131. timeStamp: String(res.timeStamp),
  132. nonceStr: res.nonceStr,
  133. package: res.package,
  134. signType: res.signType,
  135. paySign: res.paySign,
  136. success: function (res) {
  137. console.log("success:" + JSON.stringify(res));
  138. uni.navigateBack();
  139. },
  140. fail: function (err) {
  141. console.log("fail:" + JSON.stringify(err));
  142. },
  143. });
  144. console.log(res);
  145. });
  146. },
  147. //获取账户余额
  148. getBalance() {
  149. uni.$u.http.get(`/api/member/info`).then((res) => {
  150. this.userInformation = res;
  151. });
  152. },
  153. },
  154. mounted() {
  155. uni.setNavigationBarTitle({
  156. title: this.i18n.recharge,
  157. });
  158. },
  159. };
  160. </script>
  161. <style lang="scss" scoped>
  162. .recharge {
  163. height: 100vh;
  164. background-color: #fff;
  165. .mine {
  166. padding-top: 63rpx;
  167. text-align: center;
  168. color: #222;
  169. font-size: 28rpx;
  170. border-top: 1px solid #ccc;
  171. }
  172. .money {
  173. font-size: 84rpx;
  174. text-align: center;
  175. color: #222;
  176. font-weight: 600;
  177. margin-top: 28rpx;
  178. margin-bottom: 20rpx;
  179. }
  180. .to-withdrawal {
  181. display: flex;
  182. justify-content: center;
  183. }
  184. .select-money {
  185. padding-top: 42rpx;
  186. border-top: 1px solid #ccc;
  187. margin: 0 auto;
  188. margin-top: 64rpx;
  189. width: 94%;
  190. .title {
  191. font-size: 32rpx;
  192. color: #222;
  193. font-weight: 500;
  194. margin-bottom: 36rpx;
  195. }
  196. .payment {
  197. margin-top: 46rpx;
  198. .wx-pay {
  199. height: 100rpx;
  200. background-color: #f4f4f4;
  201. width: 94%;
  202. display: flex;
  203. justify-content: space-between;
  204. align-items: center;
  205. padding: 0 20rpx;
  206. font-size: 32rpx;
  207. .logo {
  208. display: flex;
  209. align-items: center;
  210. }
  211. .wx-logo {
  212. width: 39rpx;
  213. height: 34rpx;
  214. margin-right: 18rpx;
  215. }
  216. }
  217. }
  218. .recharge-btn {
  219. background-color: #f83224;
  220. border-radius: 44rpx;
  221. color: #fff;
  222. margin-top: 150rpx;
  223. }
  224. .select-recharge {
  225. display: flex;
  226. justify-content: space-between;
  227. flex-wrap: wrap;
  228. .recharge-money {
  229. width: 210rpx;
  230. height: 120rpx;
  231. border: 1px solid #f83224;
  232. border-radius: 16rpx;
  233. text-align: center;
  234. line-height: 120rpx;
  235. font-size: 40rpx;
  236. font-weight: 600;
  237. margin-bottom: 26rpx;
  238. text {
  239. font-size: 24rpx;
  240. }
  241. }
  242. .back-red {
  243. background-color: #f83224;
  244. color: #fff;
  245. }
  246. }
  247. }
  248. }
  249. /deep/.u-input {
  250. background-color: #f4f4f4;
  251. height: 80rpx;
  252. }
  253. </style>