提交
This commit is contained in:
parent
9cdee03753
commit
cc9b56c5b4
@ -1,18 +1,34 @@
|
|||||||
<template>
|
<template>
|
||||||
<view class="message-page">
|
<view class="message-page">
|
||||||
<!-- 头部组件 -->
|
<!-- 头部组件 -->
|
||||||
<message-header v-model:activeTab="activeTab" @team-change="handleTeamChange" @add-patient="handleAddPatient" />
|
<message-header
|
||||||
|
v-model:activeTab="activeTab"
|
||||||
|
@team-change="handleTeamChange"
|
||||||
|
@add-patient="handleAddPatient"
|
||||||
|
/>
|
||||||
|
|
||||||
<!-- 消息列表 -->
|
<!-- 消息列表 -->
|
||||||
<scroll-view class="message-list" scroll-y="true" refresher-enabled :refresher-triggered="refreshing"
|
<scroll-view
|
||||||
@refresherrefresh="handleRefresh" @scrolltolower="handleLoadMore">
|
class="message-list"
|
||||||
|
scroll-y="true"
|
||||||
|
refresher-enabled
|
||||||
|
:refresher-triggered="refreshing"
|
||||||
|
@refresherrefresh="handleRefresh"
|
||||||
|
@scrolltolower="handleLoadMore"
|
||||||
|
>
|
||||||
<!-- 消息列表项 -->
|
<!-- 消息列表项 -->
|
||||||
<view v-for="conversation in filteredConversationList"
|
<view
|
||||||
:key="conversation.groupID || conversation.conversationID" class="message-item"
|
v-for="conversation in filteredConversationList"
|
||||||
@click="handleClickConversation(conversation)">
|
:key="conversation.groupID || conversation.conversationID"
|
||||||
|
class="message-item"
|
||||||
|
@click="handleClickConversation(conversation)"
|
||||||
|
>
|
||||||
<view class="avatar-container">
|
<view class="avatar-container">
|
||||||
<image class="avatar" :src="conversation.avatar || '/static/default-avatar.png'"
|
<image
|
||||||
mode="aspectFill" />
|
class="avatar"
|
||||||
|
:src="conversation.avatar || '/static/default-avatar.png'"
|
||||||
|
mode="aspectFill"
|
||||||
|
/>
|
||||||
<view v-if="conversation.unreadCount > 0" class="unread-badge">
|
<view v-if="conversation.unreadCount > 0" class="unread-badge">
|
||||||
<text class="unread-text">{{
|
<text class="unread-text">{{
|
||||||
conversation.unreadCount > 99 ? "99+" : conversation.unreadCount
|
conversation.unreadCount > 99 ? "99+" : conversation.unreadCount
|
||||||
@ -24,7 +40,10 @@
|
|||||||
<view class="header">
|
<view class="header">
|
||||||
<view class="name-info">
|
<view class="name-info">
|
||||||
<text class="name">{{ formatPatientName(conversation) }}</text>
|
<text class="name">{{ formatPatientName(conversation) }}</text>
|
||||||
<text v-if="conversation.patientSex || conversation.patientAge" class="patient-info">
|
<text
|
||||||
|
v-if="conversation.patientSex || conversation.patientAge"
|
||||||
|
class="patient-info"
|
||||||
|
>
|
||||||
{{ formatPatientInfo(conversation) }}
|
{{ formatPatientInfo(conversation) }}
|
||||||
</text>
|
</text>
|
||||||
</view>
|
</view>
|
||||||
@ -41,7 +60,10 @@
|
|||||||
</view>
|
</view>
|
||||||
|
|
||||||
<!-- 空状态 -->
|
<!-- 空状态 -->
|
||||||
<view v-if="!loading && filteredConversationList.length === 0" class="empty-container">
|
<view
|
||||||
|
v-if="filteredConversationList.length === 0"
|
||||||
|
class="empty-container"
|
||||||
|
>
|
||||||
<image class="empty-image" src="/static/empty.svg" mode="aspectFit" />
|
<image class="empty-image" src="/static/empty.svg" mode="aspectFit" />
|
||||||
<text class="empty-text">{{
|
<text class="empty-text">{{
|
||||||
activeTab === "processing" ? "暂无处理中的会话" : "暂无已结束的会话"
|
activeTab === "processing" ? "暂无处理中的会话" : "暂无已结束的会话"
|
||||||
@ -49,7 +71,10 @@
|
|||||||
</view>
|
</view>
|
||||||
|
|
||||||
<!-- 加载更多 -->
|
<!-- 加载更多 -->
|
||||||
<view v-if="hasMore && filteredConversationList.length > 0" class="load-more">
|
<view
|
||||||
|
v-if="hasMore && filteredConversationList.length > 0"
|
||||||
|
class="load-more"
|
||||||
|
>
|
||||||
<text class="load-more-text">{{
|
<text class="load-more-text">{{
|
||||||
loadingMore ? "加载中..." : "上拉加载更多"
|
loadingMore ? "加载中..." : "上拉加载更多"
|
||||||
}}</text>
|
}}</text>
|
||||||
@ -59,49 +84,26 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import {
|
import { ref, computed } from "vue";
|
||||||
ref,
|
import { onLoad, onShow, onHide } from "@dcloudio/uni-app";
|
||||||
computed
|
import { storeToRefs } from "pinia";
|
||||||
} from "vue";
|
|
||||||
import {
|
|
||||||
onLoad,
|
|
||||||
onShow,
|
|
||||||
onHide
|
|
||||||
} from "@dcloudio/uni-app";
|
|
||||||
import {
|
|
||||||
storeToRefs
|
|
||||||
} from "pinia";
|
|
||||||
import useAccountStore from "@/store/account.js";
|
import useAccountStore from "@/store/account.js";
|
||||||
import useTeamStore from "@/store/team.js";
|
import useTeamStore from "@/store/team.js";
|
||||||
import useInfoCheck from "@/hooks/useInfoCheck.js";
|
import useInfoCheck from "@/hooks/useInfoCheck.js";
|
||||||
import {
|
import { globalTimChatManager } from "@/utils/tim-chat.js";
|
||||||
globalTimChatManager
|
import { mergeConversationWithGroupDetails } from "@/utils/conversation-merger.js";
|
||||||
} from "@/utils/tim-chat.js";
|
|
||||||
import {
|
|
||||||
mergeConversationWithGroupDetails
|
|
||||||
} from "@/utils/conversation-merger.js";
|
|
||||||
import MessageHeader from "./components/message-header.vue";
|
import MessageHeader from "./components/message-header.vue";
|
||||||
|
|
||||||
// 获取登录状态
|
// 获取登录状态
|
||||||
const {
|
const { account, openid, isIMInitialized } = storeToRefs(useAccountStore());
|
||||||
account,
|
const { initIMAfterLogin } = useAccountStore();
|
||||||
openid,
|
|
||||||
isIMInitialized
|
|
||||||
} = storeToRefs(useAccountStore());
|
|
||||||
const {
|
|
||||||
initIMAfterLogin
|
|
||||||
} = useAccountStore();
|
|
||||||
|
|
||||||
// 获取团队信息
|
// 获取团队信息
|
||||||
const teamStore = useTeamStore();
|
const teamStore = useTeamStore();
|
||||||
const {
|
const { getTeams } = teamStore;
|
||||||
getTeams
|
|
||||||
} = teamStore;
|
|
||||||
|
|
||||||
// 信息完善检查
|
// 信息完善检查
|
||||||
const {
|
const { withInfo } = useInfoCheck();
|
||||||
withInfo
|
|
||||||
} = useInfoCheck();
|
|
||||||
|
|
||||||
// 团队相关状态
|
// 团队相关状态
|
||||||
const currentTeamId = ref(""); // 空字符串表示"全部会话消息"
|
const currentTeamId = ref(""); // 空字符串表示"全部会话消息"
|
||||||
@ -162,14 +164,13 @@
|
|||||||
});
|
});
|
||||||
const success = await initIMAfterLogin();
|
const success = await initIMAfterLogin();
|
||||||
uni.hideLoading();
|
uni.hideLoading();
|
||||||
|
// if (!success) {
|
||||||
if (!success) {
|
// uni.showToast({
|
||||||
uni.showToast({
|
// title: "IM连接失败,请重试",
|
||||||
title: "IM连接失败,请重试",
|
// icon: "none",
|
||||||
icon: "none",
|
// });
|
||||||
});
|
// return false;
|
||||||
return false;
|
// }
|
||||||
}
|
|
||||||
} else if (globalTimChatManager && !globalTimChatManager.isLoggedIn) {
|
} else if (globalTimChatManager && !globalTimChatManager.isLoggedIn) {
|
||||||
uni.showLoading({
|
uni.showLoading({
|
||||||
title: "重连中...",
|
title: "重连中...",
|
||||||
@ -191,7 +192,8 @@
|
|||||||
try {
|
try {
|
||||||
console.log("开始加载群聊列表");
|
console.log("开始加载群聊列表");
|
||||||
if (!globalTimChatManager || !globalTimChatManager.getGroupList) {
|
if (!globalTimChatManager || !globalTimChatManager.getGroupList) {
|
||||||
throw new Error("IM管理器未初始化");
|
loading.value = false;
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
const result = await globalTimChatManager.getGroupList();
|
const result = await globalTimChatManager.getGroupList();
|
||||||
if (result && result.success && result.groupList) {
|
if (result && result.success && result.groupList) {
|
||||||
@ -307,8 +309,7 @@
|
|||||||
const existing = conversationList.value[existingIndex];
|
const existing = conversationList.value[existingIndex];
|
||||||
if (
|
if (
|
||||||
existing.lastMessage !== conversationData.lastMessage ||
|
existing.lastMessage !== conversationData.lastMessage ||
|
||||||
existing.lastMessageTime !== conversationData
|
existing.lastMessageTime !== conversationData.lastMessageTime ||
|
||||||
.lastMessageTime ||
|
|
||||||
existing.unreadCount !== conversationData.unreadCount ||
|
existing.unreadCount !== conversationData.unreadCount ||
|
||||||
existing.patientName !== conversationData.patientName ||
|
existing.patientName !== conversationData.patientName ||
|
||||||
existing.patientSex !== conversationData.patientSex ||
|
existing.patientSex !== conversationData.patientSex ||
|
||||||
|
|||||||
@ -5,7 +5,13 @@
|
|||||||
<view class="mt-12 text-base text-dark">生命全周期健康管理伙伴</view>
|
<view class="mt-12 text-base text-dark">生命全周期健康管理伙伴</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="login-btn-wrap">
|
<view class="login-btn-wrap">
|
||||||
<button v-if="checked" class="login-btn" type="primary" open-type="getPhoneNumber" @getphonenumber="getPhoneNumber">
|
<button
|
||||||
|
v-if="checked"
|
||||||
|
class="login-btn"
|
||||||
|
type="primary"
|
||||||
|
open-type="getPhoneNumber"
|
||||||
|
@getphonenumber="getPhoneNumber"
|
||||||
|
>
|
||||||
手机号快捷登录
|
手机号快捷登录
|
||||||
</button>
|
</button>
|
||||||
<!-- <button v-if="checked" class="login-btn" type="primary" @click="getPhoneNumber()">
|
<!-- <button v-if="checked" class="login-btn" type="primary" @click="getPhoneNumber()">
|
||||||
@ -15,7 +21,10 @@
|
|||||||
手机号快捷登录
|
手机号快捷登录
|
||||||
</button>
|
</button>
|
||||||
</view>
|
</view>
|
||||||
<view class="flex items-center justify-center mt-12 px-15" @click="checked = !checked">
|
<view
|
||||||
|
class="flex items-center justify-center mt-12 px-15"
|
||||||
|
@click="checked = !checked"
|
||||||
|
>
|
||||||
<checkbox :checked="checked" style="transform: scale(0.7)" />
|
<checkbox :checked="checked" style="transform: scale(0.7)" />
|
||||||
<view class="text-sm text-gray">我已阅读并同意</view>
|
<view class="text-sm text-gray">我已阅读并同意</view>
|
||||||
<view class="text-sm text-primary">《用户协议》、</view>
|
<view class="text-sm text-primary">《用户协议》、</view>
|
||||||
@ -76,8 +85,8 @@ async function getPhoneNumber(e) {
|
|||||||
await attempToPage(redirectUrl.value);
|
await attempToPage(redirectUrl.value);
|
||||||
} else if (res && !(doctorInfo.value && doctorInfo.value.anotherName)) {
|
} else if (res && !(doctorInfo.value && doctorInfo.value.anotherName)) {
|
||||||
uni.redirectTo({
|
uni.redirectTo({
|
||||||
url: '/pages/work/profile'
|
url: "/pages/work/profile",
|
||||||
})
|
});
|
||||||
} else if (res) {
|
} else if (res) {
|
||||||
toHome();
|
toHome();
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
// SCSS 变量定义
|
// SCSS 变量定义
|
||||||
$font-size-text: 28rpx;
|
$font-size-text: 30rpx;
|
||||||
$font-size-tip: 24rpx;
|
$font-size-tip: 28rpx;
|
||||||
$font-size-title: 32rpx;
|
$font-size-title: 32rpx;
|
||||||
$text-color-sub: #999;
|
$text-color-sub: #999;
|
||||||
$primary-color: #0877F1;
|
$primary-color: #0877F1;
|
||||||
@ -331,7 +331,7 @@ $primary-color: #0877F1;
|
|||||||
}
|
}
|
||||||
|
|
||||||
.message-text {
|
.message-text {
|
||||||
font-size: $font-size-text;
|
font-size: 30rpx;
|
||||||
line-height: 1.4;
|
line-height: 1.4;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
word-break: break-all;
|
word-break: break-all;
|
||||||
|
|||||||
@ -393,13 +393,13 @@ const checkLoginAndInitTIM = async () => {
|
|||||||
});
|
});
|
||||||
const success = await initIMAfterLogin();
|
const success = await initIMAfterLogin();
|
||||||
uni.hideLoading();
|
uni.hideLoading();
|
||||||
if (!success) {
|
// if (!success) {
|
||||||
uni.showToast({
|
// uni.showToast({
|
||||||
title: "IM连接失败,请重试",
|
// title: "IM连接失败,请重试",
|
||||||
icon: "none",
|
// icon: "none",
|
||||||
});
|
// });
|
||||||
return;
|
// return;
|
||||||
}
|
// }
|
||||||
} else if (!timChatManager.isLoggedIn) {
|
} else if (!timChatManager.isLoggedIn) {
|
||||||
uni.showLoading({
|
uni.showLoading({
|
||||||
title: "重连中...",
|
title: "重连中...",
|
||||||
|
|||||||
@ -1,18 +1,33 @@
|
|||||||
<template>
|
<template>
|
||||||
<view class="message-page">
|
<view class="message-page">
|
||||||
<!-- 头部组件 -->
|
<!-- 头部组件 -->
|
||||||
<message-header v-model:activeTab="activeTab" @team-change="handleTeamChange" @add-patient="handleAddPatient" />
|
<message-header
|
||||||
|
v-model:activeTab="activeTab"
|
||||||
|
@team-change="handleTeamChange"
|
||||||
|
@add-patient="handleAddPatient"
|
||||||
|
/>
|
||||||
<!-- 消息列表 -->
|
<!-- 消息列表 -->
|
||||||
<scroll-view class="message-list" scroll-y="true" refresher-enabled :refresher-triggered="refreshing"
|
<scroll-view
|
||||||
@refresherrefresh="handleRefresh" @scrolltolower="handleLoadMore">
|
class="message-list"
|
||||||
|
scroll-y="true"
|
||||||
|
refresher-enabled
|
||||||
|
:refresher-triggered="refreshing"
|
||||||
|
@refresherrefresh="handleRefresh"
|
||||||
|
@scrolltolower="handleLoadMore"
|
||||||
|
>
|
||||||
<!-- 消息列表项 -->
|
<!-- 消息列表项 -->
|
||||||
<view v-for="conversation in filteredConversationList"
|
<view
|
||||||
:key="conversation.groupID || conversation.conversationID" class="message-item"
|
v-for="conversation in filteredConversationList"
|
||||||
@click="handleClickConversation(conversation)">
|
:key="conversation.groupID || conversation.conversationID"
|
||||||
|
class="message-item"
|
||||||
|
@click="handleClickConversation(conversation)"
|
||||||
|
>
|
||||||
<view class="avatar-container">
|
<view class="avatar-container">
|
||||||
<image class="avatar" :src="conversation.avatar || '/static/default-patient-avatar.png'"
|
<image
|
||||||
mode="aspectFill" />
|
class="avatar"
|
||||||
|
:src="conversation.avatar || '/static/default-patient-avatar.png'"
|
||||||
|
mode="aspectFill"
|
||||||
|
/>
|
||||||
<view v-if="conversation.unreadCount > 0" class="unread-badge">
|
<view v-if="conversation.unreadCount > 0" class="unread-badge">
|
||||||
<text class="unread-text">{{
|
<text class="unread-text">{{
|
||||||
conversation.unreadCount > 99 ? "99+" : conversation.unreadCount
|
conversation.unreadCount > 99 ? "99+" : conversation.unreadCount
|
||||||
@ -24,7 +39,10 @@
|
|||||||
<view class="header">
|
<view class="header">
|
||||||
<view class="name-info">
|
<view class="name-info">
|
||||||
<text class="name">{{ formatPatientName(conversation) }}</text>
|
<text class="name">{{ formatPatientName(conversation) }}</text>
|
||||||
<text v-if="conversation.patientSex || conversation.patientAge" class="patient-info">
|
<text
|
||||||
|
v-if="conversation.patientSex || conversation.patientAge"
|
||||||
|
class="patient-info"
|
||||||
|
>
|
||||||
{{ formatPatientInfo(conversation) }}
|
{{ formatPatientInfo(conversation) }}
|
||||||
</text>
|
</text>
|
||||||
</view>
|
</view>
|
||||||
@ -41,7 +59,20 @@
|
|||||||
</view>
|
</view>
|
||||||
|
|
||||||
<!-- 空状态 -->
|
<!-- 空状态 -->
|
||||||
<view v-if="!loading && filteredConversationList.length === 0" class="empty-container">
|
<view
|
||||||
|
v-if="!loading && conversationList.length === 0"
|
||||||
|
class="empty-container"
|
||||||
|
>
|
||||||
|
<image class="empty-image" src="/static/empty.svg" mode="aspectFit" />
|
||||||
|
<text class="empty-text">医生信息未获取,请稍后重试</text>
|
||||||
|
</view>
|
||||||
|
<view
|
||||||
|
v-else-if="
|
||||||
|
!loading &&
|
||||||
|
filteredConversationList.length === 0
|
||||||
|
"
|
||||||
|
class="empty-container"
|
||||||
|
>
|
||||||
<image class="empty-image" src="/static/empty.svg" mode="aspectFit" />
|
<image class="empty-image" src="/static/empty.svg" mode="aspectFit" />
|
||||||
<text class="empty-text">{{
|
<text class="empty-text">{{
|
||||||
activeTab === "processing" ? "暂无处理中的会话" : "暂无已结束的会话"
|
activeTab === "processing" ? "暂无处理中的会话" : "暂无已结束的会话"
|
||||||
@ -49,7 +80,10 @@
|
|||||||
</view>
|
</view>
|
||||||
|
|
||||||
<!-- 加载更多 -->
|
<!-- 加载更多 -->
|
||||||
<view v-if="hasMore && filteredConversationList.length > 0" class="load-more">
|
<view
|
||||||
|
v-if="hasMore && filteredConversationList.length > 0"
|
||||||
|
class="load-more"
|
||||||
|
>
|
||||||
<text class="load-more-text">{{
|
<text class="load-more-text">{{
|
||||||
loadingMore ? "加载中..." : "上拉加载更多"
|
loadingMore ? "加载中..." : "上拉加载更多"
|
||||||
}}</text>
|
}}</text>
|
||||||
@ -59,49 +93,26 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import {
|
import { ref, computed } from "vue";
|
||||||
ref,
|
import { onLoad, onShow, onHide } from "@dcloudio/uni-app";
|
||||||
computed
|
import { storeToRefs } from "pinia";
|
||||||
} from "vue";
|
|
||||||
import {
|
|
||||||
onLoad,
|
|
||||||
onShow,
|
|
||||||
onHide
|
|
||||||
} from "@dcloudio/uni-app";
|
|
||||||
import {
|
|
||||||
storeToRefs
|
|
||||||
} from "pinia";
|
|
||||||
import useAccountStore from "@/store/account.js";
|
import useAccountStore from "@/store/account.js";
|
||||||
import useTeamStore from "@/store/team.js";
|
import useTeamStore from "@/store/team.js";
|
||||||
import useInfoCheck from "@/hooks/useInfoCheck.js";
|
import useInfoCheck from "@/hooks/useInfoCheck.js";
|
||||||
import {
|
import { globalTimChatManager } from "@/utils/tim-chat.js";
|
||||||
globalTimChatManager
|
import { mergeConversationWithGroupDetails } from "@/utils/conversation-merger.js";
|
||||||
} from "@/utils/tim-chat.js";
|
|
||||||
import {
|
|
||||||
mergeConversationWithGroupDetails
|
|
||||||
} from "@/utils/conversation-merger.js";
|
|
||||||
import MessageHeader from "../home/components/message-header.vue";
|
import MessageHeader from "../home/components/message-header.vue";
|
||||||
|
|
||||||
// 获取登录状态
|
// 获取登录状态
|
||||||
const {
|
const { account, openid, isIMInitialized } = storeToRefs(useAccountStore());
|
||||||
account,
|
const { initIMAfterLogin } = useAccountStore();
|
||||||
openid,
|
|
||||||
isIMInitialized
|
|
||||||
} = storeToRefs(useAccountStore());
|
|
||||||
const {
|
|
||||||
initIMAfterLogin
|
|
||||||
} = useAccountStore();
|
|
||||||
|
|
||||||
// 获取团队信息
|
// 获取团队信息
|
||||||
const teamStore = useTeamStore();
|
const teamStore = useTeamStore();
|
||||||
const {
|
const { getTeams } = teamStore;
|
||||||
getTeams
|
|
||||||
} = teamStore;
|
|
||||||
|
|
||||||
// 信息完善检查
|
// 信息完善检查
|
||||||
const {
|
const { withInfo } = useInfoCheck();
|
||||||
withInfo
|
|
||||||
} = useInfoCheck();
|
|
||||||
|
|
||||||
// 团队相关状态
|
// 团队相关状态
|
||||||
const currentTeamId = ref(""); // 空字符串表示"全部会话消息"
|
const currentTeamId = ref(""); // 空字符串表示"全部会话消息"
|
||||||
@ -167,7 +178,8 @@
|
|||||||
// 显示重试提示
|
// 显示重试提示
|
||||||
uni.showModal({
|
uni.showModal({
|
||||||
title: "IM连接失败",
|
title: "IM连接失败",
|
||||||
content: "连接失败,请检查网络后重试。如果IM连接失败,请重新登陆IM再连接",
|
content:
|
||||||
|
"连接失败,请检查网络后重试。如果IM连接失败,请重新登陆IM再连接",
|
||||||
confirmText: "重新登陆",
|
confirmText: "重新登陆",
|
||||||
cancelText: "取消",
|
cancelText: "取消",
|
||||||
success: (res) => {
|
success: (res) => {
|
||||||
@ -175,7 +187,7 @@
|
|||||||
// 重新登陆
|
// 重新登陆
|
||||||
handleReloginIM();
|
handleReloginIM();
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
});
|
});
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -190,7 +202,8 @@
|
|||||||
// 显示重试提示
|
// 显示重试提示
|
||||||
uni.showModal({
|
uni.showModal({
|
||||||
title: "IM连接失败",
|
title: "IM连接失败",
|
||||||
content: "连接失败,请检查网络后重试。如果IM连接失败,请重新登陆IM再连接",
|
content:
|
||||||
|
"连接失败,请检查网络后重试。如果IM连接失败,请重新登陆IM再连接",
|
||||||
confirmText: "重新登陆",
|
confirmText: "重新登陆",
|
||||||
cancelText: "取消",
|
cancelText: "取消",
|
||||||
success: (res) => {
|
success: (res) => {
|
||||||
@ -198,7 +211,7 @@
|
|||||||
// 重新登陆
|
// 重新登陆
|
||||||
handleReloginIM();
|
handleReloginIM();
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
});
|
});
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -395,8 +408,7 @@
|
|||||||
const existing = conversationList.value[existingIndex];
|
const existing = conversationList.value[existingIndex];
|
||||||
if (
|
if (
|
||||||
existing.lastMessage !== conversationData.lastMessage ||
|
existing.lastMessage !== conversationData.lastMessage ||
|
||||||
existing.lastMessageTime !== conversationData
|
existing.lastMessageTime !== conversationData.lastMessageTime ||
|
||||||
.lastMessageTime ||
|
|
||||||
existing.unreadCount !== conversationData.unreadCount ||
|
existing.unreadCount !== conversationData.unreadCount ||
|
||||||
existing.patientName !== conversationData.patientName ||
|
existing.patientName !== conversationData.patientName ||
|
||||||
existing.patientSex !== conversationData.patientSex ||
|
existing.patientSex !== conversationData.patientSex ||
|
||||||
|
|||||||
@ -41,6 +41,7 @@ export default defineStore("accountStore", () => {
|
|||||||
|
|
||||||
async function loginByCode(phoneCode = '') {
|
async function loginByCode(phoneCode = '') {
|
||||||
try {
|
try {
|
||||||
|
|
||||||
const { code } = await uni.login({
|
const { code } = await uni.login({
|
||||||
appid,
|
appid,
|
||||||
provider: "weixin",
|
provider: "weixin",
|
||||||
@ -61,13 +62,12 @@ export default defineStore("accountStore", () => {
|
|||||||
}
|
}
|
||||||
account.value = res.data;
|
account.value = res.data;
|
||||||
openid.value = res.data.openid;
|
openid.value = res.data.openid;
|
||||||
|
|
||||||
// 持久化账户信息
|
// 持久化账户信息
|
||||||
cache.set(CACHE_KEYS.ACCOUNT, res.data);
|
cache.set(CACHE_KEYS.ACCOUNT, res.data);
|
||||||
cache.set(CACHE_KEYS.OPENID, res.data.openid);
|
cache.set(CACHE_KEYS.OPENID, res.data.openid);
|
||||||
|
|
||||||
// 登录成功后初始化腾讯IM
|
// 登录成功后初始化腾讯IM
|
||||||
await getDoctorInfo(openid.value);
|
await getDoctorInfo({ openid: openid.value });
|
||||||
await initIMAfterLogin();
|
await initIMAfterLogin();
|
||||||
return res.data
|
return res.data
|
||||||
}
|
}
|
||||||
|
|||||||
@ -283,7 +283,6 @@ function generateSendLink(survey, answerId, customerId, customerName, sendSurvey
|
|||||||
const { corpId, userId } = context;
|
const { corpId, userId } = context;
|
||||||
const isSystem = survey.createBy === 'system';
|
const isSystem = survey.createBy === 'system';
|
||||||
let url = '';
|
let url = '';
|
||||||
debugger
|
|
||||||
if (isSystem) {
|
if (isSystem) {
|
||||||
// 系统问卷:使用 VITE_SURVEY_URL
|
// 系统问卷:使用 VITE_SURVEY_URL
|
||||||
url = `${env?.MP_SURVEY_URL}?corpId=${corpId}&surveryId=${survey.surveryId}&memberId=${customerId}&sendSurveyId=${sendSurveyId}&userId=${userId}`;
|
url = `${env?.MP_SURVEY_URL}?corpId=${corpId}&surveryId=${survey.surveryId}&memberId=${customerId}&sendSurveyId=${sendSurveyId}&userId=${userId}`;
|
||||||
|
|||||||
@ -1030,6 +1030,11 @@ class TimChatManager {
|
|||||||
// 获取群聊列表
|
// 获取群聊列表
|
||||||
getGroupList() {
|
getGroupList() {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
|
// 检查userId是否存在,不存在则不需要初始化
|
||||||
|
if (!this.currentUserID) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
// 如果 TIM 实例不存在,等待初始化
|
// 如果 TIM 实例不存在,等待初始化
|
||||||
if (!this.tim) {
|
if (!this.tim) {
|
||||||
console.log('TIM实例不存在,等待初始化...')
|
console.log('TIM实例不存在,等待初始化...')
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user