This commit is contained in:
‘937886381’
2024-08-01 16:33:56 +08:00
161 changed files with 20769 additions and 10341 deletions

View File

@@ -125,7 +125,7 @@ export function orderAssignmentList(query) {
// 获得所有客户列表
export function customerList() {
return request({
url: '/base/core-customer/listAll',
url: 'base/core-customer/listAll',
method: 'get'
})
}
@@ -155,4 +155,13 @@ export function orderFinish(query) {
method: 'post',
params: query
})
}
}
// 作废订单
export function orderVoid(data) {
return request({
url: 'base/order/invalid',
method: 'put',
data
})
}