123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211 |
- <template>
- <view class="recharge-container">
- <view class="amount-options">
- <view v-for="amount in amounts" :key="amount"
- :class="['amount-option', { selected: selectedAmount === amount }]" @tap="selectAmount(amount)">
- {{ amount }}元
- </view>
- </view>
- <view class="custom-amount">
- <input type="number" v-model="customAmount" placeholder="自定义金额" @input="onCustomAmountInput"
- @blur="validateCustomAmount" />
- <text>元</text>
- </view>
- <button class="submit-btn" @tap="submitRecharge">确认充值</button>
- <view style="padding: 15px;line-height: 30px;font-size: 16px;">
- <h3>充值说明:</h3>
- <view>1、充值的金额和服务点数相对应,充值一元=一服务点数;</view>
- <view>2、充值的服务点数仅用于商品上架二级市场的技术服务费。</view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- amounts: [5, 10, 20, 30, 50, 100],
- selectedAmount: 5,
- customAmount: '',
- }
- },
- methods: {
- selectAmount(amount) {
- this.selectedAmount = amount
- this.customAmount = ''
- },
- onCustomAmountInput() {
- this.selectedAmount = null;
- this.customAmount = Math.floor(Number(this.customAmount));
- },
- validateCustomAmount() {
- if (this.customAmount < 1) {
- this.customAmount = '';
- uni.showToast({
- title: '充值金额必须大于等于1元',
- icon: 'none'
- });
- }
- },
- submitRecharge() {
- const amount = this.selectedAmount || Number(this.customAmount)
- if (amount && Number.isInteger(amount) && amount > 0) {
- let that = this;
- uni.showModal({
- title: '充值确认',
- content: `您选择充值金额:${amount}点数`,
- success: (res) => {
- if (res.confirm) {
- that.createOrder(amount);
-
- }
- }
- })
- } else {
- uni.showToast({
- title: '请选择或输入有效的整数充值点数',
- icon: 'none'
- })
- }
- },
-
- createOrder(fee) {
- this.http.request({
- url: '/level-one-server/app/WalletManage/topupSave',
- data: {
- amount: fee,
- goodsName: '服务点充值'
- },
- success: res => {
- console.log('WxPayAppOrderResult:', res)
-
- this.orderPayment(res.data.data);
- this.transaction_id = res.data.data.prepayid;
- }
- });
- },
-
- orderPayment(data) {
- uni.requestPayment({
- "provider": "wxpay",
- "orderInfo": data,
- success: (res) => {
- console.log(res);
- uni.navigateTo({
- url: '/pages/wallet/topup/topupSuccess?prePayId=' + data.prepayid
- })
- },
- complete: (resp) => {
-
- console.log(resp);
- },
- fail: (err) => {
- console.log(err);
-
-
-
-
- }
- });
- },
-
- async getOrder() {
- this.getOrderRes = {};
- let res = await this.$refs.pay.getOrder({
-
- transaction_id: this.transaction_id,
- await_notify: true
- });
- if (res) {
- this.getOrderRes = res.pay_order;
- let obj = {
- "-1": "已关闭",
- "1": "已支付",
- "0": "未支付",
- "2": "已部分退款",
- "3": "已全额退款"
- };
- uni.showToast({
- title: obj[res.status] || res.errMsg,
- icon: "none"
- });
- }
- },
- },
- }
- </script>
- <style lang="scss" scoped>
- .recharge-container {
- margin-top: 30px;
- padding: 20px;
- background-color: #ffffff;
- }
- .title {
- font-size: 20px;
- font-weight: bold;
- text-align: center;
- margin-bottom: 20px;
- }
- .amount-options {
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- margin-bottom: 20px;
- }
- .amount-option {
- width: 30%;
- height: 40px;
- line-height: 40px;
- text-align: center;
- border: 1px solid #007aff;
- border-radius: 4px;
- margin-bottom: 10px;
- }
- .amount-option.selected {
- background-color: #007aff;
- color: #ffffff;
- }
- .custom-amount {
- display: flex;
- align-items: center;
- margin-bottom: 20px;
- }
- .custom-amount input {
- flex: 1;
- height: 40px;
- border: 1px solid #007aff;
- border-radius: 4px;
- padding: 0 10px;
- }
- .custom-amount text {
- margin-left: 5px;
- }
- .submit-btn {
- width: 100%;
- height: 44px;
- line-height: 44px;
- background-color: #007aff;
- color: #ffffff;
- border-radius: 4px;
- text-align: center;
- }
- </style>
|