diff --git a/src/oc-community-frontend/src/components/PhoneWidget.vue b/src/oc-community-frontend/src/components/PhoneWidget.vue
index ed319c2..a0db94c 100644
--- a/src/oc-community-frontend/src/components/PhoneWidget.vue
+++ b/src/oc-community-frontend/src/components/PhoneWidget.vue
@@ -14,7 +14,7 @@
我
在线
- 资料
+ 我的资料
@@ -58,6 +58,8 @@
v-model="infoDialogVisible"
:oc="infoDialogOC"
/>
+
+
@@ -69,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: {
@@ -110,6 +113,12 @@ const showInfoDialog = () => {
}
}
+// 我的资料弹窗
+const myProfileVisible = ref(false)
+const showMyProfile = () => {
+ myProfileVisible.value = true
+}
+
const leftTab = ref('chat')
const activeMessages = computed({