fix: payment page uses USD

Keep payment page currency display fixed to USD instead of changing with selected payment method.

Made-with: Cursor
This commit is contained in:
2026-04-27 15:23:59 +08:00
parent 555035388a
commit 120eba6c6a
+1 -7
View File
@@ -156,13 +156,7 @@
return deposit.toFixed(2)
})
const getCurrencySymbolByMethod = (methodType) => {
if (methodType === 'ALIPAY_ID') return 'Rp'
if (methodType === 'ALIPAY_HK') return 'HK$'
return '¥'
}
const currencySymbol = computed(() => getCurrencySymbolByMethod(selectedPaymentMethod.value))
const currencySymbol = computed(() => 'USD')
// 加载订单信息
const loadOrderInfo = async () => {