增加转桌功能,删除部分图片,修复订单列表显示价格不对问题

This commit is contained in:
2026-03-28 13:27:47 +08:00
parent ce84ecc537
commit fa001aaff1
22 changed files with 1818 additions and 1556 deletions

16
http/api/order/order.js Normal file
View File

@@ -0,0 +1,16 @@
import http from "@/http/http.js";
const request = http.request;
const urlType = "order";
export function mergeOrder(data) {
return request({
url: urlType + '/admin/order/mergeOrder',
method: "POST",
data: {
...data,
},
});
}