|
@@ -300,10 +300,11 @@ onActivated(()=>{//解决从详情返回到列表 分享时还是详情问题
|
|
|
v-if="item.firstActivityTypeId===1&&item.activityState===3&&item.hasPlayBack"
|
|
|
@click.stop="handleGetAudio(item)"
|
|
|
>
|
|
|
- <img
|
|
|
- class="icon-audio"
|
|
|
+ <span
|
|
|
+ :class="['icon-audio',$store.state.audioData.activityId==item.activityId?$store.state.audioData.paused?'icon-audio-paused':'icon-audio-play':'icon-audio-default']"
|
|
|
+
|
|
|
:src="$store.state.audioData.activityId==item.activityId?$store.state.audioData.paused?aduioIconPaused:aduioIconPlay:aduioIconDefault"
|
|
|
- />
|
|
|
+ ></span>
|
|
|
<span style="vertical-align: middle;line-height: 1">{{
|
|
|
$store.state.audioData.activityId==item.activityId?$store.state.audioData.paused?'已暂停':'播放中':'回放'
|
|
|
}}</span>
|
|
@@ -506,6 +507,10 @@ onActivated(()=>{//解决从详情返回到列表 分享时还是详情问题
|
|
|
&:hover{
|
|
|
background-color: #F3A52F;
|
|
|
color: #fff;
|
|
|
+ .icon-audio-default{
|
|
|
+ background-image:url('@/assets/audio-pause-white.png');
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
}
|
|
|
.btn-audio-active{
|
|
@@ -518,6 +523,17 @@ onActivated(()=>{//解决从详情返回到列表 分享时还是详情问题
|
|
|
height: 17px;
|
|
|
vertical-align: middle;
|
|
|
margin-right: 6px;
|
|
|
+ background-size:cover;
|
|
|
+ background-repeat:no-repeat;
|
|
|
+ }
|
|
|
+ .icon-audio-paused{
|
|
|
+ background-image:url('@/assets/audio-pause-white.png');
|
|
|
+ }
|
|
|
+ .icon-audio-play{
|
|
|
+ background-image:url('@/assets/audio-doing-white.png');
|
|
|
+ }
|
|
|
+ .icon-audio-default{
|
|
|
+ background-image:url('@/assets/audio-pause.png');
|
|
|
}
|
|
|
}
|
|
|
}
|