This commit is contained in:
2026-04-23 16:42:10 +08:00
parent dac1102ae5
commit 6b68eb254e
10 changed files with 280 additions and 16 deletions
+5
View File
@@ -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 })
},
}