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({ ))} , -