浏览代码

ETA1.9.3 测试bug修复

hbchen 8 月之前
父节点
当前提交
2d6d37be58

+ 1 - 1
src/views/dataEntry_manage/thirdBase/components/highFrequency/addHighFrequencyData.vue

@@ -86,7 +86,7 @@
                 </el-select>
               </div>
               <!-- 复权基点 -->
-              <div class="time-cycle-item">
+              <div class="time-cycle-item" v-show="otherParams.adjustment!='no'">
                 <span>{{ $t('HighFrequencyData.base_point') }}</span>
                 <el-date-picker
                   class="date-picker"

+ 10 - 2
src/views/dataEntry_manage/thirdBase/highFrequencyData.vue

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