fix: 修改“岗位管理”-全部导出-按钮功能的文件扩展名为xlsx(SpringBoot后台导出数据是xlsx格式的文件),否则excel打开会提示错误。

This commit is contained in:
Kevin Zhang 2023-10-02 15:14:01 +08:00
parent fb7ca82260
commit c35a260495

View File

@ -162,7 +162,7 @@ export function usePostHook() {
CommonUtils.fillPaginationParams(searchFormParams, pagination);
CommonUtils.fillTimeRangeParams(searchFormParams, timeRange.value);
exportPostExcelApi(toRaw(searchFormParams), "岗位数据.xls");
exportPostExcelApi(toRaw(searchFormParams), "岗位数据.xlsx");
}
async function handleDelete(row) {