From 7eef9c828f137024d28094b7d368bad324373264 Mon Sep 17 00:00:00 2001 From: luotaiqian <1147642922@qq.com> Date: Wed, 8 Jul 2026 21:08:57 +0800 Subject: [PATCH] bug fix --- jjb.config.js | 2 +- .../Container/QualApplication/FilingChange/List/index.js | 4 +++- src/pages/Container/QualApplication/FilingListTable.jsx | 4 ++-- src/pages/Container/QualificationReview/QualChange/index.js | 4 ++-- 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/jjb.config.js b/jjb.config.js index a384d58..b0e9e8b 100644 --- a/jjb.config.js +++ b/jjb.config.js @@ -10,7 +10,7 @@ module.exports = { javaGitBranch: "dev", // 本地联调 safetyEval-service(context-path: /safetyEval,默认端口 8095) // 可通过环境变量覆盖: SAFETY_EVAL_API_HOST=http://192.168.x.x:8095 - API_HOST: "http://192.168.0.103", + API_HOST: "http://192.168.0.149", }, production: { // 应用后端分支名称,部署上线需要 diff --git a/src/pages/Container/QualApplication/FilingChange/List/index.js b/src/pages/Container/QualApplication/FilingChange/List/index.js index 1646730..3867da9 100644 --- a/src/pages/Container/QualApplication/FilingChange/List/index.js +++ b/src/pages/Container/QualApplication/FilingChange/List/index.js @@ -48,7 +48,9 @@ function FilingChangeListPage(props) { }, []); const handleSearch = (values) => { - router.query = { ...router.query, ...values, current: 1, size: 10 }; + const { filingNo, ...rest } = values; + const { filingNo: _omit, ...restQuery } = router.query; + router.query = { ...restQuery, ...rest, ...(filingNo != null && filingNo !== "" ? { id: filingNo } : {}), current: 1, size: 10 }; getData(); }; diff --git a/src/pages/Container/QualApplication/FilingListTable.jsx b/src/pages/Container/QualApplication/FilingListTable.jsx index 101de96..b1f385e 100644 --- a/src/pages/Container/QualApplication/FilingListTable.jsx +++ b/src/pages/Container/QualApplication/FilingListTable.jsx @@ -150,8 +150,8 @@ export default function FilingListTable({ ))} , -