Browse Source

[修正] 聊天室标题遗漏 [的群聊(人数)] 文案;

非煤矿山灾害智能感知和预警系统
翟荣基 3 years ago
parent
commit
e42aa62b0c
  1. 1
      src/app/home/commonComponents/chat-window/chat-window.component.ts

1
src/app/home/commonComponents/chat-window/chat-window.component.ts

@ -62,6 +62,7 @@ export class ChatWindowComponent implements OnInit {
this.members.forEach(item => { this.members.forEach(item => {
this.chatName += (item.name || '') + ' ' this.chatName += (item.name || '') + ' '
}); });
this.chatName = this.chatName + '的群聊' + '(' + this.members.length + ')'
setTimeout(() => { setTimeout(() => {
this.scrollToBottom() this.scrollToBottom()
}, 0); }, 0);

Loading…
Cancel
Save