From 03a214ffc10b1222eb82cdb1c23e71560b162ee0 Mon Sep 17 00:00:00 2001
From: LiuJiaNan <15703339975@163.com>
Date: Tue, 18 Aug 2026 15:23:24 +0800
Subject: [PATCH] =?UTF-8?q?bug:20583=E3=80=8120582?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../Qualification/Apply/RejectRecord/index.js | 9 +++
.../ExpertProjectReviewRecord/List/index.js | 56 +++++++++++--------
.../RejectRecord/index.js | 9 +++
.../Qualification/Apply/RejectRecord/index.js | 5 +-
.../Qualification/Records/List/index.js | 26 ++++++---
.../Records/RejectRecord/index.js | 9 +++
6 files changed, 80 insertions(+), 34 deletions(-)
create mode 100644 src/pages/Container/BranchCompany/Qualification/Apply/RejectRecord/index.js
create mode 100644 src/pages/Container/BranchCompany/Qualification/ExpertProjectReviewRecord/RejectRecord/index.js
create mode 100644 src/pages/Container/Supervision/Qualification/Records/RejectRecord/index.js
diff --git a/src/pages/Container/BranchCompany/Qualification/Apply/RejectRecord/index.js b/src/pages/Container/BranchCompany/Qualification/Apply/RejectRecord/index.js
new file mode 100644
index 0000000..008baf0
--- /dev/null
+++ b/src/pages/Container/BranchCompany/Qualification/Apply/RejectRecord/index.js
@@ -0,0 +1,9 @@
+import RejectRecordPage from "~/pages/Container/Stakeholder/Qualification/Apply/RejectRecord";
+
+function RejectRecord(props) {
+ return (
+
+ );
+}
+
+export default RejectRecord;
diff --git a/src/pages/Container/BranchCompany/Qualification/ExpertProjectReviewRecord/List/index.js b/src/pages/Container/BranchCompany/Qualification/ExpertProjectReviewRecord/List/index.js
index cc89072..c194971 100644
--- a/src/pages/Container/BranchCompany/Qualification/ExpertProjectReviewRecord/List/index.js
+++ b/src/pages/Container/BranchCompany/Qualification/ExpertProjectReviewRecord/List/index.js
@@ -1,14 +1,14 @@
import { WarningOutlined } from "@ant-design/icons";
import { Permission } from "@cqsjjb/jjb-common-decorator/permission";
import { Connect } from "@cqsjjb/jjb-dva-runtime";
-import {Button, Descriptions, Form, Modal, Space, Tooltip} from "antd";
+import { Button, Descriptions, Form, Modal, Space, Tooltip } from "antd";
+import { useState } from "react";
import Page from "zy-react-library/components/Page";
import Search from "zy-react-library/components/Search";
import DictionarySelect from "zy-react-library/components/Select/Dictionary";
import Table from "zy-react-library/components/Table";
import useTable from "zy-react-library/hooks/useTable";
-import {NS_QUALIFICATION_APPLY, NS_QUALIFICATION_RECORDS} from "~/enumerate/namespace";
-import {useState} from "react";
+import { NS_QUALIFICATION_APPLY, NS_QUALIFICATION_RECORDS } from "~/enumerate/namespace";
function List(props) {
const [form] = Form.useForm();
@@ -76,19 +76,19 @@ function List(props) {
title={
record.expireList
? (
-
- {record.expireList.map((item, index) => (
-
- {item.dataName}
- {" "}
- 已于
- {item.qualificationsTermEnd}
- {" "}
- 过期
-
- ))}
-
- )
+
+ {record.expireList.map((item, index) => (
+
+ {item.dataName}
+ {" "}
+ 已于
+ {item.qualificationsTermEnd}
+ {" "}
+ 过期
+
+ ))}
+
+ )
: "部分资料已过期"
}
>
@@ -124,8 +124,8 @@ function List(props) {
render: (_, record) => (
{
- props.permission("fgs-bwtshjl-ck") &&
- (
+ props.permission("fgs-bwtshjl-ck")
+ && (
)
}
+ {false && (
+
+ )}
),
@@ -179,4 +189,4 @@ const RejectReason = (props) => {
);
};
-export default Connect([NS_QUALIFICATION_RECORDS,NS_QUALIFICATION_APPLY], true)(Permission(List));
+export default Connect([NS_QUALIFICATION_RECORDS, NS_QUALIFICATION_APPLY], true)(Permission(List));
diff --git a/src/pages/Container/BranchCompany/Qualification/ExpertProjectReviewRecord/RejectRecord/index.js b/src/pages/Container/BranchCompany/Qualification/ExpertProjectReviewRecord/RejectRecord/index.js
new file mode 100644
index 0000000..008baf0
--- /dev/null
+++ b/src/pages/Container/BranchCompany/Qualification/ExpertProjectReviewRecord/RejectRecord/index.js
@@ -0,0 +1,9 @@
+import RejectRecordPage from "~/pages/Container/Stakeholder/Qualification/Apply/RejectRecord";
+
+function RejectRecord(props) {
+ return (
+
+ );
+}
+
+export default RejectRecord;
diff --git a/src/pages/Container/Stakeholder/Qualification/Apply/RejectRecord/index.js b/src/pages/Container/Stakeholder/Qualification/Apply/RejectRecord/index.js
index 9d7b2eb..cdc35e9 100644
--- a/src/pages/Container/Stakeholder/Qualification/Apply/RejectRecord/index.js
+++ b/src/pages/Container/Stakeholder/Qualification/Apply/RejectRecord/index.js
@@ -1,4 +1,3 @@
-import { Permission } from "@cqsjjb/jjb-common-decorator/permission";
import { Connect } from "@cqsjjb/jjb-dva-runtime";
import Page from "zy-react-library/components/Page";
import Table from "zy-react-library/components/Table";
@@ -6,7 +5,7 @@ import useGetUrlQuery from "zy-react-library/hooks/useGetUrlQuery";
import useTable from "zy-react-library/hooks/useTable";
import { NS_QUALIFICATION_APPLY } from "~/enumerate/namespace";
-function List(props) {
+function RejectRecord(props) {
const query = useGetUrlQuery();
const { tableProps } = useTable(props["qualificationApplyRejectHistoryList"], {
@@ -41,4 +40,4 @@ function List(props) {
);
}
-export default Connect([NS_QUALIFICATION_APPLY], true)(Permission(List));
+export default Connect([NS_QUALIFICATION_APPLY], true)(RejectRecord);
diff --git a/src/pages/Container/Supervision/Qualification/Records/List/index.js b/src/pages/Container/Supervision/Qualification/Records/List/index.js
index 88694a0..81f0323 100644
--- a/src/pages/Container/Supervision/Qualification/Records/List/index.js
+++ b/src/pages/Container/Supervision/Qualification/Records/List/index.js
@@ -1,14 +1,14 @@
import { WarningOutlined } from "@ant-design/icons";
import { Permission } from "@cqsjjb/jjb-common-decorator/permission";
import { Connect } from "@cqsjjb/jjb-dva-runtime";
-import {Button, Descriptions, Form, Modal, Space, Tooltip} from "antd";
+import { Button, Descriptions, Form, Modal, Space, Tooltip } from "antd";
+import { useState } from "react";
import Page from "zy-react-library/components/Page";
import Search from "zy-react-library/components/Search";
import DictionarySelect from "zy-react-library/components/Select/Dictionary";
import Table from "zy-react-library/components/Table";
import useTable from "zy-react-library/hooks/useTable";
-import {NS_QUALIFICATION_APPLY, NS_QUALIFICATION_RECORDS} from "~/enumerate/namespace";
-import {useState} from "react";
+import { NS_QUALIFICATION_APPLY, NS_QUALIFICATION_RECORDS } from "~/enumerate/namespace";
function List(props) {
const [form] = Form.useForm();
@@ -133,15 +133,25 @@ function List(props) {
查看
)}
+ {false && (
+
+ )}
),
@@ -178,4 +188,4 @@ const RejectReason = (props) => {
);
};
-export default Connect([NS_QUALIFICATION_RECORDS,NS_QUALIFICATION_APPLY], true)(Permission(List));
+export default Connect([NS_QUALIFICATION_RECORDS, NS_QUALIFICATION_APPLY], true)(Permission(List));
diff --git a/src/pages/Container/Supervision/Qualification/Records/RejectRecord/index.js b/src/pages/Container/Supervision/Qualification/Records/RejectRecord/index.js
new file mode 100644
index 0000000..008baf0
--- /dev/null
+++ b/src/pages/Container/Supervision/Qualification/Records/RejectRecord/index.js
@@ -0,0 +1,9 @@
+import RejectRecordPage from "~/pages/Container/Stakeholder/Qualification/Apply/RejectRecord";
+
+function RejectRecord(props) {
+ return (
+
+ );
+}
+
+export default RejectRecord;