fix: 移除项目列表请求中的状态参数

删除项目列表请求中的status参数,以获取所有状态的项目数据
This commit is contained in:
liangbin 2026-02-04 08:31:20 +08:00
parent d6fd635dc8
commit 2dc36e8dd4
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ const fetchProjectImplementationList = async () => {
// //
params.status = '实施中' params.status = '实施中'
} }
delete params.status
const result = await getProjectImplementationList(params) const result = await getProjectImplementationList(params)
// { total, rows, code, msg } // { total, rows, code, msg }
if (result && result.rows && Array.isArray(result.rows)) { if (result && result.rows && Array.isArray(result.rows)) {