From b6631dce14d6b3b8cf830377e68d777bee046bc5 Mon Sep 17 00:00:00 2001 From: fengyuan_yang <1976974459@qq.com> Date: Mon, 12 Jan 2026 20:11:00 +0800 Subject: [PATCH] =?UTF-8?q?2026-01-12=201=E3=80=81IPQC=E6=A3=80=E9=AA=8C?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E7=9A=84=E6=9F=A5=E8=AF=A2=E6=9D=A1=E4=BB=B6?= =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E2=80=9C=E5=8A=A0=E5=B7=A5=E4=B8=AD=E5=BF=83?= =?UTF-8?q?=E2=80=9D=E5=B1=9E=E6=80=A7=202=E3=80=81=E6=A3=80=E9=AA=8C?= =?UTF-8?q?=E5=86=85=E5=AE=B9=E5=88=97=E8=A1=A8=EF=BC=8C=E2=80=9C=E6=A0=87?= =?UTF-8?q?=E5=87=86=E5=80=BC=E2=80=9D=E3=80=81=E2=80=9C=E4=B8=8A=E9=99=90?= =?UTF-8?q?=E5=80=BC=E2=80=9D=E3=80=81=E2=80=9C=E4=B8=8B=E9=99=90=E5=80=BC?= =?UTF-8?q?=E2=80=9D=E4=B8=89=E4=B8=AA=E5=88=97=E5=85=81=E8=AE=B8=E7=BC=96?= =?UTF-8?q?=E8=BE=91=203=E3=80=81=E3=80=90=E6=A8=A1=E6=9D=BF=E5=AF=BC?= =?UTF-8?q?=E5=85=A5=E3=80=91=E5=8A=9F=E8=83=BD=EF=BC=8C=E5=AF=BC=E5=85=A5?= =?UTF-8?q?=E7=9A=84=E6=97=B6=E5=80=99=E9=9C=80=E8=A6=81=E6=8E=92=E5=BA=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../soIssueNotify/searchIssureNotify.vue | 3 +- .../soIssueNotify/searchIssureNotifyForCK.vue | 5 +- src/views/modules/qc/FQCResultEntry.vue | 10 ++- src/views/modules/qc/IPQCResultEntry.vue | 66 +++++++++++++++++-- src/views/modules/qc/IQCResultEntry.vue | 10 ++- src/views/modules/qc/OQCResultEntry.vue | 10 ++- .../modules/warehouse/labelTransactionLog.vue | 1 + .../yieldReport/com_process_inspection.vue | 23 +++++++ 8 files changed, 110 insertions(+), 18 deletions(-) diff --git a/src/views/modules/orderIssure/soIssueNotify/searchIssureNotify.vue b/src/views/modules/orderIssure/soIssueNotify/searchIssureNotify.vue index 80ada50..5d27a64 100644 --- a/src/views/modules/orderIssure/soIssueNotify/searchIssureNotify.vue +++ b/src/views/modules/orderIssure/soIssueNotify/searchIssureNotify.vue @@ -3073,8 +3073,7 @@ // 查加工中心 getWorkCenterList() { let inData = { - site: this.userBuList[0].buNo.split('_')[0], - buNo: this.userBuList[0].buNo.split('_')[1] + username: this.$store.state.user.name } getWorkCenterList(inData).then(({data}) =>{ if (data && data.code === 0) { diff --git a/src/views/modules/orderIssure/soIssueNotify/searchIssureNotifyForCK.vue b/src/views/modules/orderIssure/soIssueNotify/searchIssureNotifyForCK.vue index ef0fd65..b0c53f0 100644 --- a/src/views/modules/orderIssure/soIssueNotify/searchIssureNotifyForCK.vue +++ b/src/views/modules/orderIssure/soIssueNotify/searchIssureNotifyForCK.vue @@ -454,11 +454,8 @@ export default { }, // 加载加工中心列表 loadWorkCenterList() { - if (this.userBuList.length === 0) return - const buNo = this.userBuList[0].buNo const inData = { - site: buNo.split('_')[0], - buNo: buNo.split('_')[1] + username: this.$store.state.user.name } getWorkCenterList(inData).then(({data}) => { if (data && data.code === 0) { diff --git a/src/views/modules/qc/FQCResultEntry.vue b/src/views/modules/qc/FQCResultEntry.vue index 1c1e476..bbb9033 100644 --- a/src/views/modules/qc/FQCResultEntry.vue +++ b/src/views/modules/qc/FQCResultEntry.vue @@ -661,8 +661,14 @@ :min-width="item.columnWidth" :label="item.columnLabel"> - + + + + + + + + + @@ -146,7 +158,6 @@ - @@ -687,8 +698,14 @@ :min-width="item.columnWidth" :label="item.columnLabel"> { this.resourceList3 = data.rows }) }, + // 加载加工中心列表 + loadWorkCenterList() { + const inData = { + username: this.$store.state.user.name + } + getWorkCenterList(inData).then(({data}) => { + if (data && data.code === 0) { + this.workCenterList = data.rows || [] + } + }) + }, + // 批量打印标签 printList () { if (this.IPQCSelections.length === 0) { diff --git a/src/views/modules/qc/IQCResultEntry.vue b/src/views/modules/qc/IQCResultEntry.vue index 917ba3b..e7df99a 100644 --- a/src/views/modules/qc/IQCResultEntry.vue +++ b/src/views/modules/qc/IQCResultEntry.vue @@ -576,8 +576,14 @@ :min-width="item.columnWidth" :label="item.columnLabel"> + diff --git a/src/views/modules/yieldReport/com_process_inspection.vue b/src/views/modules/yieldReport/com_process_inspection.vue index bcdcaaf..fbd5e2a 100644 --- a/src/views/modules/yieldReport/com_process_inspection.vue +++ b/src/views/modules/yieldReport/com_process_inspection.vue @@ -547,6 +547,29 @@ align="center" min-width="100" label="标准值"> + + + + + + +