|
@@ -41,21 +41,20 @@
|
|
|
>
|
|
|
<template slot="icon">
|
|
|
<van-icon class="iconMusic" :name="MusicIcon" />
|
|
|
+ <div class='icon' v-if="item.rankIds">
|
|
|
+ <img src='./icons/vip_icon.png' />
|
|
|
+ </div>
|
|
|
</template>
|
|
|
<template slot="title">
|
|
|
<!-- {{ item.examSongName }} -->
|
|
|
<van-notice-bar
|
|
|
background="none"
|
|
|
+ :style="{ paddingLeft: (item.rankIds ? '.04rem' : '.15rem') + '!important' }"
|
|
|
color="#444"
|
|
|
:scrollable="false"
|
|
|
:text="item.examSongName"
|
|
|
/>
|
|
|
</template>
|
|
|
- <template #extra v-if="item.rankIds">
|
|
|
- <div class='icon'>
|
|
|
- <img src='./icons/vip_icon.png' />
|
|
|
- </div>
|
|
|
- </template>
|
|
|
</van-cell>
|
|
|
</van-cell-group>
|
|
|
</van-list>
|
|
@@ -200,6 +199,7 @@ export default {
|
|
|
.accompanimentModal {
|
|
|
background-color: #f5f5f5;
|
|
|
min-height: 100vh;
|
|
|
+
|
|
|
/deep/.van-search {
|
|
|
.van-cell {
|
|
|
font-size: 0.14rem;
|
|
@@ -240,8 +240,10 @@ export default {
|
|
|
.icon{
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
+ margin-left: .15rem;
|
|
|
img{
|
|
|
- width: 49PX;
|
|
|
+ width: .4rem;
|
|
|
+ // margin-top: -.02rem;
|
|
|
}
|
|
|
}
|
|
|
|