Compare commits
No commits in common. "21ff39b55d99cc005bee5520ef371962b3f6c2f0" and "c0dbf43805f40c2050c41c473187f4a9e6a0363f" have entirely different histories.
21ff39b55d
...
c0dbf43805
|
|
@ -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.149",
|
||||
API_HOST: "http://192.168.0.103",
|
||||
},
|
||||
production: {
|
||||
// 应用后端分支名称,部署上线需要
|
||||
|
|
|
|||
|
|
@ -48,9 +48,7 @@ function FilingChangeListPage(props) {
|
|||
}, []);
|
||||
|
||||
const handleSearch = (values) => {
|
||||
const { filingNo, ...rest } = values;
|
||||
const { filingNo: _omit, ...restQuery } = router.query;
|
||||
router.query = { ...restQuery, ...rest, ...(filingNo != null && filingNo !== "" ? { id: filingNo } : {}), current: 1, size: 10 };
|
||||
router.query = { ...router.query, ...values, current: 1, size: 10 };
|
||||
getData();
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -150,8 +150,8 @@ export default function FilingListTable({
|
|||
))}
|
||||
</ControlWrapper.Select>
|
||||
</Form.Item>,
|
||||
<Form.Item key="filingNo" name="filingNo" normalize={(v) => (v ? v.replace(/\D/g, "").slice(0, 20) : v)}>
|
||||
<ControlWrapper.Input label="备案编号" placeholder="请输入" allowClear maxLength={20} />
|
||||
<Form.Item key="filingNo" name="filingNo">
|
||||
<ControlWrapper.Input label="备案编号" placeholder="关键字搜索" allowClear />
|
||||
</Form.Item>,
|
||||
<Form.Item key="filingStatus" name="filingStatus">
|
||||
<ControlWrapper.Select
|
||||
|
|
|
|||
|
|
@ -86,8 +86,8 @@ const QualChange = (props) => {
|
|||
form={form}
|
||||
loading={qualReviewLoading}
|
||||
formLine={[
|
||||
<Form.Item key="id" name="id" normalize={(v) => (v ? v.replace(/\D/g, "").slice(0, 20) : v)}>
|
||||
<ControlWrapper.Input label="备案编号" placeholder="请输入" allowClear maxLength={20} />
|
||||
<Form.Item key="id" name="id">
|
||||
<ControlWrapper.Input label="备案编号" placeholder="请输入" allowClear />
|
||||
</Form.Item>,
|
||||
<Form.Item key="filingStatusCode" name="filingStatusCode">
|
||||
<ControlWrapper.Select
|
||||
|
|
|
|||
Loading…
Reference in New Issue