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 | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/eam/modules/dailyInspectionOrder/DailyInspectionOrderExeDrawer.vue b/src/views/eam/modules/dailyInspectionOrder/DailyInspectionOrderExeDrawer.vue index e63f4fb..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,7 +156,7 @@ /> <a-input-number :value="text" - v-if="col.dataIndex == 'inspectionProjectResult' && record.analysisMethod == '1'" + v-if="col.dataIndex == 'inspectionProjectResult' && record.testValueType == '1'" :min="0" :max="20000" @change="(e)=>handleChange(e, record.key, col, index,record)" @@ -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