|
|
@ -32,6 +32,7 @@ export default { |
|
|
|
this.socket.initialize({ |
|
|
|
// url: 'ws://' + location.hostname + ':' + port + path, |
|
|
|
url: 'wss://' + location.hostname + ':' + window.location.port + '/ws' || 80 + '/ws', |
|
|
|
// url: 'wss://10.0.111.11:90/ws', |
|
|
|
// url: "ws://10.168.66.196:7789" + path, |
|
|
|
// url: 'ws://10.168.77.128:7789/ws', |
|
|
|
// url: "ws://10.7.179.15" + ":" + port + path, |
|
|
@ -105,6 +106,9 @@ export default { |
|
|
|
}); |
|
|
|
break; |
|
|
|
case "0": |
|
|
|
this.$emit("newEvent", params); |
|
|
|
this.$root.$emit('refreshMap'); |
|
|
|
break; |
|
|
|
case "3": |
|
|
|
case "externalPlatformOffline": |
|
|
|
case "trafficFlowDataEarlyWarning": |
|
|
@ -112,6 +116,7 @@ export default { |
|
|
|
break; |
|
|
|
case "2": |
|
|
|
this.triggerAlert() |
|
|
|
this.$root.$emit('refreshMap'); |
|
|
|
setTimeout(() => { |
|
|
|
this.$emit("newEvent", params); |
|
|
|
}, 1000); // 1000 毫秒 = 1 秒 |
|
|
@ -125,6 +130,7 @@ export default { |
|
|
|
}else{ |
|
|
|
this.$emit("newEvent", params); |
|
|
|
} |
|
|
|
this.$root.$emit('refreshMap'); |
|
|
|
break; |
|
|
|
case "deviceState": |
|
|
|
this.EventBus.$emit("deviceState", contentList); |
|
|
|