shikeying
2023-04-25 0b67fd879ccd4fb6319dc016babd3bb8ea79dff0
src/store/modules/user.js
@@ -41,8 +41,11 @@
    SET_CONNECTION: (state, data) => {
      // var webConnection = new WebConnection();
      // if(state.webConnection == null){
        state.webConnection = new WebConnection(data.uri, data.uid);
        state.webConnection.startConnect();
      if(data.uri == '-1'){
        return;
      }
      state.webConnection = new WebConnection(data.uri, data.uid);
      state.webConnection.startConnect();
      // }
    },
    SET_CONNECTION_CLEAR: (state, data) => {
@@ -56,6 +59,9 @@
      state.webSocketMsg = data;
    },
    SET_WS_INFO: (state, data)=>{
      if(data.uri == '-1'){
        return;
      }
      state.uri = data.uri;
      state.uid = data.uid;
    }