From 56c9c249378a7ee23522389ec8a4ad7afb7d0aca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B6=85=E7=BA=A7=E8=80=81=E7=99=BD=E5=85=94?= Date: Sat, 2 Aug 2025 16:33:53 +0800 Subject: [PATCH] =?UTF-8?q?FEAT=20=3D>=20=E6=9C=AC=E6=AC=A1=E6=9B=B4?= =?UTF-8?q?=E6=96=B0=E9=A1=B9=E7=9B=AE=E4=B8=BA=EF=BC=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ckApp/pages/index/index.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ckApp/pages/index/index.vue b/ckApp/pages/index/index.vue index 231e092b..a756e8e6 100644 --- a/ckApp/pages/index/index.vue +++ b/ckApp/pages/index/index.vue @@ -93,9 +93,9 @@ const [ResDetail] = event.detail.data; this.receivedMessages.push(`[${new Date().toLocaleTimeString()}] ${JSON.stringify(ResDetail)}`); if (ResDetail.type === 0) { - console.log('收到数据交互消息:', JSON.stringify(ResDetail.data)); + console.log('[App]ReceiveMessage=>\n' + JSON.stringify(ResDetail.data)); } else if (ResDetail.type === 1) { - console.log('收到App功能调用:', JSON.stringify(ResDetail.data)); + console.log('[App]ReceiveMessage=>\n' + JSON.stringify(ResDetail.data)); } } }