fix: 🐛 混合布局左侧菜单丢失问题修复

closed #ICEVSD
This commit is contained in:
Ray.Hao
2025-06-18 16:21:34 +08:00
parent 39ef1c82f1
commit a4c67fe576
10 changed files with 31 additions and 231 deletions

View File

@@ -65,7 +65,7 @@ export function useStomp(options: UseStompOptions = {}) {
// 检查WebSocket端点是否配置
if (!brokerURL.value) {
console.error("WebSocket连接失败: 未配置WebSocket端点URL");
console.warn("WebSocket连接失败: 未配置WebSocket端点URL");
return;
}
@@ -74,7 +74,7 @@ export function useStomp(options: UseStompOptions = {}) {
// 检查令牌是否为空,如果为空则不进行连接
if (!currentToken) {
console.error("WebSocket连接失败授权令牌为空请先登录");
console.warn("WebSocket连接失败授权令牌为空请先登录");
return;
}