From 0652fd644efdef21bd34dbd5397e757523af475f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?kaizheng=28=E9=83=91=E5=87=AF=29?= Date: Thu, 27 Feb 2025 16:14:55 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=A2=9E=E5=8A=A0=E5=8F=96=E6=B6=88?= =?UTF-8?q?=E5=85=AC=E5=BC=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../circle/detail/components/newsList.vue | 25 +++++++++++-------- 1 file changed, 15 insertions(+), 10 deletions(-) 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; + } +}