From 14e6fca4c624e161dae9b7e905f9fccb03ba0177 Mon Sep 17 00:00:00 2001
From: zhuzhuanzhuan
Date: 星期一, 13 十一月 2023 10:42:08 +0800
Subject: [PATCH] 1、车间看板页面实现鼠标悬浮于设备上出现设备详细信息弹窗,鼠标移出弹窗消失 2、设备参数阈值管理页面新增至mdc模块设备基础配置菜单下并完成所有布局及功能实现
---
src/views/eam/modules/specialtyInspectionOrder/SpecialyInspectionOrderExeDrawer.vue | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/views/eam/modules/specialtyInspectionOrder/SpecialyInspectionOrderExeDrawer.vue b/src/views/eam/modules/specialtyInspectionOrder/SpecialyInspectionOrderExeDrawer.vue
index 3ec4a91..a0ed799 100644
--- a/src/views/eam/modules/specialtyInspectionOrder/SpecialyInspectionOrderExeDrawer.vue
+++ b/src/views/eam/modules/specialtyInspectionOrder/SpecialyInspectionOrderExeDrawer.vue
@@ -253,7 +253,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)"
@@ -262,7 +262,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="200"
@change="(e)=>handleChange(e, record.key, col, index,record)"
@@ -825,7 +825,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