From 943e43fac9e2fefabaeffb20445361d5d02cea25 Mon Sep 17 00:00:00 2001 From: 86134 <aa> Date: 星期一, 20 十一月 2023 10:24:45 +0800 Subject: [PATCH] 11 --- src/api/product/personboard.js | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 files changed, 51 insertions(+), 2 deletions(-) diff --git a/src/api/product/personboard.js b/src/api/product/personboard.js index d8c1f37..39dbfe5 100644 --- a/src/api/product/personboard.js +++ b/src/api/product/personboard.js @@ -134,6 +134,14 @@ }) } +export function getOperationTaskCopy(query) { + return request({ + url: '/mes/operationTask/getOperationTaskCopy', + method: 'get', + params: query + }) +} + export function changeOperationTaskState(ids, event) { return request({ url: '/mes/operationTask/product/changeState/' + event, @@ -335,6 +343,15 @@ } // 鎵归噺鎻愪氦 +export function batchChangeCopy(qury, event) { + return request({ + url: '/mes/product/state/batchChangeCopy/' + event, + method: 'post', + data: qury + }) +} + +// 鎵归噺鎻愪氦 export function batchChange2(ids, event) { return request({ url: '/mes/product/state/batchChange/' + event, @@ -510,9 +527,41 @@ }) } -export function getOperationTaskCopy(query) { +export function submitInsPart(obj) { return request({ - url: '/mes/operationTask/getOperationTaskCopy', + url: '/mes/applyPart/submitIns', + method: 'post', + data: obj + }) +} + +export function submitProductMain(obj) { + return request({ + url: '/mes/product/submitProductMain', + method: 'post', + data: obj + }) +} + +export function inputHandle(obj) { + return request({ + url: '/mes/feeding/inputHandle', + method: 'post', + data: obj + }) +} + +export function cancellationOfWorkApplication(query) { + return request({ + url: '/mes/product/cancellationOfWorkApplication', + method: 'get', + params: query + }) +} + +export function generateBackflush(query) { + return request({ + url: '/mes/product/generateBackFlush', method: 'get', params: query }) -- Gitblit v1.9.3