This commit is contained in:
2025-12-31 11:47:21 +08:00
3 changed files with 23 additions and 1 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;