This commit is contained in:
2026-04-14 12:14:45 +08:00
parent 4c16617e6c
commit 126e15dfa9
11 changed files with 684 additions and 14 deletions
+5
View File
@@ -20,4 +20,9 @@ export const purchaseApi = {
updateOrderStatus(id, status, comment = '', photos = []) {
return api.post('/purchase/updatestatus', { id, status, comment, photos })
},
/** 编辑订单基本信息(标题/备注/链接/款式/费用/图片) */
updateOrder(id, data) {
return api.post('/purchase/updateorder', { id, ...data })
},
}