From 328ecfc895f43669b4651bc09ca5c2f7c6f0cba6 Mon Sep 17 00:00:00 2001 From: fuliqi <fuliqi@qq.com> Date: 星期二, 14 一月 2025 17:53:48 +0800 Subject: [PATCH] 办理的流程图查看回显颜色 --- src/views/projectProcess/detail/index.vue | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/src/views/projectProcess/detail/index.vue b/src/views/projectProcess/detail/index.vue index 7398d8a..c0677eb 100644 --- a/src/views/projectProcess/detail/index.vue +++ b/src/views/projectProcess/detail/index.vue @@ -204,12 +204,16 @@ taskId: row.taskId } getTaskIsAuditing(params).then(res => { + console.log("row",row) this.$router.push({ path: '/flowable/task/myProcess/send/index', query: { deployId: row.deployId, procDefId: row.processDefId, + procInsId: row.processInsId, processName: row.taskName, + flowName: this.queryParams.processName, + projectName: this.detailData.projectName, taskId: row.taskId, showAuditing: res.data, goBackParams: this.queryParams @@ -220,6 +224,8 @@ goToProcessDetail(row) { this.$router.push({ path: '/flowable/task/myProcess/detail/index', query: { + projectName: this.detailData.projectName, + flowName: this.queryParams.processName, procInsId: row.processInsId, deployId: row.deployId, taskId: row.taskId, @@ -228,13 +234,16 @@ }, search() { this.queryParams.currentPage = 1; + this.tableLoading = true this.getList() }, sizeChange(pageSize) { + this.tableLoading = true this.queryParams.pageSize = pageSize; this.getList() }, pageChange(pageNum) { + this.tableLoading = true this.queryParams.currentPage = pageNum; this.getList() }, -- Gitblit v1.8.0