From 59dd94eea38b3fb0cfc33560d54b50ebf037d75d Mon Sep 17 00:00:00 2001 From: fengyuan_yang <1976974459@qq.com> Date: Wed, 12 Aug 2026 09:41:03 +0800 Subject: [PATCH] =?UTF-8?q?2026-08-12=20=E5=88=80=E5=85=B7=E7=94=B3?= =?UTF-8?q?=E8=AF=B7=E8=AE=B0=E5=BD=95=EF=BC=8C=E4=B8=BB=E4=BF=A1=E6=81=AF?= =?UTF-8?q?=E5=88=97=E8=A1=A8=E5=A2=9E=E5=8A=A0=E5=88=97=EF=BC=9A=E2=80=9C?= =?UTF-8?q?IFS=20PR=E7=BC=96=E5=8F=B7=E2=80=9D=E3=80=81=E2=80=9C=E9=87=87?= =?UTF-8?q?=E8=B4=AD=E8=AE=A2=E5=8D=95=E5=8F=B7=E2=80=9D=E3=80=81=E2=80=9C?= =?UTF-8?q?=E5=8E=82=E5=95=86=E5=90=8D=E7=A7=B0=E2=80=9D=E3=80=81=E2=80=9C?= =?UTF-8?q?=E6=80=BB=E6=88=90=E6=9C=AC(=E5=85=83)=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../projectInfo/com_project_info_part.vue | 21 +++--- src/views/modules/tooling/searchToolApply.vue | 74 ++++++++++++++++++- 2 files changed, 85 insertions(+), 10 deletions(-) diff --git a/src/views/modules/project/projectInfo/com_project_info_part.vue b/src/views/modules/project/projectInfo/com_project_info_part.vue index cbc6665..d4cb08e 100644 --- a/src/views/modules/project/projectInfo/com_project_info_part.vue +++ b/src/views/modules/project/projectInfo/com_project_info_part.vue @@ -961,8 +961,7 @@ class="message-item" :key="index"> {{ message.split(':')[0] }}: - - {{ message.split(':')[1] }} + {{ message.split(':').slice(1).join(':') }} @@ -3948,24 +3947,25 @@ import CodeGeneration from "../../code/generation.vue"; diff --git a/src/views/modules/tooling/searchToolApply.vue b/src/views/modules/tooling/searchToolApply.vue index 53cea5f..447fb8f 100644 --- a/src/views/modules/tooling/searchToolApply.vue +++ b/src/views/modules/tooling/searchToolApply.vue @@ -1463,6 +1463,78 @@ export default { fixed: '', columnWidth: 120 }, + { + userId: this.$store.state.user.name, + functionId: 106002, + serialNumber: '106002Table1PrNo', + tableId: "106002Table1", + tableName: "刀具申请主表", + columnProp: "prNo", + headerAlign: "center", + align: "left", + columnLabel: "IFS PR编号", + columnHidden: false, + columnImage: false, + columnSortable: false, + sortLv: 0, + status: true, + fixed: '', + columnWidth: 120 + }, + { + userId: this.$store.state.user.name, + functionId: 106002, + serialNumber: '106002Table1PoNo', + tableId: "106002Table1", + tableName: "刀具申请主表", + columnProp: "poNo", + headerAlign: "center", + align: "left", + columnLabel: "采购订单号", + columnHidden: false, + columnImage: false, + columnSortable: false, + sortLv: 0, + status: true, + fixed: '', + columnWidth: 120 + }, + { + userId: this.$store.state.user.name, + functionId: 106002, + serialNumber: '106002Table1SupplierName', + tableId: "106002Table1", + tableName: "刀具申请主表", + columnProp: "supplierName", + headerAlign: "center", + align: "left", + columnLabel: "厂商名称", + columnHidden: false, + columnImage: false, + columnSortable: false, + sortLv: 0, + status: true, + fixed: '', + columnWidth: 150 + }, + { + userId: this.$store.state.user.name, + functionId: 106002, + serialNumber: '106002Table1AllCost', + tableId: "106002Table1", + tableName: "刀具申请主表", + columnProp: "allCost", + headerAlign: "center", + align: "right", + columnLabel: "总成本(元)", + columnHidden: false, + columnImage: false, + columnSortable: false, + sortLv: 0, + status: true, + fixed: '', + columnWidth: 100 + }, { userId: this.$store.state.user.name, functionId: 106002, @@ -3216,7 +3288,7 @@ export default { fieldColumn() { if (!this.accessField('10601001')) { this.columnList2 = this.columnList2.filter(item => item.columnProp !== 'standardCost'); - this.columnList1 = this.columnList1.filter(item => item.columnProp !== 'totalCost'); + this.columnList1 = this.columnList1.filter(item => !['totalCost', 'allCost'].includes(item.columnProp)); } },