处理开台

This commit is contained in:
2026-01-11 01:49:45 +08:00
parent 9e957d5dea
commit a14a51d575
26 changed files with 2495 additions and 297 deletions

View File

@@ -5,5 +5,52 @@ function fetchGoods() {
url: "/index/goods"
});
}
function fetchCombos(data) {
return api_request.request({
url: "/index/combos",
data,
method: "POST"
});
}
function fetchRooms(data) {
return api_request.request({
url: "/index/rooms",
data,
method: "POST"
});
}
function fetchBooking(data) {
return api_request.request({
url: "/index/booking",
data,
method: "POST"
});
}
function fetchUnBooking(data) {
return api_request.request({
url: "/index/unbooking",
data,
method: "POST"
});
}
function fetchAddOrder(data) {
return api_request.request({
url: "/index/addOrder",
data,
method: "POST"
});
}
function fetchRoomOrder(roomId) {
return api_request.request({
url: "/index/roomOrder",
data: { roomId }
});
}
exports.fetchAddOrder = fetchAddOrder;
exports.fetchBooking = fetchBooking;
exports.fetchCombos = fetchCombos;
exports.fetchGoods = fetchGoods;
exports.fetchRoomOrder = fetchRoomOrder;
exports.fetchRooms = fetchRooms;
exports.fetchUnBooking = fetchUnBooking;
//# sourceMappingURL=../../.sourcemap/mp-weixin/api/index.js.map