处理在聊天页面点开头像加好友再回到聊天,提示仍然在的问题;解决删除好友时提示的蒙层高度不对的问题
Some checks are pending
Check / lint (push) Waiting to run
Check / typecheck (push) Waiting to run
Check / build (build, 18.x, ubuntu-latest) (push) Waiting to run
Check / build (build, 18.x, windows-latest) (push) Waiting to run
Check / build (build:app, 18.x, ubuntu-latest) (push) Waiting to run
Check / build (build:app, 18.x, windows-latest) (push) Waiting to run
Check / build (build:mp-weixin, 18.x, ubuntu-latest) (push) Waiting to run
Check / build (build:mp-weixin, 18.x, windows-latest) (push) Waiting to run

This commit is contained in:
wangyifeng 2025-06-10 10:37:23 +08:00
parent 9a739e7402
commit 0a83555976
2 changed files with 4 additions and 1 deletions

View File

@ -936,6 +936,9 @@ watch(
} }
.friendDeleteModal { .friendDeleteModal {
:deep(.l-0) {
height: 100vh !important;
}
.friendDeleteModal-content { .friendDeleteModal-content {
display: flex; display: flex;
flex-direction: row; flex-direction: row;

View File

@ -2170,7 +2170,6 @@ const handleAvatarTouchEnd = () => {
} }
onMounted(async () => { onMounted(async () => {
checkNeedAddFriend()
if (uni.getSystemInfoSync().osName === 'ios') { if (uni.getSystemInfoSync().osName === 'ios') {
let versions = uni.getSystemInfoSync().osVersion.split('.') let versions = uni.getSystemInfoSync().osVersion.split('.')
if (Number(versions[0]) < 16) { if (Number(versions[0]) < 16) {
@ -2495,6 +2494,7 @@ onUnmounted(() => {
}) })
onShow(() => { onShow(() => {
checkNeedAddFriend()
if (state.value.isFromHide) { if (state.value.isFromHide) {
if (state.value.setMessageReadInterval) { if (state.value.setMessageReadInterval) {
clearInterval(state.value.setMessageReadInterval) clearInterval(state.value.setMessageReadInterval)