From 09bab17cd5d68b4b2118af9b35a7a355a950c15a Mon Sep 17 00:00:00 2001 From: Eudemon Date: Wed, 19 Mar 2025 18:19:33 +0800 Subject: [PATCH] fixed --- src/components/layout/CommonLayout.vue | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/src/components/layout/CommonLayout.vue b/src/components/layout/CommonLayout.vue index d02e4a5..855a6a9 100644 --- a/src/components/layout/CommonLayout.vue +++ b/src/components/layout/CommonLayout.vue @@ -111,9 +111,14 @@ const handleTouchMove = (e) => { const handleServiceClick = async () => { // openUrl(appStore.FAQ) - uni.navigateTo({ - url: '/pages/account/CustomService' - }) + if (appStore.appId == 101) { + uni.navigateTo({ + url: '/pages/account/CustomService' + }) + } else { + openUrl(appStore.FAQ) + } + }