importDecision() {
let excelIo = new GC.Spread.Excel.IO();
let json = this.spread.toJSON()
debugger
// here is excel IO API
excelIo.save(json, function (blob) {
debugger
saveAs(blob, "jcb.xlsx");
}, function (e) {
debugger
console.log(e);
}, { password: '' });
},
|
|