5.19 增加未查询到成立时间提示
This commit is contained in:
@ -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}
|
||||
</>
|
||||
)
|
||||
},
|
||||
|
Reference in New Issue
Block a user