5.9 上传投标文件、应答情况查看页、评审打分页,评审汇总表,评审结果MAC强控
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
import React, { useEffect, useState } from 'react';
|
||||
import { Button, Card, DatePicker, Divider, Form, List, message, Modal, Progress, Spin } from "antd";
|
||||
import { Button, Card, DatePicker, Divider, Form, List, message, Modal, Popover, Progress, Spin, Typography } from "antd";
|
||||
import ProForm, {
|
||||
ModalForm,
|
||||
ProFormDateTimePicker,
|
||||
@ -8,9 +8,10 @@ import ProTable from "@ant-design/pro-table";
|
||||
import {
|
||||
ClockCircleOutlined,
|
||||
DownloadOutlined,
|
||||
ExclamationCircleOutlined,
|
||||
FullscreenExitOutlined,
|
||||
UnorderedListOutlined
|
||||
} from "@ant-design/icons/lib";
|
||||
} from "@ant-design/icons";
|
||||
import {
|
||||
getBiddingDocumentsDecryptList,
|
||||
DownFile,
|
||||
@ -57,6 +58,7 @@ const BiddingDocumentsDecrypt: React.FC<BiddingDocumentsDecryptProps> = (props)
|
||||
const [spinTip, spinTipSet] = useState<string>('请稍等...');//spin tip显示文字
|
||||
|
||||
const MethodDict = getProMethod();
|
||||
const { Title, Text } = Typography;
|
||||
//应答字段类型 评标,应答
|
||||
let responseType = MethodDict == "procurement_mode_1" || MethodDict == "procurement_mode_2" ? "投标" : "应答"
|
||||
let supplierType = MethodDict == "procurement_mode_1" || MethodDict == "procurement_mode_2" ? "投标人" : "供应商"
|
||||
@ -367,6 +369,26 @@ const BiddingDocumentsDecrypt: React.FC<BiddingDocumentsDecryptProps> = (props)
|
||||
dataIndex: 'companyName',
|
||||
valueType: 'text'
|
||||
},
|
||||
{
|
||||
title: (
|
||||
<span>
|
||||
同意MAC地址检测承诺书时间
|
||||
<Popover
|
||||
content={
|
||||
<Typography>
|
||||
<Title level={5}>承诺书内容:</Title>
|
||||
<Text style={{ display: 'inline-block', textIndent: '2em' }}>已阅读并承诺在采购招标过程中,不存在围标、串标行为。同意中国联通公司对参与供应商进行IP、MAC地址校验,如不同供应商的MAC地址相同,评标/评审委员会(或采购人)将按围标、串标处理。</Text>
|
||||
</Typography>
|
||||
}
|
||||
overlayInnerStyle={{ width: 400 }}
|
||||
>
|
||||
<ExclamationCircleOutlined style={{ color: '#b30000', marginLeft: 4 }} />
|
||||
</Popover>
|
||||
</span>
|
||||
),
|
||||
dataIndex: 'confirmTime',
|
||||
valueType: 'text'
|
||||
},
|
||||
{
|
||||
title: '解密状态',
|
||||
dataIndex: item.quoteOrOther == "1" ? 'decryptOtherStatus' : "decryptStatus",
|
||||
|
Reference in New Issue
Block a user