From 08cecfcf40800ba06fb10284fe3f09ee9586572f Mon Sep 17 00:00:00 2001
From: zhangdi <15053473693@163.com>
Date: Wed, 21 Jan 2026 18:45:02 +0800
Subject: [PATCH] =?UTF-8?q?=E5=B7=A5=E8=89=BA=E9=80=BB=E8=BE=91=E6=8F=90?=
=?UTF-8?q?=E4=BA=A4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../components/processMainte/partDetails.vue | 17 ++++++--------
.../processMainte/processPlanning.vue | 22 ++++++++++++++-----
2 files changed, 24 insertions(+), 15 deletions(-)
diff --git a/src/views/processManagement/components/processMainte/partDetails.vue b/src/views/processManagement/components/processMainte/partDetails.vue
index 1667145..a10feb7 100644
--- a/src/views/processManagement/components/processMainte/partDetails.vue
+++ b/src/views/processManagement/components/processMainte/partDetails.vue
@@ -380,7 +380,6 @@
-
-
-
-
-
+
+
@@ -639,7 +636,7 @@ export default {
versionOptions: [], //
plateList: [], //镀种信息
projectOptions: [],
- standardList:[],//检验标准
+ standardList: [], //检验标准
};
},
mounted() {
@@ -648,7 +645,7 @@ export default {
this.getCcraftInfo();
this.getPartInfo();
this.getPlatingList();
- this.getStandardList()
+ this.getStandardList();
},
methods: {
getStandardList() {
@@ -767,6 +764,7 @@ export default {
};
getPartManagementDetail(query).then(res => {
this.formData = res.data.data.dsPartEntity;
+ this.dataTable = res.data.data.dsPartEntities;
});
} else if (this.detailsType === 'taskProcessing') {
getPartDetail(this.rowData.id).then(res => {
@@ -865,13 +863,12 @@ export default {
top: -5px;
/* 或者使用 flex: 0 0 200px; 根据需要调整宽度 */
}
-.box-card-two{
- height: calc(100vh - 200px);
+.box-card-two {
+ height: calc(100vh - 200px);
}
.box-card {
display: flex;
flex-direction: row;
-
.process-left {
// padding: 20px;
diff --git a/src/views/processManagement/components/processMainte/processPlanning.vue b/src/views/processManagement/components/processMainte/processPlanning.vue
index acc9c4c..789ba1b 100644
--- a/src/views/processManagement/components/processMainte/processPlanning.vue
+++ b/src/views/processManagement/components/processMainte/processPlanning.vue
@@ -261,20 +261,21 @@
>
-
+
*检验项目
item.id == row.projecCode);
+ this.form2.tableData2[index].projectName = selectName.name;
+ },
+ // 获取检验标准名字
+ standardChange() {
+ let selectName = this.standardList.find(item => item.id == row.projectStandard);
+ this.form2.tableData2[index].projectStandardName = selectName.name;
+ },
getStandardList() {
getStandardList().then(res => {
this.standardList = res.data.data;