diff --git a/src/components/StaffViewModal/index.js b/src/components/StaffViewModal/index.js
index 2b83a44..da5246b 100644
--- a/src/components/StaffViewModal/index.js
+++ b/src/components/StaffViewModal/index.js
@@ -231,10 +231,10 @@ export default function StaffViewModal({
dataSource={certificates}
locale={{ emptyText: "暂无证照信息" }}
columns={[
- { title: "证照名称", dataIndex: "certName" },
- { title: "证书编号", dataIndex: "certNo" },
- { title: "证书类别", dataIndex: "certTypeName" },
- { title: "发证机关", dataIndex: "issueOrg" },
+ { title: "证照名称", dataIndex: "certName",ellipsis: true },
+ { title: "证书编号", dataIndex: "certNo",ellipsis: true },
+ { title: "证书类别", dataIndex: "certTypeName",ellipsis: true },
+ { title: "发证机关", dataIndex: "issueOrg",ellipsis: true },
{ title: "有效开始日期", dataIndex: "validStartDate", width: 120 },
{ title: "有效结束日期", dataIndex: "validEndDate", width: 120 },
{
diff --git a/src/pages/Container/QualApplication/FilingForm/components/OrgPersonnelSelectModal.jsx b/src/pages/Container/QualApplication/FilingForm/components/OrgPersonnelSelectModal.jsx
index ee21c62..900ec28 100644
--- a/src/pages/Container/QualApplication/FilingForm/components/OrgPersonnelSelectModal.jsx
+++ b/src/pages/Container/QualApplication/FilingForm/components/OrgPersonnelSelectModal.jsx
@@ -22,6 +22,7 @@ function OrgPersonnelSelectModalInner(props) {
current: page,
size: pageSize,
userName: values.staffName || undefined,
+ employmentStatusCode: 1,
});
if (res?.success !== false) {
setDataSource(res?.data || []);
diff --git a/src/pages/Container/Supervision/BasicInfo/RegisteredOrg/Detail/index.js b/src/pages/Container/Supervision/BasicInfo/RegisteredOrg/Detail/index.js
index 510811f..ea55bc7 100644
--- a/src/pages/Container/Supervision/BasicInfo/RegisteredOrg/Detail/index.js
+++ b/src/pages/Container/Supervision/BasicInfo/RegisteredOrg/Detail/index.js
@@ -4,10 +4,12 @@ import {
Col,
DatePicker,
Form,
+ Image,
Input,
InputNumber,
Row,
Select,
+ Modal,
Spin,
Table,
Tabs,
@@ -18,7 +20,6 @@ import {
import dayjs from "dayjs";
import { useEffect, useMemo, useState } from "react";
import PageLayout from "@cqsjjb/jjb-react-admin-component/PageLayout";
-import FilePreviewModal from "~/components/FilePreviewModal";
import {
fetchRegisteredOrgDetail,
fetchRegisteredOrgPersonnelList,
@@ -108,9 +109,7 @@ function isImageUrl(url) {
}
function MaterialsTab({ materialGroups, loading, onPreview }) {
- if (loading) {
- return