重构盘点管理导出功能,将导出模板接口重命名为导出盘点,统一接口命名规范

This commit is contained in:
WUSIJIAN
2026-03-02 17:38:05 +08:00
parent 7d05de97d5
commit 89e43b7b12
2 changed files with 5 additions and 5 deletions

View File

@@ -91,10 +91,10 @@ export function cancelInventoryCount(id: string[], reason?: string) {
});
}
// 导出盘点模板
export function exportInventoryCountTemplate(id: string) {
// 导出盘点
export function exportInventoryCount(id: string) {
return newService({
url: 'assets/inventory/count/exportInventoryCountTemplate',
url: 'assets/inventory/count/exportInventoryCount',
method: 'get',
params: { id },
responseType: 'blob',