This commit is contained in:
gtz 2023-05-16 15:30:48 +08:00
parent 1e95973ccd
commit 0440a8fa46
2 changed files with 7 additions and 3 deletions

View File

@ -37,7 +37,7 @@ export default {
}, },
methods: { methods: {
getRuntime() { 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 days = parseInt(diff / 1000 / 60 / 60 / 24);
const hours = parseInt( const hours = parseInt(
(diff - days * 24 * 60 * 60 * 1000) / 1000 / 60 / 60 (diff - days * 24 * 60 * 60 * 1000) / 1000 / 60 / 60

View File

@ -28,8 +28,12 @@ function handleError(err) {
console.log('[x] 出错:', err, err.data) console.log('[x] 出错:', err, err.data)
} }
function handleClose() { function handleClose(data) {
console.log('[x] 服务器关闭连接') 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.onopen) WsClient.socket.onopen = handleOpen
if (!WsClient.socket.onmessage) WsClient.socket.onmessage = handleData.bind(this.vueInstance) if (!WsClient.socket.onmessage) WsClient.socket.onmessage = handleData.bind(this.vueInstance)
if (!WsClient.socket.onerror) WsClient.socket.onerror = handleError 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() { static createSocket() {