|
@@ -182,6 +182,25 @@ export default {
|
|
|
});
|
|
|
}, 700)
|
|
|
},
|
|
|
+ goPay(){
|
|
|
+ // 北京特殊处理
|
|
|
+ if(this.parkMallCode === 3 && this.usingTotalDiscount) {
|
|
|
+ this.$dialog.alert({
|
|
|
+ confirmButtonColor: kipTheme[this.theme].primaryColor,
|
|
|
+ title: '提示',
|
|
|
+ message: '请确认是否使用优惠,确认后无法返还!',
|
|
|
+ showCancelButton: true
|
|
|
+ }) .then(() => {
|
|
|
+ // on confirm
|
|
|
+ this.toPay()
|
|
|
+ })
|
|
|
+ .catch(() => {
|
|
|
+ // on cancel
|
|
|
+ });
|
|
|
+ return
|
|
|
+ }
|
|
|
+ this.toPay();
|
|
|
+ },
|
|
|
// 前往支付
|
|
|
async toPay() {
|
|
|
if (!this.isAlipayClient) {
|