提交修改

This commit is contained in:
daihh
2022-10-29 17:02:06 +08:00
parent f93810f918
commit 2e60e7305f
2 changed files with 2 additions and 3 deletions

View File

@@ -497,7 +497,7 @@
}, },
data() { data() {
return { return {
showLoginMedal:false,//是否显示登录勋章 showLoginMedal:true,//是否显示登录勋章
lastStudy:{}, lastStudy:{},
overlayShow:false, overlayShow:false,
userData: { uvalue:0, totalStudyHour:0 }, userData: { uvalue:0, totalStudyHour:0 },

View File

@@ -127,8 +127,7 @@
created() { created() {
apiFollow.list().then(res=>{ apiFollow.list().then(res=>{
if(res.status == 200) { if(res.status == 200) {
this.followIds = res.result.map(item=>item.followId); this.followIds = res.result;
this.followIds.push(this.userInfo.aid)
this.getList() this.getList()
} }
}) })