From ceef70fdb24cd5c32b4c01f9c8f7cfb3d01dfd6a Mon Sep 17 00:00:00 2001 From: zhongzm Date: Fri, 7 Feb 2025 09:51:00 +0800 Subject: [PATCH] =?UTF-8?q?feat:=E4=BD=99=E9=A2=9D=E5=85=85=E5=80=BC?= =?UTF-8?q?=E6=BA=A2=E5=87=BA=E5=92=8C=E6=98=BE=E7=A4=BA=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/recharge/balancerecharge/index.vue | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/views/recharge/balancerecharge/index.vue b/src/views/recharge/balancerecharge/index.vue index e915b77..6f51211 100644 --- a/src/views/recharge/balancerecharge/index.vue +++ b/src/views/recharge/balancerecharge/index.vue @@ -28,12 +28,12 @@ const selectedAmount = ref(null); const isCustomMode = ref(false); const rechargeOptions: Ref = ref([ - { amount: 10, displayAmount: `10${t('page.carddata.money')}`, price: 10.00 }, - { amount: 20, displayAmount: `20${t('page.carddata.money')}`, price: 20.00 }, - { amount: 30, displayAmount: `30${t('page.carddata.money')}`, price: 30.00 }, - { amount: 50, displayAmount: `50${t('page.carddata.money')}`, price: 50.00 }, - { amount: 100, displayAmount: `100${t('page.carddata.money')}`, price: 100.00 }, - { amount: 200, displayAmount: `200${t('page.carddata.money')}`, price: 200.00 }, + { amount: 10, displayAmount: `${t('page.carddata.money')}10`, price: 10.00 }, + { amount: 20, displayAmount: `${t('page.carddata.money')}20`, price: 20.00 }, + { amount: 30, displayAmount: `${t('page.carddata.money')}30`, price: 30.00 }, + { amount: 50, displayAmount: `${t('page.carddata.money')}50`, price: 50.00 }, + { amount: 100, displayAmount: `${t('page.carddata.money')}100`, price: 100.00 }, + { amount: 200, displayAmount: `${t('page.carddata.money')}200`, price: 200.00 }, ]); const paymentAmount = computed(() => { @@ -167,7 +167,7 @@ const handlePaymentConfirm = async (paymentMethod: 'alipay' | 'wxpay') => { @click="handleOptionSelect(option.amount)" >
{{ option.displayAmount }}
-
{{ t('page.carddata.price') }} {{ option.price.toFixed(2) }}
+
{{ option.price.toFixed(2) }}