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

View File

@ -55,7 +55,7 @@
<script setup lang="ts">
import { Home, Aperture, DiceOutline, SparklesOutline, ArrowBackCircleOutline } from '@vicons/ionicons5'
import { NIcon, NFloatButton } from 'naive-ui'
import { onMounted,ref } from 'vue'
import { onMounted, ref } from 'vue'
import { loadJweixin, loadWebView } from 'PLS/uniAppView/lib/initScript'
declare const uni: any
@ -65,8 +65,12 @@ onMounted(async () => {
await loadJweixin()
await loadWebView()
if (uni.getEnv) {
uni.getEnv((res: any) => {
if (res.miniprogram) {
showb.value = true
}
})
}
})
const toHomeRouter = () => {