1
This commit is contained in:
parent
db57761742
commit
6f41fad31c
@ -53,7 +53,7 @@
|
|||||||
type: String,
|
type: String,
|
||||||
default: '付款'
|
default: '付款'
|
||||||
},
|
},
|
||||||
isPay: {
|
isPay: { //区分支付密码还是输入数字
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
default: false
|
default: false
|
||||||
}
|
}
|
||||||
|
@ -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,12 +225,14 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (that.checkForm.cart_id && that.checkForm.cart_id.length > 0) {
|
||||||
orderCheck(that.checkForm).then(res1 => {
|
orderCheck(that.checkForm).then(res1 => {
|
||||||
uni.navigateTo({
|
uni.navigateTo({
|
||||||
url: "/pages/payment/settlement",
|
url: "/pages/payment/settlement",
|
||||||
success: (res) => {
|
success: (res) => {
|
||||||
uni.setStorageSync('datas', {
|
uni.setStorageSync('datas', {
|
||||||
platformConsumption: res1.data.platformConsumption || [],
|
platformConsumption: res1.data.platformConsumption ||
|
||||||
|
[],
|
||||||
productData: that.merchantInfo,
|
productData: that.merchantInfo,
|
||||||
checkForm: that.checkForm,
|
checkForm: that.checkForm,
|
||||||
money: that.cartForm.total_amount,
|
money: that.cartForm.total_amount,
|
||||||
@ -250,6 +248,7 @@
|
|||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
Toast(err.message || err)
|
Toast(err.message || err)
|
||||||
});
|
});
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
// 折叠商品
|
// 折叠商品
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
// 设置支付密码
|
||||||
|
if (that.payType == 'balance' || that.payType == 'merBalance') {
|
||||||
|
this.$refs.popups.handleOpen();
|
||||||
|
} else {
|
||||||
uni.showLoading({
|
uni.showLoading({
|
||||||
title: '订单支付中',
|
title: '订单支付中',
|
||||||
mask: true
|
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
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user