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,9 +90,15 @@ const jumpType = (url: string, addPreUrl: boolean) => {
if (!uni.getEnv) {
window.open(url, '_blank')
} else {
const u = addPreUrl ? 'https://opensource.icegl.cn' + url : url
uni.navigateTo({
url: '/pages/debugDemo/onePreview/onePreview?urlPath=' + u,
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')
}
})
}
}

View File

@ -39,8 +39,8 @@
<template #description> <sapn style="color: #2d76d5">关于</sapn> </template>
</n-float-button>
</div>
<div style="display: flex" v-show="!showb">
<n-float-button shape="square" @click="toHomeRouter">
<div style="display: flex" v-show="!showb">
<n-float-button shape="square" @click="toHomeRouter">
<n-icon color="#2D76D5">
<Home />
</n-icon>
@ -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
@ -64,13 +64,17 @@ const showb = ref(false)
onMounted(async () => {
await loadJweixin()
await loadWebView()
if (uni.getEnv) {
showb.value = true
if (uni.getEnv) {
uni.getEnv((res: any) => {
if (res.miniprogram) {
showb.value = true
}
})
}
})
const toHomeRouter = () => {
window.open('https://oss.icegl.cn/', '_blank')
window.open('https://oss.icegl.cn/', '_blank')
}
const toBack = () => {
uni.navigateBack()