新增订单打印

This commit is contained in:
gyq
2025-12-30 14:25:37 +08:00
parent d96009bf6f
commit 01c2cbcfb4
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;