fix: 微信公众号 无法跳转 ,增加小程序的参数 判断

This commit is contained in:
hawk86104 2025-03-18 08:49:45 +08:00
parent 8097cd0f5e
commit e3799c2311
2 changed files with 20 additions and 10 deletions

View File

@ -4,7 +4,7 @@
* @Autor: 地虎降天龙 * @Autor: 地虎降天龙
* @Date: 2023-11-03 16:02:49 * @Date: 2023-11-03 16:02:49
* @LastEditors: 地虎降天龙 * @LastEditors: 地虎降天龙
* @LastEditTime: 2025-03-11 10:25:28 * @LastEditTime: 2025-03-18 08:44:36
--> -->
<template> <template>
<FDivider titlePlacement="left">{{ props.onePlugin.title + ' - ' + props.onePlugin.name }}</FDivider> <FDivider titlePlacement="left">{{ props.onePlugin.title + ' - ' + props.onePlugin.name }}</FDivider>
@ -90,10 +90,16 @@ const jumpType = (url: string, addPreUrl: boolean) => {
if (!uni.getEnv) { if (!uni.getEnv) {
window.open(url, '_blank') window.open(url, '_blank')
} else { } else {
uni.getEnv((res: any) => {
if (res.miniprogram) {
const u = addPreUrl ? 'https://opensource.icegl.cn' + url : url const u = addPreUrl ? 'https://opensource.icegl.cn' + url : url
uni.navigateTo({ uni.navigateTo({
url: '/pages/debugDemo/onePreview/onePreview?urlPath=' + u, url: '/pages/debugDemo/onePreview/onePreview?urlPath=' + u,
}) })
} else {
window.open(url, '_blank')
}
})
} }
} }
const toPage = (plugin: any, value: any, isOnline = false) => { const toPage = (plugin: any, value: any, isOnline = false) => {

View File

@ -65,9 +65,13 @@ onMounted(async () => {
await loadJweixin() await loadJweixin()
await loadWebView() await loadWebView()
if (uni.getEnv) { if (uni.getEnv) {
uni.getEnv((res: any) => {
if (res.miniprogram) {
showb.value = true showb.value = true
} }
}) })
}
})
const toHomeRouter = () => { const toHomeRouter = () => {
window.open('https://oss.icegl.cn/', '_blank') window.open('https://oss.icegl.cn/', '_blank')