Realm page

This commit is contained in:
2025-11-30 00:39:05 +08:00
parent 0523df45cf
commit 302d5cb293
8 changed files with 744 additions and 8 deletions

View File

@@ -166,6 +166,16 @@
:show-indicator="false"
/>
</n-card>
<n-card
v-if="user?.profile?.verification"
size="small"
:class="cardClass"
:style="cardStyle"
:content-style="cardContentStyle"
>
<verification-status-card :mark="user.profile.verification" />
</n-card>
</div>
<div>
<n-card
@@ -252,7 +262,7 @@ try {
console.error("Failed to fetch user:", error.value)
notFound.value = true
} else if (data.value) {
user.value = data.value
user.value = keysToCamel(data.value)
}
} catch (err) {
console.error("Failed to fetch user:", err)