|
|
@ -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"); |
|
|
|