个人中心页面实名认证显示错误修正

This commit is contained in:
WindowBird 2025-09-05 15:54:09 +08:00
parent 11cce3cc5b
commit 0440ea99df

View File

@ -54,7 +54,7 @@ export default {
//
userInfo: {
phone: "666****6666",
verificationStatus: "false",
avatar: "",
},
//
@ -137,7 +137,7 @@ export default {
},
computed: {
realNameStatus() {
return this.isRealName ? "实名" : "未实名";
return this.userInfo.isRealName ? "实名" : "未实名";
},
},
};