feat: paypal中英文适配
This commit is contained in:
@@ -1,8 +1,12 @@
|
||||
import { loadScript } from "@paypal/paypal-js";
|
||||
import { payPalOrders, payPalCapture } from '@/service/api/payment';
|
||||
import { useAppStore } from '@/store/modules/app';
|
||||
|
||||
const appStore = useAppStore();
|
||||
const locale = appStore.locale.includes("zh") ? "zh_CN" : "en_US"
|
||||
|
||||
export const constructPaypalBtn = async(orderId: number, currency: string) =>{
|
||||
loadScript({ clientId: import.meta.env.VITE_PAYPAL_CLIENT_ID, disableFunding: ["paylater"], currency })
|
||||
loadScript({ clientId: import.meta.env.VITE_PAYPAL_CLIENT_ID, currency, locale: locale })
|
||||
.then((paypal: any) => {
|
||||
paypal
|
||||
.Buttons({
|
||||
|
||||
Reference in New Issue
Block a user