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