部分修改

This commit is contained in:
PC-202306242200\Administrator
2024-09-26 09:37:53 +08:00
parent dd71064775
commit e1647dcdda
60 changed files with 623 additions and 124 deletions

View File

@@ -41,3 +41,39 @@ export async function orderRefund(bodys) {
});
}
export async function getWeiXinCollect() {
return request('/api/orders/getWeiXinCollect', {
method: 'GET',
headers: {
'Content-Type': 'application/json;charset=UTF-8',
},
});
}
export async function getCollect() {
return request('/api/orders/getCollect', {
method: 'GET',
headers: {
'Content-Type': 'application/json;charset=UTF-8',
},
});
}
export async function getBalance() {
return request('/api/orders/getBalance', {
method: 'GET',
headers: {
'Content-Type': 'application/json;charset=UTF-8',
},
});
}
export async function getZhiFuBaoCollect() {
return request('/api/orders/getZhiFuBaoCollect', {
method: 'GET',
headers: {
'Content-Type': 'application/json;charset=UTF-8',
},
});
}