From ee79f53fd9385b087ebd7a93af638d91a9825d10 Mon Sep 17 00:00:00 2001
From: “linengliang” <vanSuperEnergy@163.com>
Date: 星期三, 23 八月 2023 18:04:35 +0800
Subject: [PATCH] lnl,设备台账导入功能+页面字段调整

---
 src/views/eam/modules/dailyInspectionOrder/DailyInspectionOrderExeDrawer.vue |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/views/eam/modules/dailyInspectionOrder/DailyInspectionOrderExeDrawer.vue b/src/views/eam/modules/dailyInspectionOrder/DailyInspectionOrderExeDrawer.vue
index c70df55..1fefdfb 100644
--- a/src/views/eam/modules/dailyInspectionOrder/DailyInspectionOrderExeDrawer.vue
+++ b/src/views/eam/modules/dailyInspectionOrder/DailyInspectionOrderExeDrawer.vue
@@ -147,7 +147,7 @@
                         style="max-width:80px;font-size: 12px;font-style: italic;"
                       />
                       <a-select
-                        v-if="col.dataIndex == 'inspectionProjectResult' && record.analysisMethod == '2'"
+                        v-if="col.dataIndex == 'inspectionProjectResult' && record.testValueType == '2'"
                         :value="text"
                         :options="record.inspectionCycles"
                         @change="(e) => handleChange(e, record.key, col, index)"
@@ -156,9 +156,9 @@
                       />
                       <a-input-number
                         :value="text"
-                        v-if="col.dataIndex == 'inspectionProjectResult' && record.analysisMethod == '1'"
+                        v-if="col.dataIndex == 'inspectionProjectResult' && record.testValueType == '1'"
                         :min="0"
-                        :max="200"
+                        :max="20000"
                         @change="(e)=>handleChange(e, record.key, col, index,record)"
                         style="width: 100%"
                         :disabled="record.disabled"
@@ -663,7 +663,7 @@
       if (target) {
 
         if (column.dataIndex == 'inspectionProjectResult') {
-          if (target.analysisMethod === "1") {
+          if (target.testValueType === "1") {
             target[column.dataIndex] = value;
             let maxValue = target.maxValue
             let minValue = target.minValue

--
Gitblit v1.9.3