liveh5-nuxt/app/api-collect-code/abroad/index.js

20 lines
480 B
JavaScript
Raw Normal View History

2025-05-19 03:34:58 +00:00
import { request } from '@/api-collect-code/http-abroad.js'
2025-05-19 07:12:51 +00:00
// 创建支付订单
2025-05-19 03:34:58 +00:00
export async function abroadCreateOrder(data) {
2025-05-19 07:12:51 +00:00
console.log('data',data);
2025-05-19 03:34:58 +00:00
return await request({
url:"/artshow/overseas/show-pay/createOrder",
method:"POST",
data
})
2025-05-19 07:12:51 +00:00
}
// 获取支付详情
export async function abroadPayInfo(data) {
return await request({
url:"/artshow/overseas/show-pay/info",
method:"POST",
data
})
2025-05-19 03:34:58 +00:00
}