mirror of
https://gitee.com/ice-gl/icegl-three-vue-tres.git
synced 2025-04-05 06:22:43 +08:00
fix: 独立打包后,uniapp全局库未包含的问题
This commit is contained in:
parent
9664886700
commit
cf11a1b54c
@ -4,7 +4,7 @@
|
|||||||
* @Autor: 地虎降天龙
|
* @Autor: 地虎降天龙
|
||||||
* @Date: 2024-03-07 09:46:12
|
* @Date: 2024-03-07 09:46:12
|
||||||
* @LastEditors: 地虎降天龙
|
* @LastEditors: 地虎降天龙
|
||||||
* @LastEditTime: 2025-03-18 09:39:59
|
* @LastEditTime: 2025-03-20 09:06:18
|
||||||
-->
|
-->
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
@ -28,8 +28,8 @@
|
|||||||
})()
|
})()
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<script src="./plugins/uniAppView/lib/jweixin-1.6.0.js"></script>
|
<script src="./lib/jweixin-1.6.0.js"></script>
|
||||||
<script src="./plugins/uniAppView/lib/uni.webview.0.1.52.js"></script>
|
<script src="./lib/uni.webview.0.1.52.js"></script>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
* @Autor: 地虎降天龙
|
* @Autor: 地虎降天龙
|
||||||
* @Date: 2025-03-05 11:49:24
|
* @Date: 2025-03-05 11:49:24
|
||||||
* @LastEditors: 地虎降天龙
|
* @LastEditors: 地虎降天龙
|
||||||
* @LastEditTime: 2025-03-12 08:14:29
|
* @LastEditTime: 2025-03-20 09:06:06
|
||||||
*/
|
*/
|
||||||
export function loadJweixin () {
|
export function loadJweixin () {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
@ -13,7 +13,7 @@ export function loadJweixin () {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
const script = document.createElement('script')
|
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.onload = () => resolve(window.wx)
|
||||||
script.onerror = reject
|
script.onerror = reject
|
||||||
document.body.appendChild(script)
|
document.body.appendChild(script)
|
||||||
@ -27,7 +27,7 @@ export function loadWebView () {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
const script = document.createElement('script')
|
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.onload = () => resolve(window.wx)
|
||||||
script.onerror = reject
|
script.onerror = reject
|
||||||
document.body.appendChild(script)
|
document.body.appendChild(script)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user