diff --git a/src/pages/Evaluation/BiddingDocumentsDecrypt/index.tsx b/src/pages/Evaluation/BiddingDocumentsDecrypt/index.tsx index 752170a..83d049b 100644 --- a/src/pages/Evaluation/BiddingDocumentsDecrypt/index.tsx +++ b/src/pages/Evaluation/BiddingDocumentsDecrypt/index.tsx @@ -11,6 +11,7 @@ import { DownloadOutlined, ExclamationCircleOutlined, FullscreenExitOutlined, + InfoCircleOutlined, UnorderedListOutlined } from "@ant-design/icons"; import { @@ -383,6 +384,18 @@ const BiddingDocumentsDecrypt: React.FC = (props) > {(record?.supplierCreatetime && record?.supplierCreatetime.toOpenbidTime === 0) && } + {record?.supplierCreatetime && record?.supplierCreatetime.foundTime === null ? ( + + 温馨提示: + 未查询到成立时间 + + } + > + + + ) : null} ) }, diff --git a/src/pages/Tender/BiddingResponse/index.tsx b/src/pages/Tender/BiddingResponse/index.tsx index daa32bf..aa5eefc 100644 --- a/src/pages/Tender/BiddingResponse/index.tsx +++ b/src/pages/Tender/BiddingResponse/index.tsx @@ -7,7 +7,7 @@ import FileDown from '@/utils/Download'; import { getURLInformation, multipleTypeTransform, proTableValueEnum } from '@/utils/CommonUtils'; import { btnAuthority } from '@/utils/authority'; import ProTable from '@ant-design/pro-table'; -import { AlertOutlined } from '@ant-design/icons'; +import { AlertOutlined, InfoCircleOutlined } from '@ant-design/icons'; const { Panel } = Collapse; const { Text } = Typography; @@ -126,6 +126,18 @@ const Index: React.FC<{}> = () => { > {(record?.supplierCreatetime && record?.supplierCreatetime.toPayTime === 0) && } + {record?.supplierCreatetime && record?.supplierCreatetime.foundTime === null ? ( + + 温馨提示: + 未查询到成立时间 + + } + > + + + ) : null} ) }, diff --git a/src/pages/ZZhaoMu/Tender/BiddingResponse/TableLook.tsx b/src/pages/ZZhaoMu/Tender/BiddingResponse/TableLook.tsx index e0a58bb..e7dcb46 100644 --- a/src/pages/ZZhaoMu/Tender/BiddingResponse/TableLook.tsx +++ b/src/pages/ZZhaoMu/Tender/BiddingResponse/TableLook.tsx @@ -6,7 +6,7 @@ import { getURLInformation, multipleTypeTransform, proTableValueEnum } from '@/u import { getDetail, getOpen } from './service'; import { btnAuthority } from '@/utils/authority'; import ProTable from '@ant-design/pro-table'; -import { AlertOutlined } from '@ant-design/icons'; +import { AlertOutlined, InfoCircleOutlined } from '@ant-design/icons'; const { Panel } = Collapse; const { Text } = Typography; @@ -55,6 +55,18 @@ const Index: React.FC = (props) => { > {(record?.supplierCreatetime && record?.supplierCreatetime.toPayTime === 0) && } + {record?.supplierCreatetime && record?.supplierCreatetime.foundTime === null ? ( + + 温馨提示: + 未查询到成立时间 + + } + > + + + ) : null} ) },