From 6219d8b7ebe9a53b98c5f22d0d9cee87be3f99e5 Mon Sep 17 00:00:00 2001 From: zangch Date: Thu, 22 Aug 2024 16:43:18 +0800 Subject: [PATCH] =?UTF-8?q?=E6=AD=A3=E7=A1=AE=E7=9A=84vibrationInstant?= =?UTF-8?q?=E4=BA=8C=E6=AC=A1=E4=BA=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/ems/record/recordVibrationInstant/index.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/ems/record/recordVibrationInstant/index.vue b/src/views/ems/record/recordVibrationInstant/index.vue index bdff33c..a041ce1 100644 --- a/src/views/ems/record/recordVibrationInstant/index.vue +++ b/src/views/ems/record/recordVibrationInstant/index.vue @@ -383,7 +383,7 @@ export default { /** 查询计量设备信息下拉树结构 新增用*/ getTreeMonitorInfo() { - listBaseMonitorInfo({ monitorType: 2 }).then(response => { + listBaseMonitorInfo({ monitorType: 10 }).then(response => { this.baseMonitorInfoOptions = [] const data = { objId: 0, monitorName: '顶级节点', children: [] } data.children = this.handleTree(response.data, 'objId', 'parentId') @@ -496,7 +496,7 @@ export default { /** 查询计量设备信息下拉树结构 */ getTreeselect() { - getMonitorInfoTree({ monitorType: 2 }).then(response => { + getMonitorInfoTree({ monitorType: 10 }).then(response => { this.monitorInfoOptions = response.data }) },