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)); } } }