Merge pull request #133 from Hobo-clh/master

fix: 修复代码生成器的vue模板中,导出文件【xxx.xls】时,文件名不正确问题
pull/2/head
芋道源码 2022-04-24 17:40:48 +08:00 committed by GitHub
commit 0eecff675d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -390,7 +390,7 @@ export default {
this.exportLoading = true;
return export${simpleClassName}Excel(params);
}).then(response => {
this.$download.excel(response, '${table.classComment}.xls');
this.#[[$]]#download.excel(response, '${table.classComment}.xls');
this.exportLoading = false;
}).catch(() => {});
}