...
|
...
|
@@ -27,7 +27,7 @@ const excludeResInfo = (proxy,subId,callback) =>{ |
|
|
let resKpiList = Vue.ref([]);
|
|
|
|
|
|
let showResDialog = (flg) =>{
|
|
|
|
|
|
resFlag.value = flg;
|
|
|
if(flg && flg == true){
|
|
|
getResList();
|
|
|
// 获取指标列表
|
...
|
...
|
@@ -36,8 +36,6 @@ const excludeResInfo = (proxy,subId,callback) =>{ |
|
|
resKpiList.value = res.data;
|
|
|
}
|
|
|
});
|
|
|
} else {
|
|
|
resFlag.value = flg;
|
|
|
}
|
|
|
}
|
|
|
|
...
|
...
|
@@ -51,7 +49,6 @@ const excludeResInfo = (proxy,subId,callback) =>{ |
|
|
proxy.$http.get(`/api-web/alarmsubscribe/exclude/getSubResListBySubId/${subId}`, {subId:subId}, function (res) {
|
|
|
if (res && res.data) {
|
|
|
reslist.value.dataList = res.data;
|
|
|
resFlag.value = true;
|
|
|
}
|
|
|
});
|
|
|
}
|
...
|
...
|
|