From 854cc198f38d9f650244695b6f221c1b0cf38c1a Mon Sep 17 00:00:00 2001
From: licp <lichunping@guanfang.com.cn>
Date: 星期四, 28 三月 2024 09:08:41 +0800
Subject: [PATCH] 修改标准集-左侧树形样式

---
 src/components/do/b1-inspect-order-plan/Inspection.vue |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/src/components/do/b1-inspect-order-plan/Inspection.vue b/src/components/do/b1-inspect-order-plan/Inspection.vue
index fa0ff0f..284a38c 100644
--- a/src/components/do/b1-inspect-order-plan/Inspection.vue
+++ b/src/components/do/b1-inspect-order-plan/Inspection.vue
@@ -508,7 +508,6 @@
               }
 							conclusionList.forEach((n,i)=>{
                 if(n.r==b.r&&n.c==b.c){
-                  console.log(b.r,b.c,)
                   b.v.f = `(${this.comparisonList.find(j=>j.value==(finalList[i].c)).label}${finalList[i].r+1})`
                 }
               })
@@ -719,7 +718,11 @@
           let category = this.tableList.find(m=>m.id==id).deviceGroup
           this.$axios.post(this.$api.deviceScope.selectDeviceByCategory, {category}).then(res => {
             if (res.code === 200 && res.data) {
-              console.log(1111111,res.data)
+              this.equipOptions = res.data.map(m=>{
+                m.value = m.id
+                m.label = m.deviceName
+                return m
+              })
             }
           }).catch(error => {
             console.error(error)

--
Gitblit v1.9.3