From c23a76069d423c3e8a062a51e3ebdf8f00138ad3 Mon Sep 17 00:00:00 2001 From: zhongzm Date: Mon, 28 Apr 2025 16:48:49 +0800 Subject: [PATCH] =?UTF-8?q?feat:=E9=BB=98=E8=AE=A4=E9=80=89=E6=8B=A9paypal?= =?UTF-8?q?=E5=92=8Cstripe?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/billing/rule/index.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/billing/rule/index.vue b/src/views/billing/rule/index.vue index 1adaa34..0c13a48 100644 --- a/src/views/billing/rule/index.vue +++ b/src/views/billing/rule/index.vue @@ -200,12 +200,12 @@ const getUnitText = (unit: number) => { // 支付方式配置 const paymentOptions = [ + { label: 'PayPal', value: 'paypal' }, + { label: 'Stripe', value: 'stripe' }, { label: 'Alipay', value: 'alipay' }, { label: 'WeChat Pay', value: 'wxpay' }, - { label: 'PayPal', value: 'paypal' }, - { label: 'Stripe', value: 'stripe' } ]; -const selectedPaymentMethods = ref([]); +const selectedPaymentMethods = ref(['paypal','stripe']); // 处理货币变更 const handleCurrencyChange = async (value: string) => {