Merge branch 'release_electronic_bid_evaluation_room' into 'release_20230102'
1.6 第十二版 See merge request eshop/fe_service_ebtp_frontend!114
This commit is contained in:
@ -1217,7 +1217,7 @@ export const GraphChart = (props: { type: string, chartData: any[], chartColor?:
|
||||
},
|
||||
visualMap: {
|
||||
min: 0,
|
||||
max: 50,
|
||||
max: 2000,
|
||||
inRange: {
|
||||
color: [
|
||||
'#01417f',
|
||||
@ -1418,12 +1418,12 @@ const MonitorHome: React.FC<{}> = () => {
|
||||
//评审专家数量
|
||||
const [expertNumber, setExpertNumber] = useState<string | number>("");
|
||||
//评标室监控
|
||||
const [monitorList, setMonitorList] = useState<any[]>([]);
|
||||
const [monitorList, setMonitorList] = useState<any[]>([{ status: 3 }, { status: 3 }, { status: 3 }]);
|
||||
//今日开标-评标阶段,评标及时率
|
||||
const [todayInfoData, setTodayInfoData] = useState<any>();
|
||||
//权限校验
|
||||
const auth = useRef<boolean>(authCheck());
|
||||
const bidStatusMap = ["准备评标", "正在评标", "评标结束", "暂无数据"];
|
||||
const bidStatusMap = ["准备评标", "正在评标", "评标结束", ""];
|
||||
const statusColorMap = ["card-text-orange", "card-text-green", "card-text-purple", "card-text-white"];
|
||||
//year select
|
||||
const localYear: string = moment().month() < 2 ? String(moment().year() - 1) : String(moment().year());
|
||||
@ -1607,7 +1607,7 @@ const MonitorHome: React.FC<{}> = () => {
|
||||
<ScreenLabel title="智能评标监控" />
|
||||
</div>
|
||||
<div className="bid-evaluation">
|
||||
{monitorList.length > 0 ? <div><Row gutter={16}>
|
||||
<div><Row gutter={16}>
|
||||
{monitorList.map((item, index) => (
|
||||
<Col span={8} key={index}>
|
||||
<div className="card-default-01" onClick={() => onCardClick(item)}>
|
||||
@ -1619,7 +1619,7 @@ const MonitorHome: React.FC<{}> = () => {
|
||||
</div>
|
||||
</Col>
|
||||
))}
|
||||
</Row></div> : <Empty image={Empty.PRESENTED_IMAGE_SIMPLE} className="monitor-modal-empty" />}
|
||||
</Row></div>
|
||||
</div>
|
||||
</div>
|
||||
</Col>
|
||||
|
Reference in New Issue
Block a user