From 34b2f2ddd484e6825bce9dc8bb5246addafb0b4e Mon Sep 17 00:00:00 2001 From: liutong <836164388@qq.com> Date: Thu, 29 May 2025 15:47:57 +0800 Subject: [PATCH] =?UTF-8?q?style(common):=20=E8=B0=83=E6=95=B4=E8=81=8A?= =?UTF-8?q?=E5=A4=A9=E9=A1=B5=E9=9D=A2=E5=B8=83=E5=B1=80=E5=92=8C=E6=A0=B7?= =?UTF-8?q?=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit -调整聊天列表高度,从80vh 改为 78vh - 修改页面上下内边距,从 32rpx 和 150rpx 改为 120rpx - 调整底部输入框区域样式,将左右内边距统一设置为 30rpx,底部内边距设置为 50rpx --- pages/common/im_chat_info.vue | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pages/common/im_chat_info.vue b/pages/common/im_chat_info.vue index 12d034b..c302319 100644 --- a/pages/common/im_chat_info.vue +++ b/pages/common/im_chat_info.vue @@ -8,7 +8,7 @@ scroll-y="true" :scroll-top="scrollTop" :lower-threshold="lowerThreshold" - style="height: 80vh;" + style="height: 78vh;" > @@ -417,8 +417,8 @@ export default { min-height: 100vh; background: #292929 100%; padding: 0 0rpx; - padding-top: 32rpx; - padding-bottom: 150rpx; + padding-top: 120rpx; + padding-bottom: 120rpx; font-size: 28rpx; display: flex; flex-direction: column; @@ -481,7 +481,8 @@ export default { position: fixed; bottom: 0; - padding: 50rpx 30rpx; + padding: 30rpx; + padding-bottom: 50rpx; display: flex; justify-content:space-between; align-items: center;