diff --git a/App.vue b/App.vue index b26bfb7..e2d92bf 100644 --- a/App.vue +++ b/App.vue @@ -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 }, } } diff --git a/config/app.js b/config/app.js index 582b474..2df82ac 100644 --- a/config/app.js +++ b/config/app.js @@ -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,