2.9 修改

This commit is contained in:
jl-zhoujl2
2023-02-09 16:24:48 +08:00
parent 58573e0818
commit 811d2c0b32

View File

@ -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'>