lex-xin 5 months ago
parent
commit
d14fbaa71c

BIN
src/views/studentList/images/icon_member.png


+ 17 - 1
src/views/studentList/index.vue

@@ -38,7 +38,15 @@
       >
         <van-cell is-link center>
           <template #icon>
-            <van-image class="studentLogo" :src="item.avatar || iconStudent" />
+            <div style="position: relative;">
+              <van-image class="studentLogo" :src="item.avatar || iconStudent" />
+              <img
+                v-if="item.cloudTeacherOrderList && item.cloudTeacherOrderList.length > 0"
+                class="iconMember"
+                src="./images/icon_member.png"
+                alt=""
+              />
+            </div>
           </template>
           <template #title>
             <div style="display: flex; align-items: center; font-size: 0.16rem">
@@ -207,4 +215,12 @@ export default {
   margin-right: 10px;
   overflow: hidden;
 }
+
+.iconMember {
+  width: .18rem;
+  height: .18rem;
+  position: absolute;
+  top: -.01rem;
+  right: .09rem;
+}
 </style>

+ 17 - 6
src/views/studentList/studentDetail.vue

@@ -44,11 +44,13 @@
     </van-cell-group>
 
     <div class="title" v-if="musicGroupList.length > 0"><i></i>乐团信息</div>
-    <van-cell-group inset style="margin: 0.1rem 0.12rem">
-      <van-cell v-for="(item, index) in musicGroupList" :key="index" :label="item.musicGroupId" center>
+    <van-cell-group inset style="margin: 0.1rem 0.12rem" :border="false">
+      <van-cell v-for="(item, index) in musicGroupList" :key="index" :label="item.musicGroupId" center >
         <template #title>
-          <span style="font-weight: bold;font-size: .16rem;">{{ item.musicGroupName }}</span>
-          <span :class="item.userMusicGroupStatus">{{ item.userMusicGroupStatus | musicGroupStudentType }}</span>
+          <div class="musicTitle">
+            <span class="musicName">{{ item.musicGroupName }}</span>
+            <span :class="item.userMusicGroupStatus">{{ item.userMusicGroupStatus | musicGroupStudentType }}</span>
+          </div>
         </template>
       </van-cell>
     </van-cell-group>
@@ -180,6 +182,14 @@ export default {
   }
 }
 
+.musicTitle {
+  // display: flex;
+  // align-items: center;
+  .musicName {
+    font-weight: bold;font-size: .16rem;
+    vertical-align: middle;
+  }
+}
 .NORMAL,
 .QUIT,
 .APPLY {
@@ -189,8 +199,8 @@ export default {
   margin-left: .08rem;
   color: #999999;
   line-height: 0.18rem;
-  padding: 0.02rem 0.08rem;
-  vertical-align: text-bottom;
+  padding: 0.01rem 0.06rem;
+  vertical-align: baseline
 }
 
 .NORMAL {
@@ -220,6 +230,7 @@ export default {
   font-size: .14rem;
 }
 
+
 .memberSection {
   margin: 0.1rem 0.12rem;
   background-color: #fff;