feat(wms): 新增APS排产对比功能页面

- 添加 compare.vue 页面实现排产明细与现存钢卷对比展示
- 实现左侧排产明细表格按工序筛选功能
- 实现右侧现存钢卷信息展示包括重量统计
- 添加日期查询和汇总统计功能
- 创建 materialCoil API 接口用于获取钢卷数据
- 集成排产明细和钢卷数据的并列对比显示
This commit is contained in:
2026-06-30 09:30:39 +08:00
parent 4a9d811592
commit dbcc28fb80
2 changed files with 322 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import request from '@/utils/request'
// 查询钢卷物料列表
export function listMaterialCoil(query) {
return request({
url: '/wms/materialCoil/list',
method: 'get',
params: query
})
}