feat: 快速预订

This commit is contained in:
2026-07-31 13:05:41 +08:00
parent b7a9d61c37
commit ce6f4d7aa6
7 changed files with 9 additions and 9 deletions

View File

@@ -35,7 +35,7 @@ export const JumpType = {
/// 组件的名称
export const CompName = {
// 快速预卡片
// 快速预卡片
quickBookingCard: "quickBookingCard",
// 服务工单卡片
callServiceCard: "callServiceCard",
@@ -83,7 +83,7 @@ export const CompName = {
export const Command = {
// 通知消息
messageInit: "Command.init",
// 快速预
// 快速预
quickBooking: "Command.quickBooking",
// 探索发现
discovery: "Command.discovery",

View File

@@ -2,7 +2,7 @@
<z-paging ref="paging" v-model="dataList" use-virtual-list :force-close-inner-list="true" cell-height-mode="dynamic"
safe-area-inset-bottom @query="queryList">
<template #top>
<TopNavBar title="快速预" :background="$theme - color - 100" />
<TopNavBar title="快速预" :background="$theme - color - 100" />
<Tabs @change="handleTabChange" />

View File

@@ -25,7 +25,7 @@ const AIGC_HOME_URL = "/pages-aigc/home/home";
const itemList = ref([
{
icon: "",
title: "快速预",
title: "快速预",
type: Command.quickBooking,
},
{
@@ -57,7 +57,7 @@ const sendReply = (item) => {
return;
}
// 快速预
// 快速预
if (item.type === Command.quickBooking) {
checkToken().then(() => {
// uni.navigateTo({ url: "/pages-quick/list" });

View File

@@ -30,7 +30,7 @@ import { SEND_MESSAGE_COMMAND_TYPE } from "@/constant/constant";
const commandModel = ref({
icon: "",
title: "快速预",
title: "快速预",
type: Command.quickBooking,
});

View File

@@ -39,7 +39,7 @@ const popup = ref(null);
const list = ref([
{
icon: "https://oss.nianxx.cn/mp/static/version_101/home/ksyd.png",
title: "快速预",
title: "快速预",
content: "预定门票、房间、餐食",
btnText: "去预定",
type: Command.quickBooking,

View File

@@ -19,7 +19,7 @@ const commodityTypePageList = (args) => {
return request.post("/hotelBiz/commodity/commodityTypePageList", args);
};
// 快速预分页列表
// 快速预分页列表
const quickBookingList = (args) => {
return request.post("/hotelBiz/mainScene/quickBookingList", args);
};

View File

@@ -7,7 +7,7 @@ import { getServiceUrl } from "../api/GetServiceUrlApi";
const versionValue = "1.1.3";
/// 是否是测试版本, 测试版本为 true 发布版本为 false
const developVersion = true;
const developVersion = false;
// 获取服务地址
const getEvnUrl = async () => {