From 900fb1e89840ef51df3ac7296e4053894ded770d Mon Sep 17 00:00:00 2001 From: fuliqi <fuliqi@qq.com> Date: 星期二, 14 一月 2025 11:28:11 +0800 Subject: [PATCH] startTaskId默认设置为本节点Id --- src/views/projectProcess/detail/index.vue | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/src/views/projectProcess/detail/index.vue b/src/views/projectProcess/detail/index.vue index 6c17627..207b6a4 100644 --- a/src/views/projectProcess/detail/index.vue +++ b/src/views/projectProcess/detail/index.vue @@ -232,13 +232,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