From d4d4eb3c7e68bf9d91ed3669d8cff8bfbcb64213 Mon Sep 17 00:00:00 2001 From: jscyl13849007907 <13849007907@163.com> Date: Fri, 29 Aug 2025 11:19:33 +0800 Subject: [PATCH 1/2] no message --- .../pages/Conversation/conversation-list/conversation-item.vue | 6 +++++- utils/common.js | 4 ++-- 2 files changed, 7 insertions(+), 3 deletions(-) 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/utils/common.js b/utils/common.js index 62414ae..7f51bc5 100644 --- a/utils/common.js +++ b/utils/common.js @@ -10,8 +10,8 @@ let data = { fadanBaseImg: "https://matripe-cms.oss-cn-beijing.aliyuncs.com/dailibaoming/", loginText: '请登录', coziID: '7537572244600471579', - // baseUrl:"https://daotian.matripe.com.cn",// 网络请求的基础路径 - baseUrl: "http://192.168.3.83:8001", // 网络请求的基础路径 + baseUrl:"https://daotian.matripe.com.cn",// 网络请求的基础路径 + // baseUrl: "http://192.168.3.83:8001", // 网络请求的基础路径 // #ifdef MP-WEIXIN version: uni.getAccountInfoSync().miniProgram.version || "1.0.16", // #endif From 81d7ae175c191253dab6e60b24e45c07a946170a Mon Sep 17 00:00:00 2001 From: jscyl13849007907 <13849007907@163.com> Date: Fri, 29 Aug 2025 11:21:38 +0800 Subject: [PATCH 2/2] no message --- root/NEUIKit/pages/user-card/my-detail/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 @@