From 98efed791af81d10e722309f4b45c707676a364e Mon Sep 17 00:00:00 2001 From: zhangdi <1104545947@qq.com> Date: Fri, 20 Mar 2026 15:24:34 +0800 Subject: [PATCH] =?UTF-8?q?=E7=94=9F=E4=BA=A7=E7=AE=A1=E7=90=86=E6=8E=A5?= =?UTF-8?q?=E5=8F=A3=E8=81=94=E8=B0=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../beforeAndAfterPlating.js | 36 ++ src/views/processManagement/taskDispatch.vue | 2 +- .../beforeAndAfterPlating/afterPlating.vue | 200 +++++++++ .../components/handoverRec.vue | 378 ++++++++++++++++++ .../components/maintainRecords.vue | 222 ++++++++++ .../components/print.vue | 358 +++++++++++++++++ .../beforeAndAfterPlating/index.vue | 58 +-- .../productionManagement/reworkPlan/index.vue | 205 ++++++++++ 8 files changed, 1435 insertions(+), 24 deletions(-) create mode 100644 src/views/productionManagement/beforeAndAfterPlating/afterPlating.vue create mode 100644 src/views/productionManagement/beforeAndAfterPlating/components/handoverRec.vue create mode 100644 src/views/productionManagement/beforeAndAfterPlating/components/maintainRecords.vue create mode 100644 src/views/productionManagement/beforeAndAfterPlating/components/print.vue create mode 100644 src/views/productionManagement/reworkPlan/index.vue diff --git a/src/api/productionManagement/beforeAndAfterPlating.js b/src/api/productionManagement/beforeAndAfterPlating.js index b05a875..d405d7a 100644 --- a/src/api/productionManagement/beforeAndAfterPlating.js +++ b/src/api/productionManagement/beforeAndAfterPlating.js @@ -75,3 +75,39 @@ export const savePlateFrontEnter = (params) => { data: params, }); }; + + +// 镀后记录 /plateAround/queryDelLogRecord +export const queryDelLogRecord = (current, size, params) => { + return request({ + url: '/blade-desk/plateAround/queryDelLogRecord', + method: 'get', + params: { + ...params, + current, + size, + }, + }); +}; + +// 入库单列表查询 +export const queryNewRecord = (current, size, params) => { + return request({ + url: '/blade-desk/plateAround/queryNewRecord', + method: 'get', + params: { + ...params, + current, + size, + }, + }); +}; + +// 入库单打印获取数据 +export const handoverRecordPrint = (params) => { + return request({ + url: '/blade-desk/plateAround/handoverRecordPrint', + method: 'post', + params: params, + }); +}; \ No newline at end of file diff --git a/src/views/processManagement/taskDispatch.vue b/src/views/processManagement/taskDispatch.vue index 1e2f342..805e1df 100644 --- a/src/views/processManagement/taskDispatch.vue +++ b/src/views/processManagement/taskDispatch.vue @@ -292,7 +292,7 @@ export default { this.data = res.data.data.records; this.loading = false; - this.page.total = res.data.data.length; + this.page.total = res.data.data.total; this.selectionClear(); }); }, diff --git a/src/views/productionManagement/beforeAndAfterPlating/afterPlating.vue b/src/views/productionManagement/beforeAndAfterPlating/afterPlating.vue new file mode 100644 index 0000000..f36ba93 --- /dev/null +++ b/src/views/productionManagement/beforeAndAfterPlating/afterPlating.vue @@ -0,0 +1,200 @@ + + + + + diff --git a/src/views/productionManagement/beforeAndAfterPlating/components/handoverRec.vue b/src/views/productionManagement/beforeAndAfterPlating/components/handoverRec.vue new file mode 100644 index 0000000..aa695bf --- /dev/null +++ b/src/views/productionManagement/beforeAndAfterPlating/components/handoverRec.vue @@ -0,0 +1,378 @@ + + + +d \ No newline at end of file diff --git a/src/views/productionManagement/beforeAndAfterPlating/components/maintainRecords.vue b/src/views/productionManagement/beforeAndAfterPlating/components/maintainRecords.vue new file mode 100644 index 0000000..18f24c1 --- /dev/null +++ b/src/views/productionManagement/beforeAndAfterPlating/components/maintainRecords.vue @@ -0,0 +1,222 @@ + + + +d \ No newline at end of file diff --git a/src/views/productionManagement/beforeAndAfterPlating/components/print.vue b/src/views/productionManagement/beforeAndAfterPlating/components/print.vue new file mode 100644 index 0000000..060ffbb --- /dev/null +++ b/src/views/productionManagement/beforeAndAfterPlating/components/print.vue @@ -0,0 +1,358 @@ + + + + diff --git a/src/views/productionManagement/beforeAndAfterPlating/index.vue b/src/views/productionManagement/beforeAndAfterPlating/index.vue index b580656..084b9f0 100644 --- a/src/views/productionManagement/beforeAndAfterPlating/index.vue +++ b/src/views/productionManagement/beforeAndAfterPlating/index.vue @@ -1,31 +1,39 @@ + + +d \ No newline at end of file