mirror of
https://gitee.com/ice-gl/icegl-three-vue-tres.git
synced 2025-04-05 06:22:43 +08:00
fix: 微信公众号 无法跳转 ,增加小程序的参数 判断
This commit is contained in:
parent
8097cd0f5e
commit
e3799c2311
@ -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,9 +90,15 @@ const jumpType = (url: string, addPreUrl: boolean) => {
|
|||||||
if (!uni.getEnv) {
|
if (!uni.getEnv) {
|
||||||
window.open(url, '_blank')
|
window.open(url, '_blank')
|
||||||
} else {
|
} else {
|
||||||
const u = addPreUrl ? 'https://opensource.icegl.cn' + url : url
|
uni.getEnv((res: any) => {
|
||||||
uni.navigateTo({
|
if (res.miniprogram) {
|
||||||
url: '/pages/debugDemo/onePreview/onePreview?urlPath=' + u,
|
const u = addPreUrl ? 'https://opensource.icegl.cn' + url : url
|
||||||
|
uni.navigateTo({
|
||||||
|
url: '/pages/debugDemo/onePreview/onePreview?urlPath=' + u,
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
window.open(url, '_blank')
|
||||||
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -39,8 +39,8 @@
|
|||||||
<template #description> <sapn style="color: #2d76d5">关于</sapn> </template>
|
<template #description> <sapn style="color: #2d76d5">关于</sapn> </template>
|
||||||
</n-float-button>
|
</n-float-button>
|
||||||
</div>
|
</div>
|
||||||
<div style="display: flex" v-show="!showb">
|
<div style="display: flex" v-show="!showb">
|
||||||
<n-float-button shape="square" @click="toHomeRouter">
|
<n-float-button shape="square" @click="toHomeRouter">
|
||||||
<n-icon color="#2D76D5">
|
<n-icon color="#2D76D5">
|
||||||
<Home />
|
<Home />
|
||||||
</n-icon>
|
</n-icon>
|
||||||
@ -55,7 +55,7 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { Home, Aperture, DiceOutline, SparklesOutline, ArrowBackCircleOutline } from '@vicons/ionicons5'
|
import { Home, Aperture, DiceOutline, SparklesOutline, ArrowBackCircleOutline } from '@vicons/ionicons5'
|
||||||
import { NIcon, NFloatButton } from 'naive-ui'
|
import { NIcon, NFloatButton } from 'naive-ui'
|
||||||
import { onMounted,ref } from 'vue'
|
import { onMounted, ref } from 'vue'
|
||||||
import { loadJweixin, loadWebView } from 'PLS/uniAppView/lib/initScript'
|
import { loadJweixin, loadWebView } from 'PLS/uniAppView/lib/initScript'
|
||||||
|
|
||||||
declare const uni: any
|
declare const uni: any
|
||||||
@ -64,13 +64,17 @@ const showb = ref(false)
|
|||||||
onMounted(async () => {
|
onMounted(async () => {
|
||||||
await loadJweixin()
|
await loadJweixin()
|
||||||
await loadWebView()
|
await loadWebView()
|
||||||
if (uni.getEnv) {
|
if (uni.getEnv) {
|
||||||
showb.value = true
|
uni.getEnv((res: any) => {
|
||||||
|
if (res.miniprogram) {
|
||||||
|
showb.value = true
|
||||||
|
}
|
||||||
|
})
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
const toHomeRouter = () => {
|
const toHomeRouter = () => {
|
||||||
window.open('https://oss.icegl.cn/', '_blank')
|
window.open('https://oss.icegl.cn/', '_blank')
|
||||||
}
|
}
|
||||||
const toBack = () => {
|
const toBack = () => {
|
||||||
uni.navigateBack()
|
uni.navigateBack()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user