feat: 新增快速预定页面

This commit is contained in:
duanshuwen
2025-10-18 15:44:48 +08:00
parent d71e63b666
commit 4b066626cf
13 changed files with 624 additions and 9 deletions

View File

@@ -52,7 +52,7 @@ const list = ref([
content: "预定门票、房间、餐食",
btnText: "去预定",
type: Command.quickBooking,
path: "",
path: "/pages-quick/list",
},
{
icon: "https://oss.nianxx.cn/mp/static/version_101/home/tsfx.png",
@@ -98,10 +98,12 @@ const close = () => {
const handleClick = (item) => {
close();
if (item.path) {
uni.navigateTo({ url: item.path });
return;
}
uni.$emit(SEND_MESSAGE_COMMAND_TYPE, item);
};