From 3c71cc74e6dd5f1015329c64e11e8ec1cd7a97c1 Mon Sep 17 00:00:00 2001 From: inleft <inleft@qq.com> Date: Wed, 31 Aug 2022 18:11:16 +0800 Subject: [PATCH] 新增编辑页 日志列表接口 --- src/components/group/MyMessage.vue | 12 +++++++++--- 1 files changed, 9 insertions(+), 3 deletions(-) diff --git a/src/components/group/MyMessage.vue b/src/components/group/MyMessage.vue index 31428ee..bd63567 100644 --- a/src/components/group/MyMessage.vue +++ b/src/components/group/MyMessage.vue @@ -1,6 +1,6 @@ <template> <div class="myModal"> - <a-modal v-model="visible" title="天涯共此时.." :footer="null" + <a-modal v-drag-modal v-model="visible" title="天涯共此时.." :footer="null" :bodyStyle="{'overflow':'overlay','maxHeight': '550px'}"> <div class="myComment" v-for="item in dataList" style="display: flex;padding: 0px 10px 10px 10px;"> @@ -159,6 +159,7 @@ * { max-width: 100% !important; } + } .myComment { @@ -169,8 +170,13 @@ img { margin-bottom: 0.2rem; - min-height: 5rem; - height: 2em; + height: 2rem; } } + + .myComment:hover { + // background: #d0d7dc; + background: #f5f8fa; + border-radius: 14px; + } </style> -- Gitblit v1.9.1