|
@@ -504,14 +504,22 @@ import addToIndexDatabaseBatch from './components/highFrequency/addToIndexDataba
|
|
|
Keywords:keyWord,
|
|
|
SortField:sortParam,
|
|
|
SortType:sortType,
|
|
|
- PageSize:Number(pageSize) || 1,
|
|
|
- CurrentIndex:Number(currentPage)||10
|
|
|
+ PageSize:Number(pageSize) || 10,
|
|
|
+ CurrentIndex:Number(currentPage)||1
|
|
|
}
|
|
|
// console.log(params,'params');
|
|
|
const res = await highFrequencyDataInterface.getTableDataApi(params)
|
|
|
if(res.Ret!==200) return
|
|
|
const {Paging,List} = res.Data||{}
|
|
|
this.tableData = List||[]
|
|
|
+ if(this.tableData.length === 0 && this.searchParams.currentPage>1 && Paging.Pages){
|
|
|
+ // 最后一页的最后一个被删除了 当前页码没数据 去最后一页 非要改
|
|
|
+ this.searchParams.currentPage > Paging.Pages ?
|
|
|
+ (this.searchParams.currentPage = Paging.Pages || 1) :
|
|
|
+ (this.searchParams.currentPage--)
|
|
|
+ this.getTableData(type)
|
|
|
+ return
|
|
|
+ }
|
|
|
this.total = Paging.Totals||0
|
|
|
if(this.tableData.length>0){
|
|
|
this.tableDataIds = this.tableData.map(it => it.IndexId)
|