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

View File

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