This commit is contained in:
2025-05-28 23:25:48 +08:00
parent 9a18ef2691
commit 6cd3268908
38 changed files with 1245 additions and 263 deletions

View File

@@ -17,6 +17,27 @@ export function getAgentOrder(id) {
})
}
export function syncOrder(id) {
return request({
url: '/ct/agentOrder/syncOrder/' + id,
method: 'get'
})
}
export function syncExpress(id) {
return request({
url: '/ct/agentOrder/syncExpress/' + id,
method: 'get'
})
}
export function syncOffer(id) {
return request({
url: '/ct/agentOrder/syncOffer/' + id,
method: 'get'
})
}
// 新增订单
export function addAgentOrder(data) {
return request({