新增导出

This commit is contained in:
gyq
2026-01-31 09:26:25 +08:00
parent 3855ed4b75
commit 058c8dcadc
6 changed files with 69 additions and 44 deletions

View File

@@ -51,6 +51,15 @@ const AuthAPI = {
method: "delete",
});
},
// 导出常用单位
exportUnits(params: any) {
return request<any, Responseres>({
url: `${baseURL}/export`,
method: "get",
params,
responseType: 'blob'
});
}
};