diff --git a/pages/profile/index/index.vue b/pages/profile/index/index.vue
index a148115..b27ed1d 100644
--- a/pages/profile/index/index.vue
+++ b/pages/profile/index/index.vue
@@ -3,7 +3,11 @@
-
+
{{ selfInfo.nickname }}
@@ -87,7 +91,9 @@ export default {
},
computed: {
selfInfo() {
- return this.$store.getters.storeSelfInfo;
+ const info = this.$store.getters.storeSelfInfo;
+ console.log('头像URL:', info.faceURL); // 添加这行调试
+ return info;
},
},
methods: {