123456789101112131415161718192021 |
- /**
- * 导入Excel相关js
- *
- * @author Mai
- * @date 2019/01/04
- * @version
- */
- 'use strict';
- class ImportExcel {
- constructor (setting) {
- this.setting = setting;
- }
- analysisExcel(file) {
- const excelIo = new GC.Spread.Excel.IO();
- excelIo.open(file, function () {
- });
- }
- }
|