From 120eba6c6ad067eba13d7f61e3a3f1979d9dd840 Mon Sep 17 00:00:00 2001 From: ISFP_T <68358856@qq.com> Date: Mon, 27 Apr 2026 15:23:59 +0800 Subject: [PATCH] fix: payment page uses USD Keep payment page currency display fixed to USD instead of changing with selected payment method. Made-with: Cursor --- subPackages/order/payment.vue | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/subPackages/order/payment.vue b/subPackages/order/payment.vue index bb8aa29..629cd23 100644 --- a/subPackages/order/payment.vue +++ b/subPackages/order/payment.vue @@ -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 () => {