新增商品导出

This commit is contained in:
gyq
2026-01-30 16:01:44 +08:00
parent 60ea128a10
commit 3855ed4b75
3 changed files with 29 additions and 2 deletions

View File

@@ -181,6 +181,15 @@ const AuthAPI = {
method: "get",
params,
});
},
// 导出商品
exportProducts(params: any) {
return request<any, Responseres>({
url: `${baseURL}/export`,
method: "get",
params,
responseType: 'blob'
});
}
};