Commit 4d14dfff authored by 华国豪's avatar 华国豪 🙄

屏蔽im消息

parent 94e311e1
...@@ -1479,6 +1479,7 @@ export default { ...@@ -1479,6 +1479,7 @@ export default {
} }
} }
if (item.scene === "p2p") { if (item.scene === "p2p") {
return false
let userInfo = null; let userInfo = null;
if (item.to !== this.myPhoneId) { if (item.to !== this.myPhoneId) {
userInfo = this.userInfos[item.to]; userInfo = this.userInfos[item.to];
...@@ -1490,6 +1491,7 @@ export default { ...@@ -1490,6 +1491,7 @@ export default {
item.avatar = userInfo.avatar; item.avatar = userInfo.avatar;
} }
} else if (item.scene === "team") { } else if (item.scene === "team") {
return false
let teamInfo = null; let teamInfo = null;
teamInfo = this.$store.state.teamlist.find(team => { teamInfo = this.$store.state.teamlist.find(team => {
return team.teamId === item.to; return team.teamId === item.to;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment