From 6179ccc32baab98160cea177bb3086c565b46428 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A7=9C=E9=9B=AA?= <1617763071@qq.com> Date: Fri, 20 Mar 2026 09:07:27 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A4=96=E5=8D=8F=E7=89=B9=E6=AE=8A=E8=BF=87?= =?UTF-8?q?=E7=A8=8B=E8=A1=A8=E4=B8=8E=E4=BB=BB=E5=8A=A1=E5=8D=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/oem/inplan.js | 45 ++++ .../components/inPlantProcessDetails.vue | 159 +++++++++++ .../components/inPlantProcessHandle.vue | 252 ++++++++++++++++++ src/views/oem/proTask/inPlantProcessOem.vue | 142 ++++++++-- 4 files changed, 577 insertions(+), 21 deletions(-) create mode 100644 src/api/oem/inplan.js create mode 100644 src/views/oem/proTask/components/inPlantProcessDetails.vue create mode 100644 src/views/oem/proTask/components/inPlantProcessHandle.vue diff --git a/src/api/oem/inplan.js b/src/api/oem/inplan.js new file mode 100644 index 0000000..32bb37f --- /dev/null +++ b/src/api/oem/inplan.js @@ -0,0 +1,45 @@ + +import request from '@/axios'; + +export const pageList = (current, size, params) => { + return request({ + url: '/blade-desk/mesOemTaskBill/page', + method: 'get', + params: { + ...params, + current, + size, + }, + }); +}; + +//详情 +export const detailItem = (params)=>{ + return request({ + url: '/blade-desk/dsTaskBill/listOemFillingDetail', + method: 'get', + params: params + }); +} + +//处理 +export const handleOemTaskBillItem = params => { + return request({ + url: '/blade-desk/mesOemTaskBill/handleOemTaskBill', + method: 'post', + data: params, + }); +}; + +//删除 + export const removeItem = ids => { + return request({ + url: '/blade-desk/mesOemTaskBill/remove', + method: 'post', + params: { + ids, + }, + }); +}; + + diff --git a/src/views/oem/proTask/components/inPlantProcessDetails.vue b/src/views/oem/proTask/components/inPlantProcessDetails.vue new file mode 100644 index 0000000..a41ec8e --- /dev/null +++ b/src/views/oem/proTask/components/inPlantProcessDetails.vue @@ -0,0 +1,159 @@ + + + diff --git a/src/views/oem/proTask/components/inPlantProcessHandle.vue b/src/views/oem/proTask/components/inPlantProcessHandle.vue new file mode 100644 index 0000000..3c858ac --- /dev/null +++ b/src/views/oem/proTask/components/inPlantProcessHandle.vue @@ -0,0 +1,252 @@ + + + + + \ No newline at end of file diff --git a/src/views/oem/proTask/inPlantProcessOem.vue b/src/views/oem/proTask/inPlantProcessOem.vue index 7aecc5a..94e7648 100644 --- a/src/views/oem/proTask/inPlantProcessOem.vue +++ b/src/views/oem/proTask/inPlantProcessOem.vue @@ -22,15 +22,42 @@ + + + +