feat: 商品详情对接调试

This commit is contained in:
2025-08-10 19:13:02 +08:00
parent ff855fc2eb
commit ff7e135ef0
7 changed files with 264 additions and 23 deletions

View File

@@ -342,7 +342,7 @@ export class WebSocketManager {
data: messageStr,
success: () => {
this.stats.messagesSent++;
console.log("消息发送成功:", messageData);
//console.log("消息发送成功:", messageData);
},
fail: (error) => {
console.error("发送消息失败:", error);
@@ -356,7 +356,7 @@ export class WebSocketManager {
// 标准 WebSocket 环境
this.ws.send(messageStr);
this.stats.messagesSent++;
console.log("消息发送成功:", messageData);
//console.log("消息发送成功:", messageData);
}
return true;