fix: 导出建表语句文件名称
Showing
1 changed file
with
1 additions
and
1 deletions
| ... | @@ -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 | ... | ... |
-
Please register or sign in to post a comment