优化盘点管理导出模板功能,新增盘点任务ID参数传递,添加下载模板前的任务选择验证提示,调整任务名称列最小宽度

This commit is contained in:
WUSIJIAN
2026-02-28 17:59:31 +08:00
parent 7e2595467b
commit 7d05de97d5
3 changed files with 8 additions and 3 deletions

View File

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