From 97678368e130e1ddbd97fac23e53dca821860ac8 Mon Sep 17 00:00:00 2001 From: DLmaster361 Date: Thu, 4 Sep 2025 00:34:24 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E6=AD=A3ws=E6=B6=88=E6=81=AF?= =?UTF-8?q?=E7=B1=BB=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/composables/useWebSocket.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/composables/useWebSocket.ts b/frontend/src/composables/useWebSocket.ts index 59bf12c..2553eed 100644 --- a/frontend/src/composables/useWebSocket.ts +++ b/frontend/src/composables/useWebSocket.ts @@ -5,7 +5,7 @@ import { message, notification } from 'ant-design-vue' export type WebSocketStatus = '连接中' | '已连接' | '已断开' | '连接错误' // WebSocket消息类型 -export type WebSocketMessageType = 'Signal' | 'Progress' | 'Result' | 'Error' | 'Notify' +export type WebSocketMessageType = 'Update' | 'Message' | 'Info' | 'Signal' // WebSocket基础消息接口 export interface WebSocketBaseMessage {