|
@@ -1,5 +1,5 @@
|
|
|
<script setup>
|
|
|
-import {ref} from 'vue'
|
|
|
+import {computed, ref} from 'vue'
|
|
|
import { Slider,Icon as VanIcon,Progress as VanProgress } from 'vant';
|
|
|
import { useStore } from "vuex";
|
|
|
|
|
@@ -7,6 +7,8 @@ const store=useStore()
|
|
|
|
|
|
const audioIconPlaysmall=new URL('../../assets/hzyb/report/audio-play-small.png', import.meta.url).href
|
|
|
const audioIconPausesmall=new URL('../../assets/hzyb/report/audio-pause-small.png', import.meta.url).href
|
|
|
+const audioIconChange=new URL('../../assets/hzyb/report/audio-change-small.png', import.meta.url).href
|
|
|
+const audioIconChangeGrey=new URL('../../assets/hzyb/report/audio-change-small-grey.png', import.meta.url).href
|
|
|
|
|
|
const formatVoiceTime = (e) => {
|
|
|
let minus = parseInt(e / 60);
|
|
@@ -14,6 +16,10 @@ const formatVoiceTime = (e) => {
|
|
|
return `${minus > 9 ? minus : "0" + minus}:${sec > 9 ? sec : "0" + sec}`;
|
|
|
};
|
|
|
|
|
|
+const curAudioData=computed(()=>{
|
|
|
+ return store.state.hzyb.audioData.list[store.state.hzyb.audioData.index]
|
|
|
+})
|
|
|
+
|
|
|
let currentTime=ref(0)
|
|
|
let showBigAudio=ref(false)
|
|
|
const audioIns=ref('')
|
|
@@ -64,6 +70,17 @@ const handleCloseAudioPup=()=>{
|
|
|
store.commit('hzyb/closeAudioPop')
|
|
|
}
|
|
|
|
|
|
+// 切换音频
|
|
|
+const handleAudioChange=(type)=>{
|
|
|
+ const cindex=store.state.hzyb.audioData.index
|
|
|
+ if(type==='before'&&cindex!=0){
|
|
|
+ store.commit('hzyb/changeAudioIndex',cindex-1)
|
|
|
+ }
|
|
|
+ if(type==='next'&&(cindex!=store.state.hzyb.audioData.list.length-1)){
|
|
|
+ store.commit('hzyb/changeAudioIndex',cindex+1)
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
</script>
|
|
|
|
|
|
|
|
@@ -72,7 +89,7 @@ const handleCloseAudioPup=()=>{
|
|
|
<audio
|
|
|
ref="audioIns"
|
|
|
autoplay
|
|
|
- :src="$store.state.hzyb.audioData.url"
|
|
|
+ :src="curAudioData?.url"
|
|
|
@error="audioError"
|
|
|
@play="audioPlay"
|
|
|
@pause="audioPause"
|
|
@@ -83,11 +100,11 @@ const handleCloseAudioPup=()=>{
|
|
|
<!-- 悬浮音频模块 -->
|
|
|
<div class="popup-audio-box" v-if="$store.state.hzyb.audioData.show">
|
|
|
<div class="small-box" v-if="!showBigAudio" @click="showBigAudio=true">
|
|
|
- <img :src="$store.state.hzyb.audioData.videoImg" class="bg-img">
|
|
|
+ <img :src="curAudioData.videoImg" class="bg-img">
|
|
|
<div class="small-con">
|
|
|
<div class="audio-name-box" style="flex:1;overflow: hidden;">
|
|
|
- <div class="van-ellipsis title">{{$store.state.hzyb.audioData.videoName}}</div>
|
|
|
- <div style="color:#666">时长 {{ formatVoiceTime($store.state.hzyb.audioData.videoTime) }}</div>
|
|
|
+ <div class="van-ellipsis title">{{curAudioData.videoName}}</div>
|
|
|
+ <div style="color:#666">时长 {{ formatVoiceTime(curAudioData.videoTime) }}</div>
|
|
|
</div>
|
|
|
<img class="btn-img" :src="$store.state.hzyb.audioData.paused?audioIconPausesmall:audioIconPlaysmall" @click.stop="handleClickAudio" alt="">
|
|
|
<van-icon name="cross" color="#BBC3C9" size="16" @click.stop="handleCloseAudioPup" />
|
|
@@ -96,40 +113,40 @@ const handleCloseAudioPup=()=>{
|
|
|
class="bot-progress"
|
|
|
stroke-width="1px"
|
|
|
color="#D4AC78"
|
|
|
- :percentage="(currentTime/$store.state.hzyb.audioData.videoTime)*100"
|
|
|
+ :percentage="(currentTime/curAudioData.videoTime)*100"
|
|
|
:show-pivot="false"
|
|
|
/>
|
|
|
</div>
|
|
|
<div class="big-box" v-else>
|
|
|
<van-icon name="arrow-down" color="#BBC3C9" size="16" class="arrow-d" @click="showBigAudio=false" />
|
|
|
<van-icon name="cross" color="#BBC3C9" size="16" class="arrow-c" @click.stop="handleCloseAudioPup" />
|
|
|
- <div class="title">{{$store.state.hzyb.audioData.videoName}}</div>
|
|
|
+ <div class="title">{{curAudioData.videoName}}</div>
|
|
|
<div class="flex">
|
|
|
<span>{{formatVoiceTime(currentTime)}}</span>
|
|
|
<Slider
|
|
|
button-size="14px"
|
|
|
v-model="currentTime"
|
|
|
- :max="$store.state.hzyb.audioData.videoTime"
|
|
|
+ :max="curAudioData.videoTime"
|
|
|
active-color="#D5AD79"
|
|
|
inactive-color="#E9E9E9"
|
|
|
@change="SliderChange"
|
|
|
class="slider"
|
|
|
></Slider>
|
|
|
- <span>{{ formatVoiceTime($store.state.hzyb.audioData.videoTime) }}</span>
|
|
|
+ <span>{{ formatVoiceTime(curAudioData.videoTime) }}</span>
|
|
|
</div>
|
|
|
<div class="flex" style="justify-content: center;">
|
|
|
- <img src="@/assets/hzyb/report/audio-change-small-grey.png">
|
|
|
+ <img
|
|
|
+ :src="$store.state.hzyb.audioData.index==0?audioIconChangeGrey:audioIconChange"
|
|
|
+ @click="handleAudioChange('before')"
|
|
|
+ >
|
|
|
<img :src="$store.state.hzyb.audioData.paused?audioIconPausesmall:audioIconPlaysmall" @click="handleClickAudio" style="margin:0 20px">
|
|
|
- <img src="@/assets/hzyb/report/audio-change-small-grey.png" style="transform: rotate(180deg)">
|
|
|
+ <img
|
|
|
+ :src="$store.state.hzyb.audioData.index==($store.state.hzyb.audioData.list.length-1)?audioIconChangeGrey:audioIconChange"
|
|
|
+ style="transform: rotate(180deg)"
|
|
|
+ @click="handleAudioChange('next')"
|
|
|
+ >
|
|
|
</div>
|
|
|
</div>
|
|
|
- <!-- <div>{{$store.state.hzyb.audioData.videoName}}</div>
|
|
|
- <div class="flex">
|
|
|
- <span>{{formatVoiceTime(currentTime)}}</span>
|
|
|
- <Slider button-size="10px" v-model="currentTime" :max="$store.state.hzyb.audioData.videoTime" active-color="#D5AD79" @change="SliderChange" class="slider"></Slider>
|
|
|
- <span>{{ formatVoiceTime($store.state.hzyb.audioData.videoTime) }}</span>
|
|
|
- <img :src="$store.state.hzyb.audioData.paused?audioIconPausesmall:audioIconPlaysmall" alt="" @click="handleClickAudio">
|
|
|
- </div> -->
|
|
|
</div>
|
|
|
</template>
|
|
|
|