diff --git a/src/controllers/sheetmanage.js b/src/controllers/sheetmanage.js index bf37f40..5d943da 100644 --- a/src/controllers/sheetmanage.js +++ b/src/controllers/sheetmanage.js @@ -972,6 +972,30 @@ const sheetmanage = { } }, + loadOtherFile:function(file){ + let _this = this; + let sheetindexset = _this.checkLoadSheetIndex(file); + let sheetindex = []; + + for(let i = 0; i < sheetindexset.length; i++){ + let item = sheetindexset[i]; + + if(item == file["index"]){ + continue; + } + + sheetindex.push(item); + } + + for(let i = 0;i