From c7bd6db3190ff5c4b55d004db0b9fa944604925f Mon Sep 17 00:00:00 2001 From: riku <risaku@163.com> Date: 星期五, 18 十月 2024 11:09:15 +0800 Subject: [PATCH] Merge branch 'lsf-topTask' --- src/views/fysp/task/TaskManage.vue | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/src/views/fysp/task/TaskManage.vue b/src/views/fysp/task/TaskManage.vue index ae03a36..68efe34 100644 --- a/src/views/fysp/task/TaskManage.vue +++ b/src/views/fysp/task/TaskManage.vue @@ -46,7 +46,11 @@ ></CompMonitorPlan> </el-col> <el-col v-if="curSubTaskList.length > 0" :span="8"> - <CompSubTaskList :data="curSubTaskList" height="56vh"></CompSubTaskList> + <CompSubTaskList + :data="curSubTaskList" + height="56vh" + @add="subTaskDrawer = true" + ></CompSubTaskList> </el-col> </el-row> </el-tab-pane> @@ -234,6 +238,7 @@ this.task = task; this.sideLoading = false; this.mainLoading = true; + this.curSubTaskList = [] taskApi .fetchMonitorObjectVersion(task.data.tguid) .then((res) => { -- Gitblit v1.9.3