Commit e54f8ff1 authored by Xuguangxing's avatar Xuguangxing

fix

parent dc8bf40f
...@@ -54,14 +54,14 @@ export default { ...@@ -54,14 +54,14 @@ export default {
} }
}, },
$route() { $route() {
store.dispatch('change_show_mini_app_guide', { this.$nextTick(() => {
bool: !isApp && !isWxMp && !isWechat ? true : false, document.querySelectorAll('.cr-overlay').forEach(e => e.parentNode.removeChild(e));
pointer: this store.dispatch('change_show_mini_app_guide', {
bool: !isApp && !isWxMp && !isWechat ? true : false,
pointer: this
});
store.dispatch('change_is_weixin_browser', !isApp && !isWxMp && isWechat ? true : false);
}); });
store.dispatch('change_is_weixin_browser', !isApp && !isWxMp && isWechat ? true : false);
// this.$nextTick(() => {
// document.querySelectorAll('.cr-overlay').forEach(e => e.parentNode.removeChild(e));
// });
} }
}, },
methods: { methods: {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment