Browse Source

细节优化

master
xsx 6 months ago
parent
commit
13d496741d
  1. 9
      im-uniapp/components/chat-message-item/chat-message-item.vue

9
im-uniapp/components/chat-message-item/chat-message-item.vue

@ -11,7 +11,7 @@
:name="showName" size="small"></head-image> :name="showName" size="small"></head-image>
<view class="content"> <view class="content">
<view v-if="msgInfo.groupId && !msgInfo.selfSend" class="top"> <view v-if="msgInfo.groupId && !msgInfo.selfSend" class="top">
<text>{{ showName }}</text> <text class="name">{{ showName }}</text>
</view> </view>
<view class="bottom"> <view class="bottom">
<view class="message-content-wrapper"> <view class="message-content-wrapper">
@ -294,10 +294,17 @@ export default {
.top { .top {
display: flex; display: flex;
flex-wrap: nowrap; flex-wrap: nowrap;
align-items: center;
.name {
color: $im-text-color-lighter; color: $im-text-color-lighter;
font-size: $im-font-size-smaller; font-size: $im-font-size-smaller;
line-height: $im-font-size-smaller; line-height: $im-font-size-smaller;
height: $im-font-size-smaller; height: $im-font-size-smaller;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
} }
.bottom { .bottom {

Loading…
Cancel
Save