|
@@ -174,8 +174,7 @@ export default {
|
|
this.$store.commit("changeAlarmlist", this.alarmList);
|
|
this.$store.commit("changeAlarmlist", this.alarmList);
|
|
this.$store.commit("setWarning", this.dialogList);
|
|
this.$store.commit("setWarning", this.dialogList);
|
|
this.$store.commit("setWarningList", this.realList);
|
|
this.$store.commit("setWarningList", this.realList);
|
|
- debugger
|
|
|
|
- if (!this.socketLeaveFlag) {
|
|
|
|
|
|
+ if (!this.socketLeaveFlag1) {
|
|
// 没有离开——重连
|
|
// 没有离开——重连
|
|
// websocket重连
|
|
// websocket重连
|
|
this.socketReconnect1();
|
|
this.socketReconnect1();
|
|
@@ -533,7 +532,7 @@ export default {
|
|
// websocket启动
|
|
// websocket启动
|
|
createWebSocket1() {
|
|
createWebSocket1() {
|
|
// let webSocketLink = `ws://192.168.1.102:6014/websocket/${this.$store.state.user.userId}_${this.$store.state.user.authToken}`;
|
|
// let webSocketLink = `ws://192.168.1.102:6014/websocket/${this.$store.state.user.userId}_${this.$store.state.user.authToken}`;
|
|
- let webSocketLink1 = `ws://10.220.1.11:6014/websocket/${this.$store.state.user.userId}_${this.$store.state.user.authToken}`; // webSocket地址
|
|
|
|
|
|
+ let webSocketLink1 = `ws://10.220.1.11:6014/websocket/nxf_${this.$store.state.user.authToken}`; // webSocket地址
|
|
try {
|
|
try {
|
|
if ("WebSocket" in window) {
|
|
if ("WebSocket" in window) {
|
|
this.socketObj1 = new WebSocket(webSocketLink1);
|
|
this.socketObj1 = new WebSocket(webSocketLink1);
|
|
@@ -607,7 +606,7 @@ export default {
|
|
},
|
|
},
|
|
// 接收到消息的回调
|
|
// 接收到消息的回调
|
|
getMessageCallback1: function (msg) {
|
|
getMessageCallback1: function (msg) {
|
|
- // console.log(msg);
|
|
|
|
|
|
+ console.log("msg11=====>>>", msg);
|
|
if (Object.keys(msg) && msg.data == "ok") {
|
|
if (Object.keys(msg) && msg.data == "ok") {
|
|
// 心跳回复——心跳检测重置
|
|
// 心跳回复——心跳检测重置
|
|
// 收到心跳检测回复就说明连接正常
|
|
// 收到心跳检测回复就说明连接正常
|