diff --git a/src/oc-community-frontend/src/components/ChatWindow.vue b/src/oc-community-frontend/src/components/ChatWindow.vue
index 9af9d45..84a50e8 100644
--- a/src/oc-community-frontend/src/components/ChatWindow.vue
+++ b/src/oc-community-frontend/src/components/ChatWindow.vue
@@ -3,7 +3,10 @@
@@ -53,6 +53,13 @@
关闭
+
+
+
+
@@ -64,6 +71,7 @@ import { ocList } from '../stores/ocStore'
import { currentUser } from '../stores/userStore'
import OCInfoDialog from './OCInfoDialog.vue'
+import UserCenterDialog from './UserCenterDialog.vue'
const props = defineProps({
modelValue: {
@@ -105,6 +113,12 @@ const showInfoDialog = () => {
}
}
+// 我的资料弹窗
+const myProfileVisible = ref(false)
+const showMyProfile = () => {
+ myProfileVisible.value = true
+}
+
const leftTab = ref('chat')
const activeMessages = computed({
@@ -156,12 +170,6 @@ watch(activeContactId, id => {
})
-
-
-
\ No newline at end of file