154fe19b by lihua

fix: 导出建表语句文件名称

1 parent 96ead719
...@@ -814,7 +814,7 @@ const saveOrUpdate = async (params: any = {}, type) => { ...@@ -814,7 +814,7 @@ const saveOrUpdate = async (params: any = {}, type) => {
814 case 2: 814 case 2:
815 // 生成建表语句 815 // 生成建表语句
816 createTableSql(finalParams).then((res: any) => { 816 createTableSql(finalParams).then((res: any) => {
817 download(res, '分类分级目录数据.xlsx', 'excel') 817 download(res, `${finalParams.tableName}-建表语句.xlsx`, 'excel')
818 }); 818 });
819 819
820 820
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!