From 3a584014054dacfdbd35e7ef3f140b7ff21fbe68 Mon Sep 17 00:00:00 2001 From: A0010407 Date: Tue, 15 Aug 2023 14:22:01 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B7=A5=E8=89=BA=E7=AE=A1=E7=90=86-=E7=94=9F?= =?UTF-8?q?=E4=BA=A7=E5=B7=A5=E5=BA=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/technology/process.js | 26 ++++++++++++++++++++++ src/views/technology/process/index.vue | 22 +++++++++++++++--- src/views/technology/process/single.vue | 6 ++--- src/views/technology/process/singleBom.vue | 5 +---- 4 files changed, 49 insertions(+), 10 deletions(-) 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 @@