feat: 创建排队的页面
This commit is contained in:
@@ -99,6 +99,8 @@ export const Command = {
|
||||
myWorkOrder: "Command.myWorkOrder",
|
||||
// 反馈意见
|
||||
feedbackCard: "Command.feedbackCard",
|
||||
// 排队
|
||||
queue: "Command.queue",
|
||||
// 生成合成图片
|
||||
aigcPhotoGenerator: "Command.aigcPhotoGenerator",
|
||||
// 旅行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>
|
||||
111
src/pages.json
111
src/pages.json
@@ -88,6 +88,17 @@
|
||||
}
|
||||
],
|
||||
"subPackages": [
|
||||
{
|
||||
"root": "pages-base",
|
||||
"pages": [
|
||||
{
|
||||
"path": "queue/index",
|
||||
"style": {
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"root": "pages-order",
|
||||
"pages": [
|
||||
@@ -158,56 +169,56 @@
|
||||
{
|
||||
"root": "pages-aigc",
|
||||
"pages": [
|
||||
{
|
||||
"path": "home/home",
|
||||
"style": {
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "agreement/agreement",
|
||||
"style": {
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "useTemplate/useTemplate",
|
||||
"style": {
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "progress/progress",
|
||||
"style": {
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "detail/detail",
|
||||
"style": {
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "sharedWork/sharedWork",
|
||||
"style": {
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pointsDetails/pointsDetails",
|
||||
"style": {
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "record/record",
|
||||
"style": {
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
{
|
||||
"path": "home/home",
|
||||
"style": {
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "agreement/agreement",
|
||||
"style": {
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "useTemplate/useTemplate",
|
||||
"style": {
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "progress/progress",
|
||||
"style": {
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "detail/detail",
|
||||
"style": {
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "sharedWork/sharedWork",
|
||||
"style": {
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pointsDetails/pointsDetails",
|
||||
"style": {
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "record/record",
|
||||
"style": {
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"globalStyle": {
|
||||
"navigationBarTextstyle": "black",
|
||||
|
||||
@@ -69,6 +69,14 @@ const list = ref([
|
||||
// type: Command.myWorkOrder,
|
||||
// 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",
|
||||
title: "反馈意见",
|
||||
|
||||
Reference in New Issue
Block a user