const excelIo = new IO()
const ssjson = baseGcConfig.spread.toJSON({ includeBindingSource: true })
let fileName = 'download'
fileName += '.xlsx'
excelIo.save(
ssjson,
function (blob) {
file_download(blob, fileName)
showLoading(false)
},
function (e) {
//process error
console.error(e)
showLoading(false)
}
)
|
|