5.19 增加未查询到成立时间提示

This commit is contained in:
jl-zhoujl2
2023-05-19 20:49:32 +08:00
parent 301648bee5
commit 07b308d264
3 changed files with 39 additions and 2 deletions

View File

@ -11,6 +11,7 @@ import {
DownloadOutlined,
ExclamationCircleOutlined,
FullscreenExitOutlined,
InfoCircleOutlined,
UnorderedListOutlined
} from "@ant-design/icons";
import {
@ -383,6 +384,18 @@ const BiddingDocumentsDecrypt: React.FC<BiddingDocumentsDecryptProps> = (props)
>
{(record?.supplierCreatetime && record?.supplierCreatetime.toOpenbidTime === 0) && <AlertOutlined style={{ color: "rgb(245,156,38)", marginLeft: 6 }} />}
</Popover>
{record?.supplierCreatetime && record?.supplierCreatetime.foundTime === null ? (
<Popover
content={
<Typography>
<Text style={{ display: 'block', color: "rgb(245,156,38)" }}></Text>
<Text></Text>
</Typography>
}
>
<InfoCircleOutlined style={{ color: "rgb(245,156,38)", marginLeft: 6 }} />
</Popover>
) : null}
</>
)
},