diff --git a/pages/NEUIKit/pages/Conversation/conversation-list/conversation-item.vue b/pages/NEUIKit/pages/Conversation/conversation-list/conversation-item.vue index e31ea16..0327828 100644 --- a/pages/NEUIKit/pages/Conversation/conversation-list/conversation-item.vue +++ b/pages/NEUIKit/pages/Conversation/conversation-list/conversation-item.vue @@ -151,7 +151,11 @@ const lastMsgContent = computed(() => { let _str = "[多媒体]"; if (!lastMsg.text && lastMsg.attachment && lastMsg.attachment.raw) { - _str = "[职位] " + JSON.parse(lastMsg.attachment.raw).title; + if(!lastMsg.text && lastMsg.attachment && lastMsg.attachment.raw && lastMsg.attachment.ext == '.mp4' && lastMsg.attachment.url){ + _str = "[视频]"; + }else{ + _str = "[职位] " + JSON.parse(lastMsg.attachment.raw).title; + } } if (!lastMsg.text && lastMsg.attachment && lastMsg.attachment.ext == ".mp3") { _str = "[语音]"; diff --git a/root/NEUIKit/pages/user-card/my-detail/index.vue b/root/NEUIKit/pages/user-card/my-detail/index.vue index e8a249b..8c40113 100644 --- a/root/NEUIKit/pages/user-card/my-detail/index.vue +++ b/root/NEUIKit/pages/user-card/my-detail/index.vue @@ -1,5 +1,5 @@