完善导入导出

This commit is contained in:
WUSIJIAN
2025-12-04 16:26:26 +08:00
parent 990bbfd8fd
commit 9e62b288b2
7 changed files with 550 additions and 215 deletions

View File

@@ -8,3 +8,13 @@ export function getDataList(data: object) {
params: data,
});
}
// 导出数据
export function exportProduct(data: object) {
return newService({
url: '/customerService/data/statistics/export',
responseType: 'blob',
method: 'get',
params: data,
});
}