用户列表新增导出功能

This commit is contained in:
gyq
2026-01-28 16:16:04 +08:00
parent ca182dc325
commit 71bec03475
6 changed files with 34 additions and 7 deletions

View File

@@ -71,7 +71,16 @@ const API = {
method: "get",
params
});
}
},
// 导出
export(params: any) {
return request({
url: `${baseURL}/export`,
method: "get",
params,
responseType: 'blob'
});
},
}
export default API;
export interface getRequest {