Commit a4c0cf03 by zhaochengxiang

采集

parent 3293640c
...@@ -233,22 +233,27 @@ const FC = (props) => { ...@@ -233,22 +233,27 @@ const FC = (props) => {
const onTimeOk = (value) => { const onTimeOk = (value) => {
setRangeValue(value?.map(item => item.valueOf())); setRangeValue(value?.map(item => item.valueOf()));
setPagination({...pagination, pageNum: 1});
} }
const onTaskCodeChange = (value) => { const onTaskCodeChange = (value) => {
setTaskCode(value); setTaskCode(value);
setPagination({...pagination, pageNum: 1});
} }
const onDatasourceChange = (value) => { const onDatasourceChange = (value) => {
setDatasourceName(value); setDatasourceName(value);
setPagination({...pagination, pageNum: 1});
} }
const onReportStateChange = (value) => { const onReportStateChange = (value) => {
setReportState(value); setReportState(value);
setPagination({...pagination, pageNum: 1});
} }
const onSearchInputChange = (e) => { const onSearchInputChange = (e) => {
setKeyword(e.target.value||''); setKeyword(e.target.value||'');
setPagination({...pagination, pageNum: 1});
} }
const onPaginationChange = (page,size) => { const onPaginationChange = (page,size) => {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment