hookehuyr

style(StudentInfo): 移除注释代码并调整查看更多按钮的上边距

1 <!-- 1 <!--
2 * @Date: 2025-11-10 18:12:23 2 * @Date: 2025-11-10 18:12:23
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2025-11-12 17:07:59 4 + * @LastEditTime: 2025-11-12 20:26:46
5 * @FilePath: /stdj_h5/src/views/StudentInfo.vue 5 * @FilePath: /stdj_h5/src/views/StudentInfo.vue
6 * @Description: 戒子详情页 6 * @Description: 戒子详情页
7 --> 7 -->
...@@ -11,8 +11,9 @@ ...@@ -11,8 +11,9 @@
11 <div class="item-card"> 11 <div class="item-card">
12 <img :src="student_info.src" :alt="student_info.title" class="item-image" /> 12 <img :src="student_info.src" :alt="student_info.title" class="item-image" />
13 <div class="item-content"> 13 <div class="item-content">
14 - <div class="item-role">{{ student_info.name }}</div> 14 + <!-- <div class="item-role">{{ student_info.name }}</div> -->
15 - <div class="item-name" v-html="formatNameWithSuperscript(student_info.courtesy_name)"></div> 15 + <!-- <div class="item-name" v-html="formatNameWithSuperscript(student_info.courtesy_name)"></div> -->
16 + <div class="item-name">{{ student_info.name }}</div>
16 <div class="item-group-title">{{ student_info.group_title }}</div> 17 <div class="item-group-title">{{ student_info.group_title }}</div>
17 <div class="item-desc" v-html="student_info.desc"></div> 18 <div class="item-desc" v-html="student_info.desc"></div>
18 </div> 19 </div>
...@@ -209,6 +210,7 @@ const viewMore = () => { ...@@ -209,6 +210,7 @@ const viewMore = () => {
209 .more-button { 210 .more-button {
210 position: static; 211 position: static;
211 margin: 1rem auto; 212 margin: 1rem auto;
213 + margin-top: 4rem;
212 height: 2.5rem; 214 height: 2.5rem;
213 width: 8rem; 215 width: 8rem;
214 display: flex; 216 display: flex;
......