|
|
@@ -174,11 +174,11 @@ export const getBookingBusinessHours = (params: { settingsId?: number | string }
|
|
|
};
|
|
|
|
|
|
/** 分类下桌号是否有预定(true 则不可编辑/删除分类) */
|
|
|
-export const getHasReservation = (params: { id: number | string }) => {
|
|
|
- return httpApi.get(`/store/booking/category/hasReservation`, params);
|
|
|
+export const getHasReservation = (params: any) => {
|
|
|
+ return httpApi.get(`/alienStore/store/booking/category/hasReservation`, params);
|
|
|
};
|
|
|
|
|
|
/** 桌位是否有预定(true 则不可编辑/删除该桌) */
|
|
|
-export const getTableHasReservation = (params: { id: number | string }) => {
|
|
|
- return httpApi.get(`/store/booking/table/hasReservation`, params);
|
|
|
+export const getTableHasReservation = (params: any) => {
|
|
|
+ return httpApi.get(`/alienStore/store/booking/table/hasReservation`, params);
|
|
|
};
|