修复app白屏bug
This commit is contained in:
parent
7f80e857d1
commit
75ffe4f6af
5
App.vue
5
App.vue
@ -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
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -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,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user