Merge branch '20220309-供应商关联关系疑似违规行为' into 'release_20230512'

5.11 1、供应商股权穿透 2、供应商注册时间风险分析 3、供应商股权穿透分析,针对历史项目

See merge request eshop/fe_service_ebtp_frontend!236
This commit is contained in:
jl-zhoujl2
2023-05-11 02:09:42 +00:00
25 changed files with 1068 additions and 991 deletions

View File

@ -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,