|
@@ -870,7 +870,6 @@ export default {
|
|
|
item.name,
|
|
|
);
|
|
|
}
|
|
|
-
|
|
|
return item;
|
|
|
});
|
|
|
} else {
|
|
@@ -894,6 +893,7 @@ export default {
|
|
|
initConversations(data) {
|
|
|
this.conversations = data;
|
|
|
this.sortConversations();
|
|
|
+
|
|
|
},
|
|
|
|
|
|
/**
|
|
@@ -1007,7 +1007,6 @@ export default {
|
|
|
return this.contacts.findIndex(item => item.id == contactId);
|
|
|
},
|
|
|
findConversationIndexById(conversationId) {
|
|
|
- console.log("qxj conversationId:"+conversationId+", conversations:"+JSON.stringify(this.conversations));
|
|
|
return this.conversations.findIndex(item => item.conversationId == conversationId);
|
|
|
},
|
|
|
/**
|