This commit is contained in:
2026-04-14 15:54:15 +08:00
parent 0657117ec2
commit 3a38c34ea0
8 changed files with 288 additions and 22 deletions
+5
View File
@@ -25,4 +25,9 @@ export const purchaseApi = {
updateOrder(id, data) {
return api.post('/purchase/updateorder', { id, ...data })
},
/** 删除订单 */
deleteOrder(id) {
return api.post('/purchase/deleteorder', { id })
},
}