Onlife/request/api2.js

22 lines
396 B
JavaScript
Raw Normal View History

2025-04-19 15:38:48 +08:00
import jyRequest from "./index";
export function _buyguide(data) {
return jyRequest.post({
url: '/api/pub/buyguide', //購買攻略
data
})
}
export function _buyaccount(data) {
return jyRequest.post({
url: '/api/pub/buyaccount', //購買賬號
data
})
}
export function _payorderres(data) {
return jyRequest.post({
url: '/api/pub/payorderres', //購買成功回調
data
})
}