From f0def899619f88afa1e0565084ba22c97327773c Mon Sep 17 00:00:00 2001 From: wangdongbo <949818794@qq.com> Date: Thu, 5 Feb 2026 11:26:42 +0800 Subject: [PATCH] no message --- .env.development | 2 +- .env.ip | 2 +- .env.localhost | 2 +- pages/message/message.vue | 2 +- store/team.js | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.env.development b/.env.development index cce72c5..4160666 100644 --- a/.env.development +++ b/.env.development @@ -1,7 +1,7 @@ MP_API_BASE_URL=https://patient.youcan365.com MP_IMAGE_URL=https://patient.youcan365.com MP_CACHE_PREFIX=development -MP_WX_APP_ID=wx1d8337a40c11d66c +MP_WX_APP_ID=wx6ee11733526b4f04 MP_CORP_ID=wwe3fb2faa52cf9dfb MP_TIM_SDK_APP_ID=1600123876 MP_INVITE_TEAMMATE_QRCODE=https://patient.youcan365.com/invite-teammate diff --git a/.env.ip b/.env.ip index 22cd3e5..921439a 100644 --- a/.env.ip +++ b/.env.ip @@ -1,7 +1,7 @@ MP_API_BASE_URL=http://192.168.60.2:8080 MP_IMAGE_URL=https://patient.youcan365.com MP_CACHE_PREFIX=development -MP_WX_APP_ID=wx1d8337a40c11d66c +MP_WX_APP_ID=wx6ee11733526b4f04 MP_CORP_ID=wwe3fb2faa52cf9dfb MP_TIM_SDK_APP_ID=1600123876 MP_INVITE_TEAMMATE_QRCODE=https://patient.youcan365.com/invite-teammate diff --git a/.env.localhost b/.env.localhost index 3d46ace..301ded7 100644 --- a/.env.localhost +++ b/.env.localhost @@ -1,7 +1,7 @@ MP_API_BASE_URL=http://localhost:8080 MP_IMAGE_URL=https://patient.youcan365.com MP_CACHE_PREFIX=development -MP_WX_APP_ID=wx1d8337a40c11d66c +MP_WX_APP_ID=wx6ee11733526b4f04 MP_CORP_ID=wwe3fb2faa52cf9dfb MP_TIM_SDK_APP_ID=1600123876 MP_INVITE_TEAMMATE_QRCODE=https://patient.youcan365.com/invite-teammate diff --git a/pages/message/message.vue b/pages/message/message.vue index 6eb660b..6309e1a 100644 --- a/pages/message/message.vue +++ b/pages/message/message.vue @@ -11,7 +11,7 @@ :key="conversation.groupID || conversation.conversationID" class="message-item" @click="handleClickConversation(conversation)"> - {{ diff --git a/store/team.js b/store/team.js index 036ccf5..1b0a169 100644 --- a/store/team.js +++ b/store/team.js @@ -30,7 +30,7 @@ export default defineStore("teamStore", () => { const corpId = account.value?.corpId; const mateId = doctorInfo.value?.userid; if (!corpId || !mateId) return; - const res = await api('getJoinedTeams', { corpId, mateId }); + const res = await api('getJoinedTeams', { corpId, mateId }, false); teams.value = res && Array.isArray(res.data) ? res.data : []; }