From d334fdc4d911ae1c326e53c036cf885ffa9f988d Mon Sep 17 00:00:00 2001 From: xsx <825657193@qq.com> Date: Sat, 26 Oct 2024 21:35:57 +0800 Subject: [PATCH] =?UTF-8?q?1.=E4=BF=AE=E5=A4=8D=E6=96=AD=E7=BA=BF=E9=87=8D?= =?UTF-8?q?=E8=BF=9E=E6=97=B6=E4=B8=A2=E6=B6=88=E6=81=AF=E7=9A=84bug=202.?= =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E4=B8=8B=E8=BD=BD=E6=96=87=E4=BB=B6=E5=90=8D?= =?UTF-8?q?=E5=BC=82=E5=B8=B8=E7=9A=84bug=203.=E5=8E=BB=E9=99=A4=E5=A4=9A?= =?UTF-8?q?=E4=BD=99=E7=9A=84=E8=BF=94=E5=9B=9E=E6=8C=89=E9=92=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- im-uniapp/App.vue | 1 + im-uniapp/components/chat-item/chat-item.vue | 1 + im-uniapp/pages/chat/chat-box.vue | 10 ---------- im-uniapp/store/chatStore.js | 7 +++++-- im-web/src/components/chat/ChatMessageItem.vue | 2 +- im-web/src/components/group/AddGroupMember.vue | 3 +-- im-web/src/store/chatStore.js | 7 +++++-- 7 files changed, 14 insertions(+), 17 deletions(-) diff --git a/im-uniapp/App.vue b/im-uniapp/App.vue index 9bf5c33..e2c7c3a 100644 --- a/im-uniapp/App.vue +++ b/im-uniapp/App.vue @@ -311,6 +311,7 @@ return new Promise((resolve, reject) => { if (!loginInfo || !loginInfo.refreshToken) { reject(); + return; } http({ url: '/refreshToken', diff --git a/im-uniapp/components/chat-item/chat-item.vue b/im-uniapp/components/chat-item/chat-item.vue index 21b3e06..eafdf26 100644 --- a/im-uniapp/components/chat-item/chat-item.vue +++ b/im-uniapp/components/chat-item/chat-item.vue @@ -100,6 +100,7 @@ position: absolute; width: 100%; height: 100%; + z-index: 99; } .left { diff --git a/im-uniapp/pages/chat/chat-box.vue b/im-uniapp/pages/chat/chat-box.vue index 81d4ca4..d63cd25 100644 --- a/im-uniapp/pages/chat/chat-box.vue +++ b/im-uniapp/pages/chat/chat-box.vue @@ -1,7 +1,6 @@