mirror of
https://gitee.com/likeadmin/likeadmin_java.git
synced 2026-09-06 23:01:08 +08:00
17 lines
422 B
TypeScript
17 lines
422 B
TypeScript
import request from '@/utils/request'
|
|
|
|
//支付方式
|
|
export function getPayWay(data: any) {
|
|
return request.get({ url: '/pay/payWay', data }, { isAuth: true })
|
|
}
|
|
|
|
// 预支付
|
|
export function prepay(data: any) {
|
|
return request.post({ url: '/pay/prepay', data }, { isAuth: true })
|
|
}
|
|
|
|
// 预支付
|
|
export function getPayResult(data: any) {
|
|
return request.get({ url: '/pay/payStatus', data }, { isAuth: true })
|
|
}
|