diff --git a/CoreCms.Net.Uni-App/CoreShop/components/coreshop-login-modal/coreshop-login-modal.vue b/CoreCms.Net.Uni-App/CoreShop/components/coreshop-login-modal/coreshop-login-modal.vue index 83aa6fbc..32d7daa5 100644 --- a/CoreCms.Net.Uni-App/CoreShop/components/coreshop-login-modal/coreshop-login-modal.vue +++ b/CoreCms.Net.Uni-App/CoreShop/components/coreshop-login-modal/coreshop-login-modal.vue @@ -407,7 +407,11 @@ }, fail: function (res) { //console.log(res); - _this.$refs.uToast.show({ message: '用户授权失败wx.login,请重试', type: 'error', }) + var scene = this.$store.state.scene; + //判断是否为 朋友圈内打开“单页模式",单页模式下,数据交互无法执行。所以不进行提醒 + if (scene != 1154) { + _this.$refs.uToast.show({ message: '用户授权失败wx.login,请重试', type: 'error', }) + } } }) },