From ac7991e7ed058ebdc38a20fb099cd17dd1b91e19 Mon Sep 17 00:00:00 2001 From: xiangpei <xiangpei@timesnew.cn> Date: 星期一, 17 二月 2025 13:52:43 +0800 Subject: [PATCH] 挂起/取消挂起操作 --- src/views/projectProcess/detail/index.vue | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/src/views/projectProcess/detail/index.vue b/src/views/projectProcess/detail/index.vue index 8a62dfd..acacce6 100644 --- a/src/views/projectProcess/detail/index.vue +++ b/src/views/projectProcess/detail/index.vue @@ -414,7 +414,7 @@ } }, showHandle(row) { - if (row.taskStatus === '寰呭姙') { + if (row.taskStatus === '寰呭姙' || row.taskStatus === '鎸傝捣') { if (row.handlerType === "USER") { console.log(row.handlerId.indexOf(this.$store.state.user.id) !== -1, "鎴戞槸涓嶆槸") return row.handlerId.indexOf(this.$store.state.user.id) !== -1 @@ -448,6 +448,7 @@ projectName: this.detailData.projectName, taskId: row.taskId, showAuditing: res.data, + projectId: this.queryParams.projectId, goBackParams: this.queryParams } }) @@ -461,6 +462,7 @@ procInsId: row.processInsId, deployId: row.deployId, taskId: row.taskId, + projectId: this.queryParams.projectId, goBackParams: this.queryParams }}) }, -- Gitblit v1.8.0