mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-28 20:23:26 +08:00
12 lines
320 B
TypeScript
12 lines
320 B
TypeScript
|
|
import { get, post } from '@/utils/request.ts';
|
||
|
|
|
||
|
|
// 创建订单并发起支付
|
||
|
|
export function createOrder(params: any) {
|
||
|
|
return post<any>(`/pay/Order`, params).json();
|
||
|
|
}
|
||
|
|
|
||
|
|
// 查询订单状态
|
||
|
|
export function getOrderStatus(OutTradeNo: any) {
|
||
|
|
return get<any>(`/pay/OrderStatus?OutTradeNo=${OutTradeNo}`).json();
|
||
|
|
}
|