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 () => { const handleServiceClick = async () => {
// openUrl(appStore.FAQ) // openUrl(appStore.FAQ)
uni.navigateTo({ if (appStore.appId == 101) {
url: '/pages/account/CustomService' uni.navigateTo({
}) url: '/pages/account/CustomService'
})
} else {
openUrl(appStore.FAQ)
}
} }
</script> </script>