From a777bea0bc6b292306f69f75a5ddab03df798039 Mon Sep 17 00:00:00 2001 From: RenCheng Date: Sat, 1 Mar 2025 16:52:51 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=9B=91=E5=90=AC=E5=9C=B0?= =?UTF-8?q?=E5=9D=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/data/dataCleansing.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/data/dataCleansing.vue b/src/views/data/dataCleansing.vue index d48b089..38c481a 100644 --- a/src/views/data/dataCleansing.vue +++ b/src/views/data/dataCleansing.vue @@ -63,7 +63,7 @@ initWebSocket: function () { // WebSocket与普通的请求所用协议有所不同,ws等同于http,wss等同于https var userId = store.getters.userInfo.id; - var url = window._CONFIG['domianURL'].replace("https://","ws://").replace("http://","ws://")+"/websocket/"+userId+"/data_clearing"; + var url = window._CONFIG['domianURL'].replace("https://","ws://").replace("http://","ws://")+"/websocket/"+userId+"/data_cleaning"; this.websock = new WebSocket(url); this.websock.onopen = this.websocketonopen; this.websock.onerror = this.websocketonerror;