Commit 519d1794 authored by qjeslks's avatar qjeslks

7.29.6

parent 8e349143
......@@ -606,13 +606,15 @@ export default defineComponent({
function alarm(){
http.post("/api/alarm/GetAlarmMsg", AlarmInfo.value).then((result) => {
if(result.data !== null && sta.value === 0){
console.log(result)
sta.value = 1;
title.value = result.data[0].title;
msg.value = result.data[0].msg;
id.value = result.data[0].id;
ElNotification({
title: title.value,
message: msg.value,
dangerouslyUseHTMLString: true,
message: msg.value.replace('\n','<br />'),
position: 'bottom-right',
type: 'error',
duration: 0,
......@@ -637,13 +639,15 @@ export default defineComponent({
function countalarm(){
http.post("/api/alarm/GetAlarmMsg", AlarmInfo.value).then((result) => {
if(result.data !== null && consta.value === 0){
console.log(result)
consta.value = 1;
counttitle.value = result.data[1].title;
countmsg.value = result.data[1].msg;
countid.value = result.data[1].id;
ElNotification({
title: counttitle.value,
message: countmsg.value,
dangerouslyUseHTMLString: true,
message: countmsg.value.replace('\n','<br />'),
position: 'bottom-right',
type: 'error',
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