From 6ef9e5189ac1888b8c4c504d5c5d3f431807ff56 Mon Sep 17 00:00:00 2001
From: spring <2396852758@qq.com>
Date: 星期六, 15 三月 2025 11:57:40 +0800
Subject: [PATCH] 修改电路试验单位
---
src/components/view/b1-inspect-order-plan.vue | 11 +++++++----
1 files changed, 7 insertions(+), 4 deletions(-)
diff --git a/src/components/view/b1-inspect-order-plan.vue b/src/components/view/b1-inspect-order-plan.vue
index 7572160..2cfc34e 100644
--- a/src/components/view/b1-inspect-order-plan.vue
+++ b/src/components/view/b1-inspect-order-plan.vue
@@ -736,7 +736,10 @@
},
sampleCodeBtnDisabled:true,
upInsReviewDia:false,
- verifyPlanInfo:{},
+ verifyPlanInfo:{
+ tell:null,
+ type:null
+ },
reviewLoading:false
}
},
@@ -1357,9 +1360,9 @@
});
},
handleReview0(row){
- this.verifyPlanInfo = row;
- this.verifyPlanInfo.tell = null;
- this.verifyPlanInfo.type = '';
+ this.verifyPlanInfo = JSON.parse(JSON.stringify(row));
+ this.$set(this.verifyPlanInfo,'tell',null)
+ this.$set(this.verifyPlanInfo,'type',null)
this.upInsReviewDia = true
}
}
--
Gitblit v1.9.3