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