This commit is contained in:
2025-12-11 12:51:41 +08:00
parent 0e343279ac
commit 4383067eb1
4 changed files with 515 additions and 443 deletions

View File

@@ -2,7 +2,7 @@
* @Author: zwq
* @Date: 2025-10-13 15:07:24
* @LastEditors: zwq
* @LastEditTime: 2025-12-01 14:40:46
* @LastEditTime: 2025-12-03 15:48:26
* @Description:
-->
<template>
@@ -826,10 +826,14 @@ export default {
});
checkPlan(data).then((RES) => {
createStepFour(this.dataForm.id).then((res) => {
this.$modal.msgSuccess('创建计划成功');
this.stepNum = 1;
this.$emit('setSN', this.stepNum);
this.$emit('refreshDataList');
if (res.code === 200 || res.code === 0) {
this.$modal.msgSuccess('创建计划成功');
this.stepNum = 1;
this.$emit('setSN', this.stepNum);
this.$emit('refreshDataList');
} else {
this.$message(res.msg);
}
});
});
return;