更新版本库
This commit is contained in:
@ -1,71 +0,0 @@
|
||||
//需要包含筛选里的字段 筛选才能生效
|
||||
export interface TableListItem {
|
||||
person?: string;
|
||||
num?: string;
|
||||
people1?: string;
|
||||
people2?: string;
|
||||
people3?: string;
|
||||
people4?: string;
|
||||
people5?: string;
|
||||
offer?: string;
|
||||
score?: string;
|
||||
bid?: string;
|
||||
evaluation?: string;
|
||||
notax?: string;
|
||||
tax?: string;
|
||||
addtax?: string;
|
||||
amount?: string;
|
||||
ranking?: string;
|
||||
action: string;
|
||||
scoring: string;
|
||||
}
|
||||
|
||||
export interface RishListItem {
|
||||
key?: string;
|
||||
supplier?: string;
|
||||
MACarea?: string;
|
||||
}
|
||||
|
||||
export interface WarningListItem {
|
||||
key?: string;
|
||||
person?: string;
|
||||
score?: string;
|
||||
scoreKey?: string;
|
||||
price?: string;
|
||||
priceKey?: string;
|
||||
review?: string;
|
||||
reviewKey?: string;
|
||||
offer?: string;
|
||||
offerKey?: string;
|
||||
recommend?: string;
|
||||
warning?: string;
|
||||
}
|
||||
|
||||
export interface blackListItem {
|
||||
key?: string;
|
||||
supplier?: string;
|
||||
blacklist?: string;
|
||||
time?: string;
|
||||
term?: string;
|
||||
history?: string;
|
||||
}
|
||||
|
||||
export interface differentListItem {
|
||||
key?: string;
|
||||
person?: string;
|
||||
warning?: string;
|
||||
operation?: string;
|
||||
}
|
||||
|
||||
export interface reviewListItem {
|
||||
key?: string;
|
||||
name?: string;
|
||||
person?: string;
|
||||
scoring?: string;
|
||||
deviate?: string;
|
||||
time?: string;
|
||||
remind?: string;
|
||||
expert?: string;
|
||||
reply?: string;
|
||||
action?: string;
|
||||
}
|
@ -1,390 +0,0 @@
|
||||
import React, { useState } from 'react';
|
||||
import { Table, Collapse } from 'antd';
|
||||
import { RishListItem, WarningListItem, TableListItem, blackListItem, differentListItem, reviewListItem } from './data';
|
||||
import '@/assets/ld_style.less'
|
||||
|
||||
const { Panel } = Collapse;
|
||||
|
||||
const rishData: RishListItem[] = [ // 投标文件制作地址日志信息查看
|
||||
{
|
||||
key: '1',
|
||||
supplier: '广州伊登软件科技有限公司',
|
||||
IParea: '0.0.0.0;0.0.0.0;192.168.1.113;0.0.0.0;0.0.0.0;61.139.140.174',
|
||||
MACarea: '3C-91-80-72-16-B8;00-FF-40-61-3C-32;3C-91-80-72-16-B7;3E-91-80-72-16-B7;4E-91-80-72-16-B7',
|
||||
time: '2020/07/27 11:10:06',
|
||||
},
|
||||
];
|
||||
|
||||
const supplierData: RishListItem[] = [ // MAC地址相同的供应商信息如下
|
||||
{
|
||||
key: '1',
|
||||
supplier: '广州伊登软件科技有限公司;华为技术有限公司;中兴通讯股份有限公司',
|
||||
MACarea: '3C-91-80-72-16-B8;00-FF-40-61-3C-32;3C-91-80-72-16-B7;3E-91-80-72-16-B7;4E-91-80-72-16-B7',
|
||||
},
|
||||
];
|
||||
|
||||
const warningData: WarningListItem[] = [ // 供应商报价完全一致或存在规律性差异预警
|
||||
{
|
||||
person: '华为技术有限公司',
|
||||
key: '1',
|
||||
score: '0.000',
|
||||
scoreKey: '3',
|
||||
price: '0.000',
|
||||
priceKey: '3',
|
||||
review: '700000.000',
|
||||
reviewKey: '2',
|
||||
offer: '700000.000',
|
||||
offerKey: '2',
|
||||
recommend: '1',
|
||||
warning: '无',
|
||||
},
|
||||
];
|
||||
|
||||
const scoringData: TableListItem[] = [ // 评审专家打分偏离度分析
|
||||
{
|
||||
person: '华为技术有限公司',
|
||||
num: '3',
|
||||
scoring: 'XXX',
|
||||
action: '结果已确认'
|
||||
},
|
||||
];
|
||||
|
||||
const blackData: blackListItem[] = [ // 供应商报价完全一致或存在规律性差异预警
|
||||
{
|
||||
key: '1',
|
||||
supplier: '华为技术有限公司',
|
||||
blacklist: '是',
|
||||
time: '2020-02-02',
|
||||
term: '3年',
|
||||
history: '是',
|
||||
},
|
||||
];
|
||||
|
||||
const differentData: differentListItem[] = [ // 供应商报价完全一致或存在规律性差异预警
|
||||
{
|
||||
key: '1',
|
||||
person: '华为技术有限公司,报价700000.0000;谈判室测试0002,报价800000.0000;中网威信,报价900000.0000;',
|
||||
warning: '报价存在等差关系',
|
||||
operation: '已发送评标委员会',
|
||||
},
|
||||
];
|
||||
|
||||
const reviewData: reviewListItem[] = [ // 供应商报价完全一致或存在规律性差异预警
|
||||
{
|
||||
key: '1',
|
||||
name: '华为技术有限公司',
|
||||
person: 'XXXX',
|
||||
scoring: 'XXXXX',
|
||||
deviate: 'XXXXX',
|
||||
time: 'XXXXX',
|
||||
remind: 'XXXXX',
|
||||
expert: 'XXXXX',
|
||||
reply: 'XXXXX',
|
||||
action: 'XXXXX',
|
||||
},
|
||||
];
|
||||
|
||||
const Index: React.FC<{}> = () => {
|
||||
const [rishList] = useState(rishData);
|
||||
const [supplierList] = useState(supplierData);
|
||||
const [warningList] = useState(warningData);
|
||||
const [scoringList] = useState(scoringData);
|
||||
const [blackList] = useState(blackData);
|
||||
const [differentList] = useState(differentData);
|
||||
const [reviewList] = useState(reviewData);
|
||||
|
||||
const rishColumns: any[] = [ // 投标文件制作地址日志信息查看
|
||||
{
|
||||
title: '序号',
|
||||
dataIndex: 'key',
|
||||
key: 'key',
|
||||
},
|
||||
{
|
||||
title: '供应商名称',
|
||||
dataIndex: 'supplier',
|
||||
key: 'supplier',
|
||||
},
|
||||
{
|
||||
title: 'IP地址',
|
||||
dataIndex: 'IParea',
|
||||
key: 'IParea',
|
||||
},
|
||||
{
|
||||
title: 'MAC地址',
|
||||
dataIndex: 'MACarea',
|
||||
key: 'MACarea',
|
||||
},
|
||||
{
|
||||
title: '上传时间',
|
||||
dataIndex: 'time',
|
||||
key: 'time',
|
||||
},
|
||||
];
|
||||
|
||||
const supplierColumns: any[] = [ // MAC地址相同的供应商信息如下
|
||||
{
|
||||
title: '序号',
|
||||
dataIndex: 'key',
|
||||
key: 'key',
|
||||
},
|
||||
{
|
||||
title: '供应商名称',
|
||||
dataIndex: 'supplier',
|
||||
key: 'supplier',
|
||||
},
|
||||
{
|
||||
title: 'MAC地址',
|
||||
dataIndex: 'MACarea',
|
||||
key: 'MACarea',
|
||||
},
|
||||
];
|
||||
|
||||
const warningColumns: any[] = [ // 供应商报价完全一致或存在规律性差异预警
|
||||
{
|
||||
title: '投标人',
|
||||
dataIndex: 'person',
|
||||
key: 'person',
|
||||
},
|
||||
{
|
||||
title: '投标序号',
|
||||
dataIndex: 'key',
|
||||
key: 'key',
|
||||
},
|
||||
{
|
||||
title: '综合得分',
|
||||
dataIndex: 'score',
|
||||
key: 'score',
|
||||
},
|
||||
{
|
||||
title: '综合得分排序',
|
||||
dataIndex: 'scoreKey',
|
||||
key: 'scoreKey',
|
||||
},
|
||||
{
|
||||
title: '价格得分',
|
||||
dataIndex: 'price',
|
||||
key: 'price',
|
||||
},
|
||||
{
|
||||
title: '价格得分排序',
|
||||
dataIndex: 'priceKey',
|
||||
key: 'priceKey',
|
||||
},
|
||||
{
|
||||
title: '评审价(单位:元)',
|
||||
dataIndex: 'review',
|
||||
key: 'review',
|
||||
},
|
||||
{
|
||||
title: '评审价排序',
|
||||
dataIndex: 'reviewKey',
|
||||
key: 'reviewKey',
|
||||
},
|
||||
{
|
||||
title: '报价(单位:元)',
|
||||
dataIndex: 'offer',
|
||||
key: 'offer',
|
||||
},
|
||||
{
|
||||
title: '报价排序',
|
||||
dataIndex: 'offerKey',
|
||||
key: 'offerKey',
|
||||
},
|
||||
{
|
||||
title: '中标结果推荐',
|
||||
dataIndex: 'recommend',
|
||||
key: 'recommend',
|
||||
},
|
||||
{
|
||||
title: '预警信息',
|
||||
dataIndex: 'warning',
|
||||
key: 'warning',
|
||||
},
|
||||
];
|
||||
|
||||
const blackColumns: any[] = [ // MAC地址相同的供应商信息如下
|
||||
{
|
||||
title: '序号',
|
||||
dataIndex: 'key',
|
||||
key: 'key',
|
||||
},
|
||||
{
|
||||
title: '供应商名称',
|
||||
dataIndex: 'supplier',
|
||||
key: 'supplier',
|
||||
},
|
||||
{
|
||||
title: '是否被列入集团黑名单',
|
||||
dataIndex: 'blacklist',
|
||||
key: 'blacklist',
|
||||
},
|
||||
{
|
||||
title: '被列入集团黑名单开始时间',
|
||||
dataIndex: 'time',
|
||||
key: 'time',
|
||||
},
|
||||
{
|
||||
title: '被列入集团黑名单期限',
|
||||
dataIndex: 'term',
|
||||
key: 'term',
|
||||
},
|
||||
{
|
||||
title: '历似是否被列入集团黑名单',
|
||||
dataIndex: 'history',
|
||||
key: 'history',
|
||||
},
|
||||
];
|
||||
|
||||
const differentColumns: any[] = [ // MAC地址相同的供应商信息如下
|
||||
{
|
||||
title: '序号',
|
||||
dataIndex: 'key',
|
||||
key: 'key',
|
||||
},
|
||||
{
|
||||
title: '投标人及报价',
|
||||
dataIndex: 'person',
|
||||
key: 'person',
|
||||
},
|
||||
{
|
||||
title: '预警信息',
|
||||
dataIndex: 'warning',
|
||||
key: 'warning',
|
||||
},
|
||||
{
|
||||
title: '操作',
|
||||
dataIndex: 'operation',
|
||||
key: 'operation',
|
||||
},
|
||||
];
|
||||
|
||||
const reviewColumns: any[] = [ // MAC地址相同的供应商信息如下
|
||||
{
|
||||
title: '序号',
|
||||
dataIndex: 'key',
|
||||
key: 'key',
|
||||
},
|
||||
{
|
||||
title: '专家姓名',
|
||||
dataIndex: 'name',
|
||||
key: 'name',
|
||||
},
|
||||
{
|
||||
title: '投标人',
|
||||
dataIndex: 'person',
|
||||
key: 'person',
|
||||
},
|
||||
{
|
||||
title: '打分偏离部分',
|
||||
dataIndex: 'scoring',
|
||||
key: 'scoring',
|
||||
},
|
||||
{
|
||||
title: '偏离度',
|
||||
dataIndex: 'deviate',
|
||||
key: 'deviate',
|
||||
},
|
||||
{
|
||||
title: '打分提交时间',
|
||||
dataIndex: 'time',
|
||||
key: 'time',
|
||||
},
|
||||
{
|
||||
title: '提醒生成时间',
|
||||
dataIndex: 'remind',
|
||||
key: 'remind',
|
||||
},
|
||||
{
|
||||
title: '提醒专家时间',
|
||||
dataIndex: 'expert',
|
||||
key: 'expert',
|
||||
},
|
||||
{
|
||||
title: '专家回复时间',
|
||||
dataIndex: 'reply',
|
||||
key: 'reply',
|
||||
},
|
||||
{
|
||||
title: '操作',
|
||||
dataIndex: 'action',
|
||||
key: 'action',
|
||||
},
|
||||
];
|
||||
|
||||
const scoringColumns: any[] = [ // 评审专家打分偏离度分析
|
||||
{
|
||||
title: '投标人',
|
||||
dataIndex: 'person',
|
||||
key: 'person',
|
||||
},
|
||||
{
|
||||
title: '投标序号',
|
||||
dataIndex: 'num',
|
||||
key: 'num',
|
||||
},
|
||||
{
|
||||
title: '打分偏离度(%)',
|
||||
dataIndex: 'scoring',
|
||||
key: 'scoring',
|
||||
},
|
||||
{
|
||||
title: '操作',
|
||||
dataIndex: 'action',
|
||||
key: 'action',
|
||||
},
|
||||
];
|
||||
|
||||
return (
|
||||
<>
|
||||
<div className="bidContent">
|
||||
<div className="titName">
|
||||
<span className="f16">风险点展示</span>
|
||||
</div>
|
||||
<Collapse accordion>
|
||||
<Panel header="投标文件制作地址日志信息查看" key="1">
|
||||
<div>
|
||||
<p>功能主要展示投标人使用投标文件制作客户端工具,制作投标文件时电脑本机IP地址和MAC地址日志信息,此信息仅供参考。</p>
|
||||
<p>分包号:Y209303/1[第1包]</p>
|
||||
<Table bordered pagination={false} columns={rishColumns} dataSource={rishList} />
|
||||
<p className="mt10">MAC地址相同的供应商信息如下:</p>
|
||||
<Table bordered pagination={false} columns={supplierColumns} dataSource={supplierList} />
|
||||
<p className="mt20 red">提醒:根据《关于进一步防范围标串标风险的通知》(WTZ2019110816765),如不同供应商的MAC地址相同,则可能存在围标、串标风险,请项目经理及评标委员会给予注意!</p>
|
||||
</div>
|
||||
</Panel>
|
||||
<Panel header="评审结果展示及预警" key="2">
|
||||
<div>
|
||||
<p>分包号:Y209303/1[第1包]</p>
|
||||
<Table bordered pagination={false} columns={warningColumns} dataSource={warningList} />
|
||||
</div>
|
||||
</Panel>
|
||||
<Panel header="供应商的黑名单信息查看" key="3">
|
||||
<div>
|
||||
<p>分包号:Y209303/1[第1包]</p>
|
||||
<Table bordered pagination={false} columns={blackColumns} dataSource={blackList} />
|
||||
</div>
|
||||
</Panel>
|
||||
<Panel header="供应商报价完全一致或存在规律性差异预警" key="4">
|
||||
<div>
|
||||
<p>分包号:Y209303/1[第1包]</p>
|
||||
<Table bordered pagination={false} columns={differentColumns} dataSource={differentList} />
|
||||
</div>
|
||||
</Panel>
|
||||
<Panel header="评审专家打分偏离度提醒" key="5">
|
||||
<div>
|
||||
<p>分包号:Y209303/1[第1包]</p>
|
||||
<Table bordered pagination={false} columns={reviewColumns} dataSource={reviewList} />
|
||||
</div>
|
||||
</Panel>
|
||||
<Panel header="评审专家打分偏离度分析" key="6">
|
||||
<div>
|
||||
<p>分包号:Y209303/1[第1包]</p>
|
||||
<p>分包号:Y209303/1[第1包] 表格主要展示各专家对投标人打分与所有专家对该投标人打分平均值的差值百分比,无-表示该专家未参与此部分评分,该表信息仅供参考</p>
|
||||
<Table bordered pagination={false} columns={scoringColumns} dataSource={scoringList} />
|
||||
</div>
|
||||
</Panel>
|
||||
</Collapse>
|
||||
</div>
|
||||
</>
|
||||
)
|
||||
}
|
||||
export default Index
|
Reference in New Issue
Block a user