From 07b308d26478c3920fd8624b5c9989c7c0da02f6 Mon Sep 17 00:00:00 2001 From: jl-zhoujl2 Date: Fri, 19 May 2023 20:49:32 +0800 Subject: [PATCH] =?UTF-8?q?5.19=20=E5=A2=9E=E5=8A=A0=E6=9C=AA=E6=9F=A5?= =?UTF-8?q?=E8=AF=A2=E5=88=B0=E6=88=90=E7=AB=8B=E6=97=B6=E9=97=B4=E6=8F=90?= =?UTF-8?q?=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Evaluation/BiddingDocumentsDecrypt/index.tsx | 13 +++++++++++++ src/pages/Tender/BiddingResponse/index.tsx | 14 +++++++++++++- .../ZZhaoMu/Tender/BiddingResponse/TableLook.tsx | 14 +++++++++++++- 3 files changed, 39 insertions(+), 2 deletions(-) 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} ) },