This commit is contained in:
aaron 2025-06-11 22:29:46 +08:00
parent 87ce7adde6
commit ad919eb5ac

View File

@ -72,11 +72,11 @@
<div class="price-display">
<template v-if="!isLoadingPricing && pricing">
<span class="price" v-if="premiumBilling === 'monthly'">
¥{{ pricing.price_month }}
${{ pricing.price_month }}
<span class="period">/</span>
</span>
<span class="price" v-else>
¥{{ pricing.price_year }}
${{ pricing.price_year }}
<span class="period">/</span>
</span>
</template>
@ -178,7 +178,7 @@
<div class="plan-info">
<h4>{{ selectedPlan?.title }}</h4>
<div class="price">
¥{{ selectedPlan?.price }} / {{ selectedPlan?.period.replace('订阅', '') }}
${{ selectedPlan?.price }} / {{ selectedPlan?.period.replace('订阅', '') }}
</div>
<p class="description">{{ selectedPlan?.quota }}</p>
</div>