Commit cbf97ce5 by 陈岩

fix: 修改精准客流修复的提示信息

1 parent 49fb79a6
......@@ -107,7 +107,7 @@
>
</a-form-item>
</a-form>
<!--
<!--
<div style="display: flex; justify-content: flex-end; padding: 3px">
<a-button @click="suspendRepair" type="primary">暂停修复</a-button>
</div> -->
......@@ -387,9 +387,12 @@ export default {
delete params.gate_id;
delete params.channel_id;
const { code, msg } = await dataRepairApi.accurateRepairApi(params);
const type = code === 200 ? "success" : "error";
// 提示信息
message[type](msg);
if(code === 200){
message.success('修补成功,需重跑统计数据才会生效')
}else{
message.error(msg)
}
// dataList.value.push(r.data);
} catch (error) {
console.log(error);
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!