edit.vue 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. <template>
  2. <view class="recharge-container">
  3. <view class="amount-options">
  4. <view v-for="amount in amounts" :key="amount"
  5. :class="['amount-option', { selected: selectedAmount === amount }]" @tap="selectAmount(amount)">
  6. {{ amount }}
  7. </view>
  8. </view>
  9. <view class="custom-amount">
  10. <input type="number" v-model="customAmount" placeholder="自定义金额" @input="onCustomAmountInput"
  11. @blur="validateCustomAmount" />
  12. <text></text>
  13. </view>
  14. <button class="submit-btn" @tap="submitRecharge">确认充值</button>
  15. <view style="padding: 15px;line-height: 30px;font-size: 16px;">
  16. <h3>充值说明:</h3>
  17. <view>1、充值的金额和服务点数相对应,充值一元=一服务点数;</view>
  18. <view>2、充值的服务点数仅用于商品上架二级市场的技术服务费。</view>
  19. </view>
  20. </view>
  21. </template>
  22. <script>
  23. export default {
  24. data() {
  25. return {
  26. amounts: [5, 10, 20, 30, 50, 100],
  27. selectedAmount: 5,
  28. customAmount: '',
  29. }
  30. },
  31. methods: {
  32. selectAmount(amount) {
  33. this.selectedAmount = amount
  34. this.customAmount = ''
  35. },
  36. onCustomAmountInput() {
  37. this.selectedAmount = null;
  38. this.customAmount = Math.floor(Number(this.customAmount));
  39. },
  40. validateCustomAmount() {
  41. if (this.customAmount < 1) {
  42. this.customAmount = '';
  43. uni.showToast({
  44. title: '充值金额必须大于等于1元',
  45. icon: 'none'
  46. });
  47. }
  48. },
  49. submitRecharge() {
  50. const amount = this.selectedAmount || Number(this.customAmount)
  51. if (amount && Number.isInteger(amount) && amount > 0) {
  52. let that = this;
  53. uni.showModal({
  54. title: '充值确认',
  55. content: `您选择充值金额:${amount}点数`,
  56. success: (res) => {
  57. if (res.confirm) {
  58. that.createOrder(amount);
  59. // 这里可以添加实际的充值逻辑
  60. }
  61. }
  62. })
  63. } else {
  64. uni.showToast({
  65. title: '请选择或输入有效的整数充值点数',
  66. icon: 'none'
  67. })
  68. }
  69. },
  70. /**
  71. * 发起支付(不唤起收银台,手动指定支付方式)
  72. * 在调用此api前,你应该先创建自己的业务系统订单,并获得订单号 order_no,把order_no当参数传给此api,而示例中为了简化跟支付插件无关的代码,这里直接已时间戳生成了order_no
  73. */
  74. createOrder(fee) {
  75. this.http.request({
  76. url: '/level-one-server/app/WalletManage/topupSave',
  77. data: {
  78. amount: fee, // 支付金额,单位分 100 = 1元
  79. goodsName: '服务点充值'
  80. },
  81. success: res => {
  82. console.log('WxPayAppOrderResult:', res)
  83. // 调起支付
  84. this.orderPayment(res.data.data);
  85. this.transaction_id = res.data.data.prepayid;
  86. }
  87. });
  88. },
  89. // 调起支付
  90. orderPayment(data) {
  91. uni.requestPayment({
  92. "provider": "wxpay",
  93. "orderInfo": data,
  94. success: (res) => {
  95. console.log(res);
  96. uni.navigateTo({
  97. url: '/pages/wallet/topup/topupSuccess?prePayId=' + data.prepayid
  98. })
  99. },
  100. complete: (resp) => {
  101. console.log(resp);
  102. },
  103. fail: (err) => {
  104. console.log(err);
  105. // 发起支付失败
  106. // uni.showToast({
  107. // title: '发起支付失败!' + err.errMsg,
  108. // });
  109. }
  110. });
  111. },
  112. // 查询支付状态
  113. async getOrder() {
  114. this.getOrderRes = {};
  115. let res = await this.$refs.pay.getOrder({
  116. //out_trade_no: this.out_trade_no, // 插件支付单号 两者传1个即可
  117. transaction_id: this.transaction_id, // 第三方单号 两者传1个即可
  118. await_notify: true
  119. });
  120. if (res) {
  121. this.getOrderRes = res.pay_order;
  122. let obj = {
  123. "-1": "已关闭",
  124. "1": "已支付",
  125. "0": "未支付",
  126. "2": "已部分退款",
  127. "3": "已全额退款"
  128. };
  129. uni.showToast({
  130. title: obj[res.status] || res.errMsg,
  131. icon: "none"
  132. });
  133. }
  134. },
  135. },
  136. }
  137. </script>
  138. <style lang="scss" scoped>
  139. .recharge-container {
  140. margin-top: 30px;
  141. padding: 20px;
  142. background-color: #ffffff;
  143. }
  144. .title {
  145. font-size: 20px;
  146. font-weight: bold;
  147. text-align: center;
  148. margin-bottom: 20px;
  149. }
  150. .amount-options {
  151. display: flex;
  152. flex-wrap: wrap;
  153. justify-content: space-between;
  154. margin-bottom: 20px;
  155. }
  156. .amount-option {
  157. width: 30%;
  158. height: 40px;
  159. line-height: 40px;
  160. text-align: center;
  161. border: 1px solid #007aff;
  162. border-radius: 4px;
  163. margin-bottom: 10px;
  164. }
  165. .amount-option.selected {
  166. background-color: #007aff;
  167. color: #ffffff;
  168. }
  169. .custom-amount {
  170. display: flex;
  171. align-items: center;
  172. margin-bottom: 20px;
  173. }
  174. .custom-amount input {
  175. flex: 1;
  176. height: 40px;
  177. border: 1px solid #007aff;
  178. border-radius: 4px;
  179. padding: 0 10px;
  180. }
  181. .custom-amount text {
  182. margin-left: 5px;
  183. }
  184. .submit-btn {
  185. width: 100%;
  186. height: 44px;
  187. line-height: 44px;
  188. background-color: #007aff;
  189. color: #ffffff;
  190. border-radius: 4px;
  191. text-align: center;
  192. }
  193. </style>