Bug修复:修改导出文件名和表名

master
382696293@qq.com 2 years ago
parent 7abdf96ba3
commit 105c3a9a8f

@ -112,7 +112,7 @@ public class WxUserMemberController extends BaseController {
exportList.add(export); exportList.add(export);
} }
ExcelUtil<WxUserMemberExport> util = new ExcelUtil(WxUserMemberExport.class); ExcelUtil<WxUserMemberExport> util = new ExcelUtil(WxUserMemberExport.class);
util.exportExcel(response, exportList, "用户数据", exportFields); util.exportExcel(response, exportList, "会员数据", exportFields);
} }
/** /**

@ -2506,7 +2506,7 @@ export default {
{ {
...this.exportFieldsForm, ...this.exportFieldsForm,
}, },
`微信会员_${new Date().getTime()}.xlsx` `会员数据_${new Date().getTime()}.xlsx`
) )
this.cancelExportFieldsDialog() this.cancelExportFieldsDialog()
} }

Loading…
Cancel
Save