diff --git a/src/pages/Project/ProjectManage/ProjectManager/ProjectDocumentation/components/ProjectDocumentation.tsx b/src/pages/Project/ProjectManage/ProjectManager/ProjectDocumentation/components/ProjectDocumentation.tsx
index 9936e79..a1bd77b 100644
--- a/src/pages/Project/ProjectManage/ProjectManager/ProjectDocumentation/components/ProjectDocumentation.tsx
+++ b/src/pages/Project/ProjectManage/ProjectManager/ProjectDocumentation/components/ProjectDocumentation.tsx
@@ -75,7 +75,7 @@ const ProjectDocumentation: React.FC = () => {
{sectionFirst.bidSectName}
- {createSection(record)}
+ {createSection(record, openingName)}
{openingName}时间:{isEmpty(sectionFirst.sectionOpenTime) ? '-' : sectionFirst.sectionOpenTime}
@@ -159,7 +159,7 @@ const ProjectDocumentation: React.FC = () => {
* @param record
* @returns
*/
- const createSection = (record: any) => {
+ const createSection = (record: any, openingName: string) => {
//标段信息
let sectionFirst = record?.sectionFirst;
//是否异常
@@ -227,7 +227,7 @@ const ProjectDocumentation: React.FC = () => {
sectionFirst.sectionCount > 1 && (
+
)}
trigger="hover"
overlayStyle={{ width: "45%" }}
diff --git a/src/pages/Project/ProjectManage/ProjectManager/ProjectDocumentation/components/ProjectSectionInfo.tsx b/src/pages/Project/ProjectManage/ProjectManager/ProjectDocumentation/components/ProjectSectionInfo.tsx
index 80e7a6f..811f35b 100644
--- a/src/pages/Project/ProjectManage/ProjectManager/ProjectDocumentation/components/ProjectSectionInfo.tsx
+++ b/src/pages/Project/ProjectManage/ProjectManager/ProjectDocumentation/components/ProjectSectionInfo.tsx
@@ -8,14 +8,15 @@ import { getBusinessModuleName, getSectionBybidMethodDict, getTagColor } from ".
interface ProjectSectionInfoItem {
projectId: string,
- bidMethodDict: string
+ bidMethodDict: string,
+ openingName: string,
}
//进度条长度
const progressWidth = {
width: '180px'
}
const ProjectSectionInfo: React.FC = (props) => {
- const { projectId, bidMethodDict } = props;
+ const { projectId, bidMethodDict, openingName } = props;
const [listData, setListData] = useState([]);
const [loading, setLoading] = useState(false);
//获取字典
@@ -48,6 +49,9 @@ const ProjectSectionInfo: React.FC = (props) => {
{createSection(record)}
+
+ {openingName}时间:{isEmpty(record.sectionOpenTime) ? '-' : record.sectionOpenTime}
+
)
@@ -108,7 +112,7 @@ const ProjectSectionInfo: React.FC = (props) => {
archiveStatus
?
已归档
-
+
:
{getBusinessModuleName(dictData, bidMethodDict, sectionFirst?.businessModule)}
@@ -120,7 +124,7 @@ const ProjectSectionInfo: React.FC = (props) => {
异常
}
- 报名人数:{isEmpty(sectionFirst.applyCount) ? "0" : sectionFirst.applyCount}
+ 报名人数:{isEmpty(sectionFirst.applyCount) ? "0" : sectionFirst.applyCount}
)
}