up
This commit is contained in:
@@ -35,4 +35,9 @@ export const purchaseApi = {
|
||||
deleteOrder(id) {
|
||||
return api.post('/purchase/deleteorder', { id })
|
||||
},
|
||||
|
||||
/** 删除状态记录 */
|
||||
deleteCommit(orderId, commitId) {
|
||||
return api.post('/purchase/delete_commit', { orderId, commitId })
|
||||
},
|
||||
}
|
||||
|
||||
@@ -40,4 +40,9 @@ export const workOrderApi = {
|
||||
searchPurchaseOrders(search = '', limit = 5) {
|
||||
return api.post('/work_order/search_purchase_orders', { search, limit })
|
||||
},
|
||||
|
||||
/** 删除进度 */
|
||||
deleteCommit(workOrderId, commitId) {
|
||||
return api.post('/work_order/delete_commit', { workOrderId, commitId })
|
||||
},
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user