This commit is contained in:
Eudemon 2025-03-19 18:19:33 +08:00
parent 413942871f
commit 09bab17cd5

View File

@ -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)
}
}
</script>