From 25f4bc69232f27cfef6765cb5199a416979cb513 Mon Sep 17 00:00:00 2001 From: yinkang Date: Wed, 2 Jul 2025 17:01:04 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B3=A8=E9=87=8A=E6=97=A0=E5=85=B3=E5=8F=98?= =?UTF-8?q?=E9=87=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/message/inner/IndexContent.vue | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/src/views/message/inner/IndexContent.vue b/src/views/message/inner/IndexContent.vue index 4180522..fc9aa40 100644 --- a/src/views/message/inner/IndexContent.vue +++ b/src/views/message/inner/IndexContent.vue @@ -142,13 +142,14 @@ watch( () => talkParams, (newValue, oldValue) => { // 判断是否为好友 - if (talkParams.type !== 2) { - ServeCheckFriend({ receiver_id: newValue.receiver_id, talk_type: 1 }).then((res) => { - if (res?.code === 200) { - isFriend.value = res.data.is_friend - } - }) - } + // if (talkParams.type !== 2) { + // ServeCheckFriend({ receiver_id: newValue.receiver_id, talk_type: 1 }).then((res) => { + // if (res?.code === 200) { + // isFriend.value = res.data.is_friend + // } + // }) + // } + console.log(newValue) }, { deep: true, immediate: true } )