This commit is contained in:
PC-202306242200\Administrator
2024-09-26 21:10:41 +08:00
parent 2bac0b8926
commit df17a3cfb7
41 changed files with 246 additions and 46 deletions

View File

@@ -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 || {},
});
}