Browse Source

上下线推送

release_0.0.2
deartibers 2 years ago
parent
commit
bccf70dec1
  1. 17
      code/VideoAccess-VCMP/web/client/src/layout/containers/layout/index.jsx

17
code/VideoAccess-VCMP/web/client/src/layout/containers/layout/index.jsx

@ -86,9 +86,20 @@ const LayoutContainer = props => {
if (socket) {
socket.on('CAMERA_ONLINE', function (msg) {
console.info(msg);
});
socket.on('TEST', function (msg) {
console.info(msg);
if (msg.online=='ON') {
Notification.success({
title: 'Hi',
content: (<div><div>{msg.name}</div><div style={{marginTop:5}}>已上线</div></div>),
duration: 2,
})
}
if (msg.online=='OFF') {
Notification.error({
title: 'Hi',
content: (<div><div>{msg.name}</div><div style={{marginTop:5}}>发生离线</div></div>),
duration: 2,
})
}
});
return () => {
socket.off("CAMERA_ONLINE");

Loading…
Cancel
Save