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, type: String,
default: '付款' default: '付款'
}, },
isPay: { isPay: { //
type: Boolean, type: Boolean,
default: false default: false
} }

View File

View File

@ -128,10 +128,6 @@
this.mer_id = opt.mer_id; this.mer_id = opt.mer_id;
}, },
onReady() {
this.$refs.payModal.open();
},
onShow() { onShow() {
if (!this.isLogin) { if (!this.isLogin) {
Cache.set("login_back_url_weixin", "/" + getCurrentPages()[0].route + "?mer_id=" + this.mer_id); Cache.set("login_back_url_weixin", "/" + getCurrentPages()[0].route + "?mer_id=" + this.mer_id);
@ -180,7 +176,7 @@
// //
handleChange(e) { handleChange(e) {
this.cartForm.total_amount = e; this.cartForm.total_amount = e;
uni.$u.throttle(that.getProductInfoByMerid, 20) uni.$u.debounce(that.getProductInfoByMerid, 200)
}, },
leftClick(e) { leftClick(e) {
@ -229,27 +225,30 @@
} }
} }
orderCheck(that.checkForm).then(res1 => { if (that.checkForm.cart_id && that.checkForm.cart_id.length > 0) {
uni.navigateTo({ orderCheck(that.checkForm).then(res1 => {
url: "/pages/payment/settlement", uni.navigateTo({
success: (res) => { url: "/pages/payment/settlement",
uni.setStorageSync('datas', { success: (res) => {
platformConsumption: res1.data.platformConsumption || [], uni.setStorageSync('datas', {
productData: that.merchantInfo, platformConsumption: res1.data.platformConsumption ||
checkForm: that.checkForm, [],
money: that.cartForm.total_amount, productData: that.merchantInfo,
merName: that.mer_name, checkForm: that.checkForm,
money: that.cartForm.total_amount, money: that.cartForm.total_amount,
key: res1.data.key merName: that.mer_name,
}) money: that.cartForm.total_amount,
}, key: res1.data.key
fail(err) { })
console.log(err) },
} fail(err) {
}) console.log(err)
}).catch(err => { }
Toast(err.message || 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' <view class='settlement' :class='couponData.status != "noAddress" ? "" : "disabled"' style='z-index:100'
@tap="SubOrder">{{couponData.status != "noAddress" ? '提交订单':'选择地址'}}</view> @tap="SubOrder">{{couponData.status != "noAddress" ? '提交订单':'选择地址'}}</view>
</view> </view>
<!-- 支付密码 键盘 -->
<popups ref="popups" :isPay="true" @confirm="handleConfirm" @clear="handleClear" @change="handleChange" />
<!-- 密码错误事件处理 -->
<payPwd ref="payPwd" @left="handleLeft" @right="handleRight"></payPwd>
</view> </view>
</view> </view>
</template> </template>
@ -135,8 +142,17 @@
orderPay, orderPay,
orderCheck orderCheck
} from "@/api/payment.js"; } 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 { export default {
components: {
payPwd,
popups
},
data() { data() {
return { return {
platformConsumption: [], platformConsumption: [],
@ -260,7 +276,8 @@
use_integral: false, use_integral: false,
key: '' key: ''
}, },
productData: [] productData: [],
orderData: {}
}; };
}, },
computed: { computed: {
@ -576,11 +593,66 @@
}); });
} }
this.payForm.pay_type = that.payType; 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 // #ifdef MP
openPaySubscribe().then(() => { openPaySubscribe().then(() => {
that.payment(this.payForm); that.payment(this.payForm);
@ -588,7 +660,7 @@
// #endif // #endif
// #ifndef MP // #ifndef MP
that.payment(this.payForm); this.payment(this.payForm);
// #endif // #endif
} }
} }