生产管理

This commit is contained in:
‘937886381’
2024-09-11 10:36:47 +08:00
parent 2ab8a99ff5
commit c847ba1595
11 changed files with 816 additions and 208 deletions

View File

@@ -173,3 +173,26 @@ export function orderSplit(data) {
data
})
}
export function getDetailTree(data) {
return request({
url: 'base/order/getDetailTree',
method: 'get',
params: data
})
}
export function getDetailTreeInfo(data) {
return request({
url: 'base/order/getDetailTreeInfoById',
method: 'get',
params: data
})
}
export function orderStop(data) {
return request({
url: 'base/order/stop',
method: 'post',
params: data
})
}