Commit bd27c820 authored by Xuguangxing's avatar Xuguangxing

fix

parent f4d52a79
......@@ -472,17 +472,15 @@ export default {
this.$toast('库存不足!');
return;
}
try {
const [checkStatus] = await goods.checkGroupBuyCreateOrder({
activityHundredGroupId: this.groupId || '',
skuNo: this.detailInfo.skuNo
});
if (!checkStatus.verifyResult) {
// 校验是否允许开团或者参团
this.$toast(checkStatus.failedReason);
return;
}
} catch (e) {}
const [checkStatus] = await goods.checkGroupBuyCreateOrder({
activityHundredGroupId: this.groupId || '',
skuNo: this.detailInfo.skuNo
});
if (!checkStatus.verifyResult) {
// 校验是否允许开团或者参团
this.$toast(checkStatus.failedReason);
return;
}
this.show = false;
const order = {
groupId: this.groupId || '', // 唐峰确认订单页加
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment