提交 a1176e36 编写于 作者: lyf's avatar lyf

添加参数

上级 5da3c999
...@@ -555,7 +555,7 @@ export default { ...@@ -555,7 +555,7 @@ export default {
if (msg.type.toLowerCase() == "custom") { if (msg.type.toLowerCase() == "custom") {
content = JSON.parse(msg.content); content = JSON.parse(msg.content);
text = content.content; text = content.content;
if (content.bizType == -1) { if (content.bizType == -1||content.bizType == 27) {
// 系统消息:消息由于违规未发送成功(可以不处理) // 系统消息:消息由于违规未发送成功(可以不处理)
showType = -1; showType = -1;
text = content.content; text = content.content;
...@@ -689,7 +689,7 @@ export default { ...@@ -689,7 +689,7 @@ export default {
newMsgList = []; newMsgList = [];
if (item.type.toLowerCase() == "custom") { if (item.type.toLowerCase() == "custom") {
content = JSON.parse(item.content); content = JSON.parse(item.content);
if (content.bizType == -1) { if (content.bizType == -1||content.bizType == 27) {
signature = content.signature; signature = content.signature;
msgIndex = this.messageList.findIndex((m) => { msgIndex = this.messageList.findIndex((m) => {
return m.signature == signature && !m.isShowErrorMsg; return m.signature == signature && !m.isShowErrorMsg;
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册