From 8aa4e7973c81f7fd01f2fb07aa337447003eae9b Mon Sep 17 00:00:00 2001 From: zoujing Date: Thu, 23 Jul 2026 10:22:45 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=88=9B=E5=BB=BA=E6=8E=92=E9=98=9F?= =?UTF-8?q?=E7=9A=84=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/model/ChatModel.js | 2 + src/pages-base/queue/index.vue | 16 +++ src/pages.json | 111 +++++++++++---------- src/pages/ChatModule/MoreService/index.vue | 8 ++ 4 files changed, 87 insertions(+), 50 deletions(-) create mode 100644 src/pages-base/queue/index.vue diff --git a/src/model/ChatModel.js b/src/model/ChatModel.js index 06a5e89..c89dc1f 100644 --- a/src/model/ChatModel.js +++ b/src/model/ChatModel.js @@ -99,6 +99,8 @@ export const Command = { myWorkOrder: "Command.myWorkOrder", // 反馈意见 feedbackCard: "Command.feedbackCard", + // 排队 + queue: "Command.queue", // 生成合成图片 aigcPhotoGenerator: "Command.aigcPhotoGenerator", // 旅行AIGC diff --git a/src/pages-base/queue/index.vue b/src/pages-base/queue/index.vue new file mode 100644 index 0000000..e374577 --- /dev/null +++ b/src/pages-base/queue/index.vue @@ -0,0 +1,16 @@ + + + + + \ No newline at end of file diff --git a/src/pages.json b/src/pages.json index add752a..bb002d3 100644 --- a/src/pages.json +++ b/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", diff --git a/src/pages/ChatModule/MoreService/index.vue b/src/pages/ChatModule/MoreService/index.vue index bf7fa9d..c29f88f 100644 --- a/src/pages/ChatModule/MoreService/index.vue +++ b/src/pages/ChatModule/MoreService/index.vue @@ -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: "反馈意见",