diff --git a/index.html b/index.html index 948c9aed..6fcbdeef 100644 --- a/index.html +++ b/index.html @@ -4,7 +4,7 @@ * @Autor: 地虎降天龙 * @Date: 2024-03-07 09:46:12 * @LastEditors: 地虎降天龙 - * @LastEditTime: 2025-03-18 09:39:59 + * @LastEditTime: 2025-03-20 09:06:18 --> @@ -28,8 +28,8 @@ })() - - + + diff --git a/public/plugins/uniAppView/lib/jweixin-1.6.0.js b/public/lib/jweixin-1.6.0.js similarity index 100% rename from public/plugins/uniAppView/lib/jweixin-1.6.0.js rename to public/lib/jweixin-1.6.0.js diff --git a/public/plugins/uniAppView/lib/uni.webview.0.1.52.js b/public/lib/uni.webview.0.1.52.js similarity index 100% rename from public/plugins/uniAppView/lib/uni.webview.0.1.52.js rename to public/lib/uni.webview.0.1.52.js diff --git a/src/plugins/uniAppView/lib/initScript.js b/src/plugins/uniAppView/lib/initScript.js index 726c2bc4..2440fcf3 100644 --- a/src/plugins/uniAppView/lib/initScript.js +++ b/src/plugins/uniAppView/lib/initScript.js @@ -4,7 +4,7 @@ * @Autor: 地虎降天龙 * @Date: 2025-03-05 11:49:24 * @LastEditors: 地虎降天龙 - * @LastEditTime: 2025-03-12 08:14:29 + * @LastEditTime: 2025-03-20 09:06:06 */ export function loadJweixin () { return new Promise((resolve, reject) => { @@ -13,7 +13,7 @@ export function loadJweixin () { return } const script = document.createElement('script') - script.src = '/plugins/uniAppView/lib/jweixin-1.6.0.js'//'https://res.wx.qq.com/open/js/jweixin-1.6.0.js' // 适当更换版本 + script.src = '/lib/jweixin-1.6.0.js'//'https://res.wx.qq.com/open/js/jweixin-1.6.0.js' // 适当更换版本 script.onload = () => resolve(window.wx) script.onerror = reject document.body.appendChild(script) @@ -27,7 +27,7 @@ export function loadWebView () { return } const script = document.createElement('script') - script.src = '/plugins/uniAppView/lib/uni.webview.0.1.52.js'//'https://js.cdn.aliyun.dcloud.net.cn/dev/uni-app/uni.webview.0.1.52.js' // 适当更换版本 + script.src = '/lib/uni.webview.0.1.52.js'//'https://js.cdn.aliyun.dcloud.net.cn/dev/uni-app/uni.webview.0.1.52.js' // 适当更换版本 script.onload = () => resolve(window.wx) script.onerror = reject document.body.appendChild(script)