From fa6472abac2afbab5711132330ecb2423be00dbb Mon Sep 17 00:00:00 2001 From: Joshi <3040996759@qq.com> Date: Sat, 12 Jul 2025 11:57:29 +0800 Subject: [PATCH] 1 --- pages/profile/index/index.vue | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/pages/profile/index/index.vue b/pages/profile/index/index.vue index 3813d40..6a04d71 100644 --- a/pages/profile/index/index.vue +++ b/pages/profile/index/index.vue @@ -3,7 +3,11 @@ - + {{ selfInfo.nickname }} @@ -77,7 +81,9 @@ export default { }, computed: { selfInfo() { - return this.$store.getters.storeSelfInfo; + const info = this.$store.getters.storeSelfInfo; + console.log('头像URL:', info.faceURL); // 添加这行调试 + return info; }, }, methods: {