5.6 供应商注册时间风险分析
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
import React, { useState, useEffect } from 'react';
|
||||
import { Button, Table, Space, Modal, Collapse } from 'antd';
|
||||
import { Button, Table, Space, Modal, Collapse, Popover, Typography } from 'antd';
|
||||
import { getPayandreply, getDetail } from './service';
|
||||
import '@/assets/ld_style.less';
|
||||
import { getProId, getProMethod, getDicData } from '@/utils/session';
|
||||
@ -7,8 +7,10 @@ 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';
|
||||
|
||||
const { Panel } = Collapse;
|
||||
const { Text } = Typography;
|
||||
|
||||
let columns: any = [], detailColumns: any = [], downloadColumns: any[]
|
||||
let modelTit: string, tit1: string, tit2: string, tit3: string, contactListName: string, contactTelephone: string, contactEmail: string, bidSectBizNum: string, bidSectName: string, bidSectTypeDict: string, bidcontactName: string, dowSectBizNum: string, exportBtn: string;
|
||||
@ -111,6 +113,21 @@ const Index: React.FC<{}> = () => {
|
||||
title: '单位名称',
|
||||
width: '25%',
|
||||
dataIndex: 'companyName',
|
||||
render: (_: any, record: any, index: any) => (
|
||||
<>
|
||||
{_}
|
||||
<Popover
|
||||
content={
|
||||
<Typography style={{ width: "282px" }}>
|
||||
<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.toPayTime === 0) && <AlertOutlined style={{ color: "rgb(245,156,38)", marginLeft: 6 }} />}
|
||||
</Popover>
|
||||
</>
|
||||
)
|
||||
},
|
||||
{
|
||||
title: contactListName,
|
||||
|
Reference in New Issue
Block a user