From c985b9d17868b1d38f8209f00256bbbd03fb28e5 Mon Sep 17 00:00:00 2001 From: tiantian <1012874180@qq.com> Date: Wed, 8 Jan 2025 11:42:56 +0800 Subject: [PATCH] =?UTF-8?q?=E7=A7=BB=E5=8A=A8=E7=AB=AF=E5=B7=A5=E4=BD=9C?= =?UTF-8?q?=E5=8F=B0=E8=81=8A=E5=A4=A9=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/components/chat/Chat.vue | 92 ++++++++++++++++++++++++++- 1 file changed, 89 insertions(+), 3 deletions(-) diff --git a/frontend/src/components/chat/Chat.vue b/frontend/src/components/chat/Chat.vue index 1bf93b4..cc5c77c 100644 --- a/frontend/src/components/chat/Chat.vue +++ b/frontend/src/components/chat/Chat.vue @@ -1,6 +1,7 @@ @@ -70,7 +72,31 @@ watch( + + + + + + + + + + + + + + + + + + + + + + + + @@ -84,8 +110,19 @@ watch( - + + + + 取消 + + 创建群聊 + 确定 + + @@ -109,7 +146,7 @@ watch( - + 取消 @@ -287,5 +324,54 @@ watch( position: fixed; bottom: 0; } + + .side { + display: none; + } + + :deep(.el-drawer__body) { + padding: 0; + } + + .chat-box { + position: relative; + + .el-button { + position: absolute; + right: 0; + top: 50%; + transform: translateY(-50%); + z-index: 99; + } + } + + .dialog-header { + display: flex; + justify-content: space-between; + align-items: center; + } + + ::v-deep.dialog-body { + height: max-content; + } + + ::v-deep.el-transfer { + flex-direction: column; + width: auto; + height: max-content !important; + + .el-transfer-panel { + width: 100% !important; + } + + .el-transfer__buttons { + transform: rotate(90deg); + margin: 40px 0; + } + } + + .chat-setting { + width: 100%; + } }