2.9 修改
This commit is contained in:
@ -743,7 +743,7 @@ export const ModalList = (props: { modalVisible: boolean, onCancel: () => void,
|
||||
footer={null}
|
||||
>
|
||||
<h3 style={titleStyle}>{isNotEmpty(title) ? title : "重点监测异常明细单"}</h3>
|
||||
{exceptionData?.total && <div className='modal-list-search'>
|
||||
{exceptionData?.total != undefined && <div className='modal-list-search'>
|
||||
<div>
|
||||
项目名称:<Input style={{ width: 200 }} onChange={onProjectChange} />
|
||||
</div>
|
||||
@ -786,7 +786,7 @@ export const ModalList = (props: { modalVisible: boolean, onCancel: () => void,
|
||||
)
|
||||
}) : <Empty image={Empty.PRESENTED_IMAGE_SIMPLE} className="monitor-modal-empty" />}
|
||||
</div>
|
||||
{exceptionData?.total && <div className='modal-list-pagination'>
|
||||
{exceptionData?.total != undefined && <div className='modal-list-pagination'>
|
||||
<Pagination current={current} pageSize={10} showSizeChanger={false} onChange={onChange} total={total} itemRender={itemRender} showTotal={(total, range) => `共 ${total} 条`} />
|
||||
</div>}
|
||||
{/* <div className='monitor-modal-btn'>
|
||||
|
Reference in New Issue
Block a user