浏览代码

switch branch

Karsa 1 年之前
父节点
当前提交
5af0de2acb
共有 1 个文件被更改,包括 2 次插入4 次删除
  1. 2 4
      src/views/datasheet_manage/customAnalysis/addAnalysisSheet.vue

+ 2 - 4
src/views/datasheet_manage/customAnalysis/addAnalysisSheet.vue

@@ -87,8 +87,7 @@ export default {
       for(let i =0;i<len;i++) {
       for(let i =0;i<len;i++) {
         if(this.allSheetData[i].celldata[this.currentPage*this.pageSize]) {
         if(this.allSheetData[i].celldata[this.currentPage*this.pageSize]) {
           this.sheetConfig.data[i].celldata = this.sheetConfig.data[i].celldata.concat(this.allSheetData[i].celldata.slice(this.currentPage*this.pageSize, (this.currentPage+1)*this.pageSize))
           this.sheetConfig.data[i].celldata = this.sheetConfig.data[i].celldata.concat(this.allSheetData[i].celldata.slice(this.currentPage*this.pageSize, (this.currentPage+1)*this.pageSize))
-          console.log(this.sheetConfig.data[i].celldata)
-          this.$refs.sheetRef.init()
+          // this.$refs.sheetRef.init()
         }
         }
         continue
         continue
 
 
@@ -97,8 +96,6 @@ export default {
       if (this.currentPage<this.maxPage) {
       if (this.currentPage<this.maxPage) {
         this.currentPage++
         this.currentPage++
         requestAnimationFrame(this.loadDataSync());
         requestAnimationFrame(this.loadDataSync());
-      }else {
-        this.isLoadOver = true;
       }
       }
     },
     },
 
 
@@ -123,6 +120,7 @@ export default {
         celldata: _.celldata,
         celldata: _.celldata,
       }));
       }));
       
       
+      //辣鸡插件连更新数据的api都没有 做切片加载都做不了
       // this.loadDataSync();
       // this.loadDataSync();
       this.isLoading = false;
       this.isLoading = false;
     },
     },