fix: bug修复

This commit is contained in:
kaizheng(郑凯) 2025-03-04 12:13:15 +08:00
parent 4afc57d819
commit eff0bcb677
3 changed files with 2 additions and 3 deletions

View File

@ -87,7 +87,7 @@ export default {
item.isForbidden = 1; item.isForbidden = 1;
item.joinTime = item.startTime; item.joinTime = item.startTime;
item.expireTime = item.endTime; item.expireTime = item.endTime;
item.headPicUrl = item.userHeadPic; // item.userHeadPicUrl = item.userHeadPic; //
this.userIdsObj[item.userId] = item; this.userIdsObj[item.userId] = item;
}); });
this.list = this.list.concat(list); this.list = this.list.concat(list);

View File

@ -14,7 +14,7 @@
</dt> </dt>
<dd v-for="item in list" :key="item.id"> <dd v-for="item in list" :key="item.id">
<div> <div>
<img :src="item.headPicUrl || defaultAvatar.student" alt="" /> <img :src="item.userHeadPicUrl || defaultAvatar.student" alt="" />
</div> </div>
<div> <div>
<div> <div>

View File

@ -86,7 +86,6 @@ export default {
list.splice(index, 1); list.splice(index, 1);
} else { } else {
this.userIdsObj[item.userId] = item; this.userIdsObj[item.userId] = item;
item.isForbidden = item.commentBlackStatus; // 1 2
} }
}); });
this.list = this.list.concat(list); this.list = this.list.concat(list);