This commit is contained in:
DESKTOP-GMUNQ1B\k 2024-03-22 11:07:06 +08:00
parent db57761742
commit 6f41fad31c
4 changed files with 104 additions and 33 deletions

View File

@ -53,7 +53,7 @@
type: String,
default: '付款'
},
isPay: {
isPay: { //
type: Boolean,
default: false
}

View File

View File

@ -128,10 +128,6 @@
this.mer_id = opt.mer_id;
},
onReady() {
this.$refs.payModal.open();
},
onShow() {
if (!this.isLogin) {
Cache.set("login_back_url_weixin", "/" + getCurrentPages()[0].route + "?mer_id=" + this.mer_id);
@ -180,7 +176,7 @@
//
handleChange(e) {
this.cartForm.total_amount = e;
uni.$u.throttle(that.getProductInfoByMerid, 20)
uni.$u.debounce(that.getProductInfoByMerid, 200)
},
leftClick(e) {
@ -229,27 +225,30 @@
}
}
orderCheck(that.checkForm).then(res1 => {
uni.navigateTo({
url: "/pages/payment/settlement",
success: (res) => {
uni.setStorageSync('datas', {
platformConsumption: res1.data.platformConsumption || [],
productData: that.merchantInfo,
checkForm: that.checkForm,
money: that.cartForm.total_amount,
merName: that.mer_name,
money: that.cartForm.total_amount,
key: res1.data.key
})
},
fail(err) {
console.log(err)
}
})
}).catch(err => {
Toast(err.message || err)
});
if (that.checkForm.cart_id && that.checkForm.cart_id.length > 0) {
orderCheck(that.checkForm).then(res1 => {
uni.navigateTo({
url: "/pages/payment/settlement",
success: (res) => {
uni.setStorageSync('datas', {
platformConsumption: res1.data.platformConsumption ||
[],
productData: that.merchantInfo,
checkForm: that.checkForm,
money: that.cartForm.total_amount,
merName: that.mer_name,
money: that.cartForm.total_amount,
key: res1.data.key
})
},
fail(err) {
console.log(err)
}
})
}).catch(err => {
Toast(err.message || err)
});
}
},
//

View File

@ -101,6 +101,13 @@
<view class='settlement' :class='couponData.status != "noAddress" ? "" : "disabled"' style='z-index:100'
@tap="SubOrder">{{couponData.status != "noAddress" ? '提交订单':'选择地址'}}</view>
</view>
<!-- 支付密码 键盘 -->
<popups ref="popups" :isPay="true" @confirm="handleConfirm" @clear="handleClear" @change="handleChange" />
<!-- 密码错误事件处理 -->
<payPwd ref="payPwd" @left="handleLeft" @right="handleRight"></payPwd>
</view>
</view>
</template>
@ -135,8 +142,17 @@
orderPay,
orderCheck
} from "@/api/payment.js";
import {
verifyPwd
} from '@/api/order.js';
import payPwd from "@/components/payPwd/index.vue";
import popups from "@/components/popups/index.vue";
export default {
components: {
payPwd,
popups
},
data() {
return {
platformConsumption: [],
@ -260,7 +276,8 @@
use_integral: false,
key: ''
},
productData: []
productData: [],
orderData: {}
};
},
computed: {
@ -576,11 +593,66 @@
});
}
this.payForm.pay_type = that.payType;
uni.showLoading({
title: '订单支付中',
mask: true
});
//
if (that.payType == 'balance' || that.payType == 'merBalance') {
this.$refs.popups.handleOpen();
} else {
uni.showLoading({
title: '订单支付中',
mask: true
});
this.truePayOrder(data);
}
},
//
handleConfirm(e) {
//
verifyPwd({
withdrawal_pwd: e
}).then(res => {
//
const code = res.data.code;
this.$set(this.payForm, 'withdrawal_pwd', e);
if (code == 100) { //
uni.showLoading({
title: '订单支付中',
mask: true
});
this.truePayOrder(this.payForm);
} else {
this.$refs.payPwd.handleOpen(code);
}
}).catch(err => {
console.log(err)
})
},
// 101 102
handleLeft(code) {
uni.navigateTo({
url: "/pages/users/user_modify_pwd/index?type=payPwd"
});
this.$refs.payPwd.handleClose();
},
//
handleRight(code) {
if (code == 101) { //
this.$refs.payPwd.handleClose(code);
} else {
this.$refs.payPwd.handleClose();
this.$refs.popups.handleOpen();
}
},
handleClear() {},
handleChange() {},
truePayOrder() {
// #ifdef MP
openPaySubscribe().then(() => {
that.payment(this.payForm);
@ -588,7 +660,7 @@
// #endif
// #ifndef MP
that.payment(this.payForm);
this.payment(this.payForm);
// #endif
}
}