diff --git a/src/views/circle/detail/components/newsList.vue b/src/views/circle/detail/components/newsList.vue index f27ccbe..51cac89 100644 --- a/src/views/circle/detail/components/newsList.vue +++ b/src/views/circle/detail/components/newsList.vue @@ -6,7 +6,7 @@ infinite-scroll-disabled="disabled" infinite-scroll-immediate="false" > -
  • +
  • {{ item.userType === 1 ? "老师" : "助教" }} + >{{ item.userType === 1 ? "老师" : "助教" }} +
    - {{ item.readCount }}{{ item.totalCount ? `/${item.totalCount}` : "人" }}已读 + + {{ item.readCount ? item.readCount : 0 }} {{ item.totalCount ? `/${item.totalCount}` : "人" }} 已读 +
    @@ -47,10 +47,10 @@ >引用 通过审核{{ item.status !== 2 ? "公开" : "取消公开" }}
    @@ -322,4 +322,9 @@ export default { text-align: center; line-height: 50px; } +.news-opt { + .el-link { + margin-left: 5px; + } +}