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;