feat: 创建排队的页面

This commit is contained in:
2026-07-23 10:22:45 +08:00
parent 987e3cfefc
commit 8aa4e7973c
4 changed files with 87 additions and 50 deletions

View File

@@ -99,6 +99,8 @@ export const Command = {
myWorkOrder: "Command.myWorkOrder", myWorkOrder: "Command.myWorkOrder",
// 反馈意见 // 反馈意见
feedbackCard: "Command.feedbackCard", feedbackCard: "Command.feedbackCard",
// 排队
queue: "Command.queue",
// 生成合成图片 // 生成合成图片
aigcPhotoGenerator: "Command.aigcPhotoGenerator", aigcPhotoGenerator: "Command.aigcPhotoGenerator",
// 旅行AIGC // 旅行AIGC

View File

@@ -0,0 +1,16 @@
<template >
<view class="flex flex-col bg-liner h-screen overflow-hidden">
<TopNavBar title="初游攻略" background="transparent" />
</view>
</template>
<script setup>
import TopNavBar from "@/components/TopNavBar/index.vue";
</script>
<style scoped lang="scss">
</style>

View File

@@ -88,6 +88,17 @@
} }
], ],
"subPackages": [ "subPackages": [
{
"root": "pages-base",
"pages": [
{
"path": "queue/index",
"style": {
"navigationStyle": "custom"
}
}
]
},
{ {
"root": "pages-order", "root": "pages-order",
"pages": [ "pages": [

View File

@@ -69,6 +69,14 @@ const list = ref([
// type: Command.myWorkOrder, // type: Command.myWorkOrder,
// path: "/pages-service/order/list", // path: "/pages-service/order/list",
// }, // },
{
icon: "https://oss.nianxx.cn/mp/static/version_101/home/wdgd.png",
title: "排队服务",
content: "查看排队服务、进度与处理情况",
btnText: "去查看",
type: Command.queue,
path: "/pages-base/queue/index",
},
{ {
icon: "https://oss.nianxx.cn/mp/static/version_101/home/fkyj.png", icon: "https://oss.nianxx.cn/mp/static/version_101/home/fkyj.png",
title: "反馈意见", title: "反馈意见",