feat(钢卷管理): 添加批量导出钢卷数据功能

- 新增exportAllMaterialCoil API接口用于导出所有钢卷数据
- 修改导出按钮事件处理为handleExportAll
- 使用download方法实现数据导出功能
This commit is contained in:
砂糖
2025-11-27 13:30:58 +08:00
parent f6e836eccb
commit 1579c725e9
2 changed files with 21 additions and 12 deletions

View File

@@ -119,4 +119,12 @@ export function distributionByActualItemType(query) {
method: 'get',
params: query
})
}
export function exportAllMaterialCoil(query) {
return request({
url: '/wms/materialCoil/export',
method: 'post',
data: query
})
}