no message

This commit is contained in:
hawk86104 2025-03-25 18:02:56 +08:00
parent f65e208f96
commit 07aedc6dbb

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-18 09:14:35 * @LastEditTime: 2025-03-25 18:01:44
--> -->
<template> <template>
<FDivider titlePlacement="left">{{ onePlugin.title + ' - ' + onePlugin.name }}</FDivider> <FDivider titlePlacement="left">{{ onePlugin.title + ' - ' + onePlugin.name }}</FDivider>
@ -95,14 +95,14 @@ declare const uni: any
const router = useRouter() const router = useRouter()
// uniapp https://opensource.icegl.cn // uniapp https://oss.icegl.cn
const jumpType = (url: string, addPreUrl: boolean) => { 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) => { uni.getEnv((res: any) => {
if (res.miniprogram) { if (res.miniprogram) {
const u = addPreUrl ? 'https://opensource.icegl.cn' + url : url const u = addPreUrl ? 'https://oss.icegl.cn' + url : url
uni.navigateTo({ uni.navigateTo({
url: '/pages/debugDemo/onePreview/onePreview?urlPath=' + u, url: '/pages/debugDemo/onePreview/onePreview?urlPath=' + u,
}) })
@ -121,7 +121,7 @@ const toPage = (plugin: any, value: any, isOnline = false) => {
path = `/plugins/${plugin.pNode}/${plugin.name}/${value.name}` path = `/plugins/${plugin.pNode}/${plugin.name}/${value.name}`
} }
if (isOnline) { if (isOnline) {
path = 'https://opensource.icegl.cn/#' + path path = 'https://oss.icegl.cn/#' + path
return jumpType(path, false) return jumpType(path, false)
} }
let routeUrl = router.resolve({ let routeUrl = router.resolve({