|
@@ -1,5 +1,5 @@
|
|
|
<template>
|
|
|
- <view style="display: none;" />
|
|
|
+ <view style="display: none" />
|
|
|
</template>
|
|
|
|
|
|
<script setup lang="ts">
|
|
@@ -8,17 +8,18 @@ import {
|
|
|
StoreName,
|
|
|
IConversationModel,
|
|
|
TUITranslateService,
|
|
|
-} from '@tencentcloud/chat-uikit-engine';
|
|
|
-import { TUIGlobal } from '@tencentcloud/universal-api';
|
|
|
-import { onLoad } from '@dcloudio/uni-app';
|
|
|
-import { onMounted, onUnmounted, ref } from '../../../adapter-vue';
|
|
|
+} from "@tencentcloud/chat-uikit-engine";
|
|
|
+import { TUIGlobal } from "@tencentcloud/universal-api";
|
|
|
+import { onLoad } from "@dcloudio/uni-app";
|
|
|
+import { onMounted, onUnmounted, ref } from "../../../adapter-vue";
|
|
|
|
|
|
const currentConversation = ref<IConversationModel>();
|
|
|
const typingStatus = ref(false);
|
|
|
|
|
|
const setChatHeaderContent = (content: string) => {
|
|
|
+ console.log("xxxxx", content);
|
|
|
TUIGlobal?.setNavigationBarTitle({
|
|
|
- title: content || '云通信 IM',
|
|
|
+ title: content || "云通信 IM",
|
|
|
});
|
|
|
};
|
|
|
|
|
@@ -54,7 +55,7 @@ function onCurrentConversationUpdated(conversation: IConversationModel) {
|
|
|
function onTypingStatusUpdated(status: boolean) {
|
|
|
typingStatus.value = status;
|
|
|
if (typingStatus.value) {
|
|
|
- setChatHeaderContent(TUITranslateService.t('TUIChat.对方正在输入'));
|
|
|
+ setChatHeaderContent(TUITranslateService.t("TUIChat.对方正在输入"));
|
|
|
} else {
|
|
|
setChatHeaderContent(currentConversation.value?.getShowName());
|
|
|
}
|