Merge branch 'master' of https://gitea.mjm-staging.developers-homelab.net/BIMS/BIMS
This commit is contained in:
commit
d3f3ff828e
@ -698,10 +698,10 @@
|
|||||||
{
|
{
|
||||||
"title": "Ack 確認",
|
"title": "Ack 確認",
|
||||||
"data": "ackState",
|
"data": "ackState",
|
||||||
"render": function (data) {
|
"render": function (data, type, row, meta) {
|
||||||
let confirm = data == "1" ? "未確認" : "確認";
|
let confirm = data == "1" ? "未確認" : "確認";
|
||||||
let btnCol = data == "1" ? "warning" : "info";
|
let btnCol = data == "1" ? "warning" : "info";
|
||||||
return `<td><a href="#" onclick="return false" class="btn btn-${btnCol}">${confirm}</a></td>`
|
return data == "1" ? `<td><button onclick="chgAck('${row.uuid}')" class="btn btn-${btnCol}">${confirm}</button></td>` : `<td><button class="btn btn-${btnCol}">${confirm}</button></td>`;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -848,4 +848,11 @@
|
|||||||
}
|
}
|
||||||
}, null, "POST").send();
|
}, null, "POST").send();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function chgAck(devUuid) {
|
||||||
|
$.post(window.location.origin + '/obix/alarm/' + devUuid + '/ack', '<obj is="obix:AckAlarmIn"><str name="ackUser" val="obix" /></obj>', function () {
|
||||||
|
|
||||||
|
}, "text");
|
||||||
|
getData();
|
||||||
|
}
|
||||||
</script>
|
</script>
|
@ -269,7 +269,7 @@
|
|||||||
new Date(start).getTime(),
|
new Date(start).getTime(),
|
||||||
new Date(end).getTime(),
|
new Date(end).getTime(),
|
||||||
pageAct.deviceName,
|
pageAct.deviceName,
|
||||||
"Mitsubishi_Sup",
|
"Mitsubishi_JACE8000",
|
||||||
callBackFromHistory);
|
callBackFromHistory);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -11,6 +11,7 @@ using System.Collections.Generic;
|
|||||||
using System.Data.SqlTypes;
|
using System.Data.SqlTypes;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
using System.Text;
|
||||||
|
|
||||||
namespace FrontendWebApi.ApiControllers
|
namespace FrontendWebApi.ApiControllers
|
||||||
{
|
{
|
||||||
|
@ -66,5 +66,6 @@ namespace FrontendWebApi.Models
|
|||||||
public string alarmClass_txt { get; set; }
|
public string alarmClass_txt { get; set; }
|
||||||
public string device_name { get; set; }
|
public string device_name { get; set; }
|
||||||
public string errMsg { get; set; }
|
public string errMsg { get; set; }
|
||||||
|
public string uuid { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user