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%; + } }