Commit d9931ae1 by 吴云建

fix

parent 561c7886
Showing with 1 additions and 1 deletions
...@@ -178,7 +178,7 @@ export default class ModelChatList extends Vue { ...@@ -178,7 +178,7 @@ export default class ModelChatList extends Vue {
} }
private parseMesage(data: ChatType) { private parseMesage(data: ChatType) {
if (data.last_msg_content === "") return "[暂无消息]"; if (!data.last_msg_content) return "[暂无消息]";
return parserMessage(data.last_msg_type, data.last_msg_content); return parserMessage(data.last_msg_type, data.last_msg_content);
} }
......
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 sign in to comment