This commit is contained in:
2026-01-05 13:53:12 +08:00
33 changed files with 1407 additions and 280 deletions

View File

@@ -64,6 +64,14 @@ const OrderApi = {
data
});
},
// 订单打印
printOrder(data: any) {
return request<any>({
url: `${baseURL}/print`,
method: "post",
data
});
},
};
export default OrderApi;