import_excel.js 320 B

123456789101112131415161718192021
  1. /**
  2. * 导入Excel相关js
  3. *
  4. * @author Mai
  5. * @date 2019/01/04
  6. * @version
  7. */
  8. 'use strict';
  9. class ImportExcel {
  10. constructor (setting) {
  11. this.setting = setting;
  12. }
  13. analysisExcel(file) {
  14. const excelIo = new GC.Spread.Excel.IO();
  15. excelIo.open(file, function () {
  16. });
  17. }
  18. }