From f2c949eee1ec144c2517b72f7b31916230f1cbef Mon Sep 17 00:00:00 2001 From: ljlong_2630 Date: Wed, 18 Oct 2023 10:10:55 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8Dbug=E7=AC=AC3=E6=B3=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/model/logicconfig.js | 13 ++- src/api/model/method.js | 9 ++ src/views/flowable/params/index.vue | 10 +- src/views/model/alert/deviceparamalert.vue | 124 ++++++++++++--------- src/views/model/alert/logicconfig.vue | 48 ++++++-- src/views/model/alert/method.vue | 29 +++-- src/views/model/alert/model.vue | 20 ++-- src/views/model/alert/policy.vue | 56 +++++----- src/views/model/params/index.vue | 48 ++++---- 9 files changed, 216 insertions(+), 141 deletions(-) diff --git a/src/api/model/logicconfig.js b/src/api/model/logicconfig.js index 1991da6..5d04e54 100644 --- a/src/api/model/logicconfig.js +++ b/src/api/model/logicconfig.js @@ -50,4 +50,15 @@ export function exportLogicconfig(query) { method: 'get', params: query }) -} \ No newline at end of file +} + +// 查询告警逻辑列表 +export function listLogicconfigNoPage(query) { + return request({ + url: '/model/dcBusiAlertLogicConfig/listNoPage', + method: 'get', + params: query + }) +} + + diff --git a/src/api/model/method.js b/src/api/model/method.js index 8d5ea8c..6d200d5 100644 --- a/src/api/model/method.js +++ b/src/api/model/method.js @@ -50,4 +50,13 @@ export function exportMethod(query) { method: 'get', params: query }) +} + +// 查询告警方式列表 +export function listMethodNoPage(query) { + return request({ + url: '/model/dcBusiAlertMethod/listNoPage', + method: 'get', + params: query + }) } \ No newline at end of file diff --git a/src/views/flowable/params/index.vue b/src/views/flowable/params/index.vue index 951424f..b166d04 100644 --- a/src/views/flowable/params/index.vue +++ b/src/views/flowable/params/index.vue @@ -1,10 +1,10 @@