fix:车间设置中的“负责人”选择框改为系统组件。设备台账添加TAB栏“点检记录”“保养记录”“维修记录”。

This commit is contained in:
zhangxuanming
2025-02-06 16:45:36 +08:00
parent 6725a90a74
commit caac47f68a
6 changed files with 228 additions and 68 deletions

View File

@@ -42,3 +42,12 @@ export function delCheckplan(planId) {
method: 'delete'
})
}
// 根据设备编码和计划类型查询设备点检计划头列表
export function getCheckPlan(query) {
return request({
url: '/mes/dv/checkplan/getCheckPlan',
method: 'get',
params: query
})
}

View File

@@ -42,3 +42,12 @@ export function delRepair(repairId) {
method: 'delete'
})
}
// 根据设备编码查询设备维修单列表
export function getRepairList(query) {
return request({
url: '/mes/dv/repair/getRepairList',
method: 'get',
params: query
})
}