feat: 创建排队的页面
This commit is contained in:
@@ -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
|
||||||
|
|||||||
16
src/pages-base/queue/index.vue
Normal file
16
src/pages-base/queue/index.vue
Normal 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>
|
||||||
@@ -88,6 +88,17 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"subPackages": [
|
"subPackages": [
|
||||||
|
{
|
||||||
|
"root": "pages-base",
|
||||||
|
"pages": [
|
||||||
|
{
|
||||||
|
"path": "queue/index",
|
||||||
|
"style": {
|
||||||
|
"navigationStyle": "custom"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"root": "pages-order",
|
"root": "pages-order",
|
||||||
"pages": [
|
"pages": [
|
||||||
|
|||||||
@@ -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: "反馈意见",
|
||||||
|
|||||||
Reference in New Issue
Block a user