diff --git a/src/api/technology/process.js b/src/api/technology/process.js index 5aa0f77..f7a1bd5 100644 --- a/src/api/technology/process.js +++ b/src/api/technology/process.js @@ -51,3 +51,29 @@ export function delProcess(processId) { method: 'delete' }) } + +// 查询设备管理列表 +export function listEquipment(query) { + return request({ + url: '/technology/pro/process/selectEquipmentList', + method: 'get', + params: query + }); +} + +// 查询设备管理详细 +export function getEquipment(equipmentId) { + return request({ + url: '/technology/pro/process/e/' + equipmentId, + method: 'get' + }); +} + +// 查询BOM物料管理列表 +export function listBom(query) { + return request({ + url: '/technology/pro/process/bomList', + method: 'get', + params: query + }); +} diff --git a/src/views/technology/process/index.vue b/src/views/technology/process/index.vue index 1778f87..1cb135f 100644 --- a/src/views/technology/process/index.vue +++ b/src/views/technology/process/index.vue @@ -224,6 +224,23 @@ + + + + + + + + + + + + + + + + + @@ -334,8 +351,7 @@