diff --git a/src/utils/websocket.ts b/src/utils/websocket.ts index 4b0fcdb..7dadc34 100644 --- a/src/utils/websocket.ts +++ b/src/utils/websocket.ts @@ -94,7 +94,7 @@ class WebSocketManager { // 消息回执 public onMessageHandler(data: any) { if (this.client && this.connected) { - this.client.send(JSON.stringify({ ...data, type: 'receipt' })); + this.client.send(JSON.stringify({ ...data, type: 'receipt', set: 'manage' })); } }