Commit e98477e9 authored by Xuguangxing's avatar Xuguangxing

fix: 处理开团登录校验问题

parent 75c5d4e0
...@@ -345,7 +345,7 @@ export default { ...@@ -345,7 +345,7 @@ export default {
delete checkParams.activityHundredGroupId; delete checkParams.activityHundredGroupId;
} }
const [checkStatus] = await goods.checkGroupBuyCreateOrder(checkParams); const [checkStatus] = await goods.checkGroupBuyCreateOrder(checkParams);
if (!checkStatus.verifyResult) { if (checkStatus && !checkStatus.verifyResult) {
// 校验是否允许开团或者参团 // 校验是否允许开团或者参团
this.$dialog({ this.$dialog({
message: checkStatus.failedReason || '', message: checkStatus.failedReason || '',
......
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