Commit 519d1794 authored by qjeslks's avatar qjeslks

7.29.6

parent 8e349143
...@@ -606,13 +606,15 @@ export default defineComponent({ ...@@ -606,13 +606,15 @@ export default defineComponent({
function alarm(){ function alarm(){
http.post("/api/alarm/GetAlarmMsg", AlarmInfo.value).then((result) => { http.post("/api/alarm/GetAlarmMsg", AlarmInfo.value).then((result) => {
if(result.data !== null && sta.value === 0){ if(result.data !== null && sta.value === 0){
console.log(result)
sta.value = 1; sta.value = 1;
title.value = result.data[0].title; title.value = result.data[0].title;
msg.value = result.data[0].msg; msg.value = result.data[0].msg;
id.value = result.data[0].id; id.value = result.data[0].id;
ElNotification({ ElNotification({
title: title.value, title: title.value,
message: msg.value, dangerouslyUseHTMLString: true,
message: msg.value.replace('\n','<br />'),
position: 'bottom-right', position: 'bottom-right',
type: 'error', type: 'error',
duration: 0, duration: 0,
...@@ -637,13 +639,15 @@ export default defineComponent({ ...@@ -637,13 +639,15 @@ export default defineComponent({
function countalarm(){ function countalarm(){
http.post("/api/alarm/GetAlarmMsg", AlarmInfo.value).then((result) => { http.post("/api/alarm/GetAlarmMsg", AlarmInfo.value).then((result) => {
if(result.data !== null && consta.value === 0){ if(result.data !== null && consta.value === 0){
console.log(result)
consta.value = 1; consta.value = 1;
counttitle.value = result.data[1].title; counttitle.value = result.data[1].title;
countmsg.value = result.data[1].msg; countmsg.value = result.data[1].msg;
countid.value = result.data[1].id; countid.value = result.data[1].id;
ElNotification({ ElNotification({
title: counttitle.value, title: counttitle.value,
message: countmsg.value, dangerouslyUseHTMLString: true,
message: countmsg.value.replace('\n','<br />'),
position: 'bottom-right', position: 'bottom-right',
type: 'error', type: 'error',
duration: 0, duration: 0,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment