Commit bd27c820 authored by Xuguangxing's avatar Xuguangxing

fix

parent f4d52a79
...@@ -472,17 +472,15 @@ export default { ...@@ -472,17 +472,15 @@ export default {
this.$toast('库存不足!'); this.$toast('库存不足!');
return; return;
} }
try { const [checkStatus] = await goods.checkGroupBuyCreateOrder({
const [checkStatus] = await goods.checkGroupBuyCreateOrder({ activityHundredGroupId: this.groupId || '',
activityHundredGroupId: this.groupId || '', skuNo: this.detailInfo.skuNo
skuNo: this.detailInfo.skuNo });
}); if (!checkStatus.verifyResult) {
if (!checkStatus.verifyResult) { // 校验是否允许开团或者参团
// 校验是否允许开团或者参团 this.$toast(checkStatus.failedReason);
this.$toast(checkStatus.failedReason); return;
return; }
}
} catch (e) {}
this.show = false; this.show = false;
const order = { const order = {
groupId: this.groupId || '', // 唐峰确认订单页加 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