修复app白屏bug

This commit is contained in:
weipengfei 2023-10-16 14:48:33 +08:00
parent 7f80e857d1
commit 75ffe4f6af
2 changed files with 4 additions and 4 deletions

View File

@ -350,9 +350,9 @@
});
},
//
setOpenShare: function(data) {
// #ifdef H5
let that = this;
let href = location.href;
href = href.indexOf("?") === -1 ? href + "?spid=" + this.globalData.uid : href + "&spid=" + this
@ -368,6 +368,7 @@
that.$wechat.wechatEvevt(["updateAppMessageShareData", "updateTimelineShareData"],
configAppMessage);
}
// #endif
},
//
getConfigData() {
@ -427,12 +428,14 @@
watch: {
// H5
$route(n) {
// #ifdef H5
if (this.$store.state.app.token) {
//
history({
page: location.pathname + location.search,
}).then(() => {});
}
// #endif
},
}
}

View File

@ -39,7 +39,6 @@ switch (env) {
// 聊天接口修改此字符 小程序聊天要求wss 例如wss://mer.crmeb.net
// let wsApi = 'ws://192.168.3.20:8324'
let wsApi = 'wss://shop.lihaink.cn'
console.log(window.location.protocol, '1111111111')
module.exports = {
// 请求域名 格式: https://您的域名
// #ifdef MP || APP-PLUS
@ -52,8 +51,6 @@ module.exports = {
// #endif
// #ifdef H5
//H5接口是浏览器地址
HTTP_REQUEST_URL: window.location.host == 'localhost:8080' ? httpApi : window.location.protocol + "//" + window
.location.host,