From dc39d9ca1b0d7403d51287c6050ead3b682b3c14 Mon Sep 17 00:00:00 2001
From: value <z1292839451@163.com>
Date: 星期三, 17 四月 2024 18:13:53 +0800
Subject: [PATCH] 修复检验填值

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

diff --git a/src/components/do/b1-inspect-order-plan/Inspection.vue b/src/components/do/b1-inspect-order-plan/Inspection.vue
index 4bf4d11..fb8100b 100644
--- a/src/components/do/b1-inspect-order-plan/Inspection.vue
+++ b/src/components/do/b1-inspect-order-plan/Inspection.vue
@@ -534,7 +534,7 @@
               b.v.v = this.getAsk(b.i)
             }
             if (b.v.ps != undefined && b.v.ps.value === '妫�楠屽��') {
-              b.v.v = ''
+              delete b.v.v
               b.u = ''
               this.param[b.i].insValue.push(b)
             }
@@ -769,8 +769,8 @@
               r0 = start.split('')[1] - 1
               c1 = this.comparisonList.find(j => j.label == end.split('')[0]).value
               r1 = end.split('')[1] - 1
-              for (let i = Number(r0); i <= r1; i++) {
-                for (let u = c0; u <= c1; u++) {
+              for (let i = Number(r0); i <= Number(r1); i++) {
+                for (let u = Number(c0); u <= Number(c1); u++) {
                   valueList.push({
                     r: i,
                     c: u

--
Gitblit v1.9.3