feat: 添加待办事项模块及相关功能
新增待办事项页面,包含钢卷列表展示、筛选功能、钢卷详情页,支持重贴标签操作和查看改判/调拨记录,同时添加底部 tab 栏入口和对应图标资源
This commit is contained in:
19
apps/hand-factory/api/wms/todo.js
Normal file
19
apps/hand-factory/api/wms/todo.js
Normal file
@@ -0,0 +1,19 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 查询改判记录(根据钢卷ID)
|
||||
export function listChangeHistory(coilId) {
|
||||
return request({
|
||||
url: '/wms/coilQualityRejudge/list',
|
||||
method: 'get',
|
||||
params: { coilId }
|
||||
})
|
||||
}
|
||||
|
||||
// 查询调拨记录(根据钢卷ID)
|
||||
export function listTransferHistory(coilId) {
|
||||
return request({
|
||||
url: '/wms/transferOrderItem/list',
|
||||
method: 'get',
|
||||
params: { coilId }
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user