From 2dc36e8dd4181bdf8f146c619dd00a0c310fdfc5 Mon Sep 17 00:00:00 2001 From: liangbin <15536829364@163.com> Date: Wed, 4 Feb 2026 08:31:20 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E7=A7=BB=E9=99=A4=E9=A1=B9=E7=9B=AE?= =?UTF-8?q?=E5=88=97=E8=A1=A8=E8=AF=B7=E6=B1=82=E4=B8=AD=E7=9A=84=E7=8A=B6?= =?UTF-8?q?=E6=80=81=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 删除项目列表请求中的status参数,以获取所有状态的项目数据 --- src/pages/ProjectList/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/ProjectList/index.vue b/src/pages/ProjectList/index.vue index 0a039ab..f9f1ba4 100644 --- a/src/pages/ProjectList/index.vue +++ b/src/pages/ProjectList/index.vue @@ -71,7 +71,7 @@ const fetchProjectImplementationList = async () => { // 全部实施中项目 params.status = '实施中' } - + delete params.status const result = await getProjectImplementationList(params) // 根据返回的数据结构处理:{ total, rows, code, msg } if (result && result.rows && Array.isArray(result.rows)) {