Browse Source

'update'

master
gtz 1 year ago
parent
commit
0440a8fa46
2 changed files with 7 additions and 3 deletions
  1. +1
    -1
      src/components/boxes/KilnRuntime.vue
  2. +6
    -2
      src/utils/wsClass.js

+ 1
- 1
src/components/boxes/KilnRuntime.vue View File

@@ -37,7 +37,7 @@ export default {
},
methods: {
getRuntime() {
const diff = Date.now() - new Date("2023-5-12 10:00:00");
const diff = Date.now() - new Date("2023-4-21 10:36:00");
const days = parseInt(diff / 1000 / 60 / 60 / 24);
const hours = parseInt(
(diff - days * 24 * 60 * 60 * 1000) / 1000 / 60 / 60


+ 6
- 2
src/utils/wsClass.js View File

@@ -28,8 +28,12 @@ function handleError(err) {
console.log('[x] 出错:', err, err.data)
}

function handleClose() {
function handleClose(data) {
console.log('[x] 服务器关闭连接')
setTimeout(() => {
const wsc = new WsClient(data);
wsc.registerListeners();
}, 30000)
}


@@ -77,7 +81,7 @@ export default class WsClient {
if (!WsClient.socket.onopen) WsClient.socket.onopen = handleOpen
if (!WsClient.socket.onmessage) WsClient.socket.onmessage = handleData.bind(this.vueInstance)
if (!WsClient.socket.onerror) WsClient.socket.onerror = handleError
if (!WsClient.socket.onclose) WsClient.socket.onclose = handleClose
if (!WsClient.socket.onclose) WsClient.socket.onclose = handleClose(this.vueInstance)
}

static createSocket() {


Loading…
Cancel
Save