22 lines
396 B
JavaScript
22 lines
396 B
JavaScript
|
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
|
||
|
})
|
||
|
}
|