Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
mlaj
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
hookehuyr
2025-06-20 11:44:47 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
f244c2b9e28e2de43644198fef0f7bec583f123d
f244c2b9
1 parent
da8e5509
refactor(teacher): 移除点评功能并调整学生页面样式
移除checkinPage中的点评功能相关代码 调整studentPage的标签样式和间距
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
src/views/teacher/checkinPage.vue
src/views/teacher/studentPage.vue
src/views/teacher/checkinPage.vue
View file @
f244c2b
...
...
@@ -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>
...
...
src/views/teacher/studentPage.vue
View file @
f244c2b
...
...
@@ -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 1
0:12:20
* @LastEditTime: 2025-06-20 1
1: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">
...
...
Please
register
or
login
to post a comment