fix: 卡类选择只显示名称不显示价格

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
2026-05-10 01:41:42 +08:00
parent 4385960967
commit 8148b1abdb
+1 -1
View File
@@ -186,7 +186,7 @@ onMounted(() => {
</UiSelectTrigger>
<UiSelectContent>
<UiSelectItem v-for="type in cardTypes" :key="type.id" :value="String(type.id)">
{{ type.name }} - ¥{{ type.price }}
{{ type.name }}
</UiSelectItem>
</UiSelectContent>
</UiSelect>