2
0

feat:默认选择paypal和stripe

This commit is contained in:
zhongzm
2025-04-28 16:48:49 +08:00
parent 84e23675ab
commit c23a76069d

View File

@@ -200,12 +200,12 @@ const getUnitText = (unit: number) => {
// 支付方式配置 // 支付方式配置
const paymentOptions = [ const paymentOptions = [
{ label: 'PayPal', value: 'paypal' },
{ label: 'Stripe', value: 'stripe' },
{ label: 'Alipay', value: 'alipay' }, { label: 'Alipay', value: 'alipay' },
{ label: 'WeChat Pay', value: 'wxpay' }, { label: 'WeChat Pay', value: 'wxpay' },
{ label: 'PayPal', value: 'paypal' },
{ label: 'Stripe', value: 'stripe' }
]; ];
const selectedPaymentMethods = ref<string[]>([]); const selectedPaymentMethods = ref<string[]>(['paypal','stripe']);
// 处理货币变更 // 处理货币变更
const handleCurrencyChange = async (value: string) => { const handleCurrencyChange = async (value: string) => {