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) + } + }