Skip to content

Commit

Permalink
fix: 修复首页轮播图不显示问题
Browse files Browse the repository at this point in the history
  • Loading branch information
okay-xiaomo committed Aug 27, 2024
1 parent 706cee2 commit 82062d9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pages/tabbar/home/home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -204,12 +204,12 @@ export default {
mp4: '',
id: item.metadata.name,
nickname: item.owner.displayName,
avatar: _this.$utils.checkImageUrl(item.owner.avatar),
avatar: _this.$utils.checkAvatarUrl(item.owner.avatar),
address: '',
createTime: uni.$tm.dayjs(item.spec.publishTime).fromNow(),
title: item.spec.title,
src: _this.$utils.checkImageUrl(item.spec.cover),
image: _this.$utils.checkImageUrl(item.spec.cover)
src: _this.$utils.checkThumbnailUrl(item.spec.cover),
image: _this.$utils.checkThumbnailUrl(item.spec.cover)
};
});
};
Expand Down

0 comments on commit 82062d9

Please sign in to comment.