hookehuyr

refactor(teacher): 移除点评功能并调整学生页面样式

移除checkinPage中的点评功能相关代码
调整studentPage的标签样式和间距
......@@ -156,7 +156,7 @@
</div>
<!-- 右侧:点评 -->
<div class="flex items-center cursor-pointer" @click="openCommentPopup(post)">
<!-- <div class="flex items-center cursor-pointer" @click="openCommentPopup(post)">
<van-icon
name="comment-o"
:color="post.is_commented ? '#10b981' : '#999'"
......@@ -166,7 +166,7 @@
<span class="text-sm" :class="post.is_commented ? 'text-green-600' : 'text-gray-500'">
{{ post.is_commented ? '已点评' : '点评' }}
</span>
</div>
</div> -->
</div>
</div>
</van-list>
......
......@@ -2,7 +2,7 @@
* @Author: hookehuyr hookehuyr@gmail.com
* @Date: 2025-06-19 17:12:19
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2025-06-20 10:12:20
* @LastEditTime: 2025-06-20 11:41:22
* @FilePath: /mlaj/src/views/teacher/studentPage.vue
* @Description: 学生详情页面
-->
......@@ -28,7 +28,7 @@
</div>
<!-- 标签 -->
<div class="flex flex-wrap gap-2">
<van-tag v-for="tag in studentInfo.tags" :key="tag" type="success" size="large">
<van-tag v-for="tag in studentInfo.tags" :key="tag" type="success" size="large" plain>
{{ tag }}
</van-tag>
</div>
......@@ -90,7 +90,7 @@
</div>
<!-- 功能按钮 -->
<div class="mt-2 px-4">
<div class="mt-4 px-4">
<!-- 状态筛选 -->
<div class="flex items-center justify-end mb-4">
<div @click="showStatusPopup = true" class="flex items-center text-sm text-gray-600 cursor-pointer">
......