From 0164aaa92467af31e5da9ffc54404677b502fb96 Mon Sep 17 00:00:00 2001 From: liuye Date: Wed, 14 Jun 2023 17:40:08 +0800 Subject: [PATCH] =?UTF-8?q?=E5=86=85=E9=83=A8=E5=A4=96=E9=83=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../AppSessionArchive/components/Detail.vue | 30 +++++++++++++++++-- 1 file changed, 28 insertions(+), 2 deletions(-) diff --git a/project/pidu/app/AppSessionArchive/components/Detail.vue b/project/pidu/app/AppSessionArchive/components/Detail.vue index a7aa206b..25f042de 100644 --- a/project/pidu/app/AppSessionArchive/components/Detail.vue +++ b/project/pidu/app/AppSessionArchive/components/Detail.vue @@ -22,12 +22,14 @@
-
+
{{item.roomName}}
{{item.toUserName}}
+
{{item.roomType == 1 ? '内部' : '外部'}}
+
{{item.toUserType == 1 ? '内部' : '外部'}}
@@ -221,7 +223,6 @@ this.getMsgList() } } - }, getListInit() { this.isLoading = true @@ -388,13 +389,18 @@ .addressBook-left__list--wrapper { height: calc(100% - 110px); padding: 8px; + width: 100%; + box-sizing: border-box; overflow-y: scroll; .addressBook-left__list--item { + width: 100%; line-height: 44px; font-size: 16px; color: #333; margin-bottom: 8px; padding: 8px; + display: flex; + justify-content: space-between; cursor: pointer; img { width: 44px; @@ -403,6 +409,26 @@ margin-right: 8px; vertical-align: middle; } + .flex-left { + padding-right: 8px; + box-sizing: border-box; + } + .flex-right { + width: 50px; + text-align: center; + line-height: 24px; + height: 24px; + font-size: 12px; + margin-top: 8px; + } + .type1 { + background-color: #EAF4FF; + color: #267EF0; + } + .type2 { + background-color: #FDEEE1; + color: #FB7D29; + } } .addressBook-left__list--item:hover { background-color: #E8EFFF;