From 5c0bd65a5c2b54cb4a52593bbf3009def48dc4a9 Mon Sep 17 00:00:00 2001 From: jinna Date: Wed, 11 Mar 2026 18:01:23 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B4=A8=E9=87=8F=E6=A8=A1=E5=9D=97=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../productionTesting/productionQuality.js | 8 ++++---- src/views/productionTesting/InspectionTemplate.vue | 9 +++++++++ src/views/productionTesting/productionQuality.vue | 4 ++-- 3 files changed, 15 insertions(+), 6 deletions(-) diff --git a/src/api/qualityManagement/productionTesting/productionQuality.js b/src/api/qualityManagement/productionTesting/productionQuality.js index 15f077c..27d7d64 100644 --- a/src/api/qualityManagement/productionTesting/productionQuality.js +++ b/src/api/qualityManagement/productionTesting/productionQuality.js @@ -101,11 +101,11 @@ export const goQualityRecord = (data) => { }; // 合格证跳转 -export const goCertificate = (params) => { +export const goCertificate = (data) => { return request({ - url: '/api/blade-desk/QA/reviewQualification', - method: 'get', - params + url: '/api/blade-desk/QA/InspectionTask/reviewQualification', + method: 'post', + data }); }; diff --git a/src/views/productionTesting/InspectionTemplate.vue b/src/views/productionTesting/InspectionTemplate.vue index de77afc..76f6813 100644 --- a/src/views/productionTesting/InspectionTemplate.vue +++ b/src/views/productionTesting/InspectionTemplate.vue @@ -52,7 +52,15 @@ + + + + + + + +
插入一行 @@ -561,6 +569,7 @@ export default { inspectionTemplateCode:this.formData.inspectionTemplateCode, name:this.formData.name, priority:this.formData.priority, + category:this.formData.category, detailList:this.tidList.length > 0 ? this.tidList : [] } if(this.title == '新增'){ diff --git a/src/views/productionTesting/productionQuality.vue b/src/views/productionTesting/productionQuality.vue index 2704e74..01cdcba 100644 --- a/src/views/productionTesting/productionQuality.vue +++ b/src/views/productionTesting/productionQuality.vue @@ -902,7 +902,7 @@ export default { goQualityRecord({ id:this.checkedId }).then(res =>{ - window.open(res.data.data.url) + window.open(res.data.data) }) }, // 跳转合格证 @@ -910,7 +910,7 @@ export default { goCertificate({ id:this.checkedId }).then(res =>{ - window.open(res.data.data.url) + window.open(res.data.data) }) }, getRowClass(row, index) {