Commit 49530575 by crushh

update: ai营销-覆盖人数边界情况提示

parent fd988b19
......@@ -781,9 +781,12 @@ export default {
beginDate: formatDateTimeByType(startDate, 'yyyy-MM-dd'),
filterJson
};
const { result } = await getMemberCount(data);
this.form.planMemberCount = result == -1 ? 0 : result;
try {
const { result } = await getMemberCount(data);
this.form.planMemberCount = result == -1 ? 0 : result;
} catch (err) {
this.$message.error('查询预计覆盖人数接口超时');
}
},
async getAiCalcSingle() {
const { result } = await getAiCalcSingle();
......
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