From b9bd29a1a81f6f7de479e3cc3fdfe3d85fc660bf Mon Sep 17 00:00:00 2001 From: he wei <858544502@qq.com> Date: 星期三, 23 四月 2025 13:35:06 +0800 Subject: [PATCH] UA 整理提交 --- src/utils/getWsUrl.js | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/getWsUrl.js b/src/utils/getWsUrl.js index edc2ccc..c6e18e4 100644 --- a/src/utils/getWsUrl.js +++ b/src/utils/getWsUrl.js @@ -4,7 +4,7 @@ * @returns {string} */ function getWsUrl(action, port) { - let _port = port ? port : 8100; + let _port = port ? port : 8101; let hostname = window.location.hostname; let wsProtocol = "ws://"; if (window.location.protocol == "https:") { @@ -17,7 +17,7 @@ } // 澶勭悊绔彛涓�80 _port = _port == 80 ? "" : ":" + _port; - return wsProtocol + hostname + _port + "/bl/" + action; + return wsProtocol + hostname + _port + "/bl_plus/" + action; } export default getWsUrl; -- Gitblit v1.9.1