From 199ec18a69feed39533c71b1dfd75b4590eb9729 Mon Sep 17 00:00:00 2001 From: zoujing Date: Wed, 13 May 2026 15:00:10 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=8E=A2=E7=B4=A2=E5=8F=91=E7=8E=B0?= =?UTF-8?q?=E6=94=B9=E4=B8=BA=E4=BA=86=E6=88=91=E7=9A=84=E8=AE=A2=E5=8D=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/ChatMain/ChatQuickAccess/index.vue | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/pages/ChatMain/ChatQuickAccess/index.vue b/src/pages/ChatMain/ChatQuickAccess/index.vue index 2e1ce16..6cb730a 100644 --- a/src/pages/ChatMain/ChatQuickAccess/index.vue +++ b/src/pages/ChatMain/ChatQuickAccess/index.vue @@ -26,8 +26,8 @@ const itemList = ref([ }, { icon: "", - title: "探索发现", - type: Command.discovery, + title: "我的订单", + type: Command.myOrder, }, { icon: "", @@ -56,6 +56,14 @@ const sendReply = (item) => { return; } + // 我的订单 + if (item.type === Command.myOrder) { + checkToken().then(() => { + uni.navigateTo({ url: "/pages-order/order/list" }); + }); + return; + } + uni.$emit(SEND_MESSAGE_COMMAND_TYPE, item); };