1
This commit is contained in:
@@ -42,38 +42,42 @@ export async function orderRefund(bodys) {
|
||||
}
|
||||
|
||||
|
||||
export async function getWeiXinCollect() {
|
||||
export async function getWeiXinCollect(bodys) {
|
||||
return request('/api/orders/getWeiXinCollect', {
|
||||
method: 'GET',
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Content-Type': 'application/json;charset=UTF-8',
|
||||
},
|
||||
data: bodys || {},
|
||||
});
|
||||
}
|
||||
|
||||
export async function getCollect() {
|
||||
export async function getCollect(bodys) {
|
||||
return request('/api/orders/getCollect', {
|
||||
method: 'GET',
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Content-Type': 'application/json;charset=UTF-8',
|
||||
},
|
||||
data: bodys || {},
|
||||
});
|
||||
}
|
||||
|
||||
export async function getBalance() {
|
||||
export async function getBalance(bodys) {
|
||||
return request('/api/orders/getBalance', {
|
||||
method: 'GET',
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Content-Type': 'application/json;charset=UTF-8',
|
||||
},
|
||||
data: bodys || {},
|
||||
});
|
||||
}
|
||||
|
||||
export async function getZhiFuBaoCollect() {
|
||||
export async function getZhiFuBaoCollect(bodys) {
|
||||
return request('/api/orders/getZhiFuBaoCollect', {
|
||||
method: 'GET',
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Content-Type': 'application/json;charset=UTF-8',
|
||||
},
|
||||
data: bodys || {},
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user