diff --git a/src/pages/Tender/ProjectManager/MentionDoubtReply/components/MentionDoubtReply.tsx b/src/pages/Tender/ProjectManager/MentionDoubtReply/components/MentionDoubtReply.tsx index 14aeb33..31c7972 100644 --- a/src/pages/Tender/ProjectManager/MentionDoubtReply/components/MentionDoubtReply.tsx +++ b/src/pages/Tender/ProjectManager/MentionDoubtReply/components/MentionDoubtReply.tsx @@ -55,6 +55,8 @@ const MentionDoubtReply: React.FC<{}> = () => { const actionRef = useRef(); const [bid, setBid] = useState(''); const [dissentDatasetId, setDissentDatasetId] = useState(''); + //提疑回复材料附件id + const [resultsDatasetId, setResultsDatasetId] = useState(''); //选择标段 const [packageIdSelect, setPackageIdSelect] = useState([]); //所有流程名 @@ -94,6 +96,16 @@ const MentionDoubtReply: React.FC<{}> = () => { title: flowName[moduleName.section] + '名称', dataIndex: 'packageName', }, + { + title: '提疑时间', + dataIndex: 'dissentSendTime', + width: 120 + }, + { + title: '提疑回复时间', + dataIndex: 'proceedingResultsTime', + width: 120 + }, { title: '联系人', dataIndex: 'contactsName', @@ -115,12 +127,12 @@ const MentionDoubtReply: React.FC<{}> = () => { valueType: 'option', render: (_: any, record: any) => [ String(record.dissentStatus) === '3' ? - [ - , - ] : - [ - , - ] + [ + , + ] : + [ + , + ] // ] }, @@ -134,9 +146,10 @@ const MentionDoubtReply: React.FC<{}> = () => { setWhetherReadonly(true); setBid(data.resultsDatasetId); setDissentDatasetId(data.dissentDatasetId); + setResultsDatasetId(data.resultsDatasetId); let packageList: any = []; let packageArr = data.packageName.split(","); - packageArr.map((item: any, index: any)=>{ + packageArr.map((item: any, index: any) => { packageList.push({ "bidSectName": item, "id": index @@ -153,9 +166,10 @@ const MentionDoubtReply: React.FC<{}> = () => { setVisible(true); setBid(data.resultsDatasetId); setDissentDatasetId(data.dissentDatasetId); + setResultsDatasetId(data.resultsDatasetId); let packageList: any = []; let packageArr = data.packageName.split(","); - packageArr.map((item: any, index: any)=>{ + packageArr.map((item: any, index: any) => { packageList.push({ "bidSectName": item, "id": index @@ -239,7 +253,7 @@ const MentionDoubtReply: React.FC<{}> = () => { label="证明材料附件" name="dissentDatasetId" > - + @@ -256,14 +270,14 @@ const MentionDoubtReply: React.FC<{}> = () => { @@ -285,26 +299,14 @@ const MentionDoubtReply: React.FC<{}> = () => { - {/* - - - - - */} + + ) @@ -345,7 +347,7 @@ const MentionDoubtReply: React.FC<{}> = () => { } return ( -
+
= () => { //所有流程名 const flowName = getAllFlowNameByRoomType(bidMethodDict, roomType); // getbidQualification - //回复附件id + //提疑回复材料附件id const [resultsDatasetId, setResultsDatasetId] = useState(''); const [whetherToDisplayTheReply, setWhetherToDisplayTheReply] = useState(false); const [bidSectionIsOptional, setBidSectionIsOptional] = useState([]); @@ -115,6 +115,16 @@ const SupplierQuestionsOrObjections: React.FC<{}> = () => { title: flowName[moduleName.section] + '名称', dataIndex: 'packageName', }, + { + title: '提疑时间', + dataIndex: 'dissentSendTime', + width: 120 + }, + { + title: '提疑回复时间', + dataIndex: 'proceedingResultsTime', + width: 120 + }, { title: '联系人', dataIndex: 'contactsName', @@ -442,38 +452,14 @@ const SupplierQuestionsOrObjections: React.FC<{}> = () => { > + + + : null } - {/* { - whetherToDisplayTheReply && ( - <> - - - - - - - - - - - - - - ) - } */}