格式化引导页弹窗显示代码。

This commit is contained in:
weinan2087
2022-10-20 20:01:09 +08:00
parent a2984ca973
commit 215ce72186

View File

@@ -518,8 +518,6 @@
};
},
mounted() {
//this.userInfo = this.$store.getters.userInfo;
//console.log(this.userInfo,'userInfo');
this.getCourseData(1);
this.getCaseData();
this.getArticleData();
@@ -533,11 +531,7 @@
// 控制引导页弹框显示
apiGuide.hasUser().then(res=>{
if(res.result) {
this.$refs.guide.guideCollection = false;
} else {
this.$refs.guide.guideCollection = true;
}
this.$refs.guide.guideCollection = res.result ? false : true;
});
},