5.6 供应商注册时间风险分析
This commit is contained in:
@ -6,6 +6,7 @@ import ProForm, {
|
||||
} from '@ant-design/pro-form';
|
||||
import ProTable from "@ant-design/pro-table";
|
||||
import {
|
||||
AlertOutlined,
|
||||
ClockCircleOutlined,
|
||||
DownloadOutlined,
|
||||
ExclamationCircleOutlined,
|
||||
@ -368,7 +369,22 @@ const BiddingDocumentsDecrypt: React.FC<BiddingDocumentsDecryptProps> = (props)
|
||||
{
|
||||
title: '供应商名称',
|
||||
dataIndex: 'companyName',
|
||||
valueType: 'text'
|
||||
valueType: 'text',
|
||||
render: (_: any, record: any, index: any) => (
|
||||
<>
|
||||
{_}
|
||||
<Popover
|
||||
content={
|
||||
<Typography style={{ width: "352px" }}>
|
||||
<Text style={{ display: 'block', color: "rgb(245,156,38)" }}>温馨提示:</Text>
|
||||
<Text >该供应商成立日期为<Text underline>{record?.supplierCreatetime && record?.supplierCreatetime.foundTime}</Text>,距评标时间不足一年,请结合招标文件/采购文件的投标人资格要求,仔细核对供应商应当具备的企业资质。</Text>
|
||||
</Typography>
|
||||
}
|
||||
>
|
||||
{(record?.supplierCreatetime && record?.supplierCreatetime.toOpenbidTime === 0) && <AlertOutlined style={{ color: "rgb(245,156,38)", marginLeft: 6 }} />}
|
||||
</Popover>
|
||||
</>
|
||||
)
|
||||
},
|
||||
{
|
||||
title: (
|
||||
|
Reference in New Issue
Block a user