diff --git a/src/components/Portal/guideBox.vue b/src/components/Portal/guideBox.vue index 02a31ead..952df9c5 100644 --- a/src/components/Portal/guideBox.vue +++ b/src/components/Portal/guideBox.vue @@ -73,13 +73,15 @@ created() { //这里必须放在当前的Session存储中,不能每次都调用 apiGuide.hasUser().then(res=>{ - if(res.result) { - this.guideCollection = false; - } else { - this.guideCollection = true; - //只是在显示时才调用 - this.getlist(); - } + // if(res.result) { + // this.guideCollection = false; + // } else { + // this.guideCollection = true; + // //只是在显示时才调用 + // this.getlist(); + // } + this.guideCollection = true; + this.getlist(); }); },