|
@@ -704,10 +704,15 @@ export default {
|
|
|
},
|
|
|
websocketOnOpen() {
|
|
|
console.log('socket连接成功')
|
|
|
+ const wsMessage={
|
|
|
+ type: 'page',
|
|
|
+ payload: 'power-change-monitoring'
|
|
|
+ }
|
|
|
+ this.ws.send(JSON.stringify(wsMessage))
|
|
|
},
|
|
|
websocketOnMessage(m) {
|
|
|
const d = JSON.parse(m.data)
|
|
|
- console.log(d)
|
|
|
+ // console.log(d)
|
|
|
//云端连接状态
|
|
|
if(d.cloundState){
|
|
|
this.cloundState=d.cloundState
|
|
@@ -802,7 +807,7 @@ export default {
|
|
|
this.ws.onerror = this.websocketOnError
|
|
|
this.ws.onmessage = this.websocketOnMessage
|
|
|
this.ws.onclose = this.websocketOnClose
|
|
|
- }
|
|
|
+ },
|
|
|
}
|
|
|
}
|
|
|
</script>
|