导出请求处理

This commit is contained in:
WUSIJIAN
2025-12-03 15:29:05 +08:00
parent 07ae596c2d
commit 8b57729c8a
7 changed files with 41 additions and 15 deletions

View File

@@ -35,3 +35,11 @@ export function updateProduct(data: object) {
data: data,
});
}
export function exportProduct(data: object) {
return newService({
url: '/customerService/product/export',
method: 'get',
params: data,
});
}