1.12 修改名称显示
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
import { Button, Col, Descriptions, Divider, Dropdown, Empty, Input, Menu, MenuProps, message, Modal, Progress, Row, Space, Table } from 'antd';
|
||||
import { Button, Col, Descriptions, Divider, Dropdown, Empty, Input, Menu, MenuProps, message, Modal, Progress, Row, Space, Table, Typography } from 'antd';
|
||||
import { debounce } from 'lodash';
|
||||
import React, { useEffect, useMemo, useRef, useState } from 'react';
|
||||
import '../style.less'
|
||||
@ -23,6 +23,7 @@ import { history } from 'umi';
|
||||
|
||||
export const onCell = () => ({ className: "monitor-table-content" });
|
||||
export const onHeaderCell = () => ({ className: "monitor-table-header", });
|
||||
const { Text } = Typography;
|
||||
export const proviceEnum = {
|
||||
"0011": "北京",
|
||||
"0012": "天津",
|
||||
@ -609,12 +610,13 @@ export const ModalList = (props: { modalVisible: boolean, onCancel: () => void,
|
||||
<div key={index} className={exceptionData.length > 1 ? 'modal-list-block' : 'modal-list-block modal-list-block-border0'}>
|
||||
<div className='modal-list-pname'>
|
||||
<div className='modal-list-left'>
|
||||
<img src={titleIcon} /><span>{item?.projectName}</span>
|
||||
<img src={titleIcon} /><Text className="modal-list-name" ellipsis={{ tooltip: item?.projectName }}>{item?.projectName}</Text>
|
||||
<div>{item?.bidSectName || item?.sectionName}</div>
|
||||
</div>
|
||||
{isEmpty(title) && <div className='modal-list-right'>
|
||||
<div className='modal-list-proc'>
|
||||
<span>采购方式:{changeDict(dicData['procurement_mode=entrust'], item?.bidMethodDict)}</span>
|
||||
{/* <span>采购方式:{changeDict(dicData['procurement_mode=entrust'], item?.bidMethodDict)}</span> */}
|
||||
<span>采购方式:单一来源简化流程</span>
|
||||
</div>
|
||||
</div>}
|
||||
</div>
|
||||
|
@ -1148,12 +1148,13 @@
|
||||
justify-content: space-between;
|
||||
|
||||
.modal-list-left {
|
||||
&>span {
|
||||
.modal-list-name {
|
||||
font-size: 16px;
|
||||
font-weight: normal;
|
||||
line-height: 38px;
|
||||
letter-spacing: 0px;
|
||||
color: #FFFFFF;
|
||||
width: calc(60vw - 294px);
|
||||
}
|
||||
|
||||
&>img {
|
||||
|
Reference in New Issue
Block a user