浏览代码

音频弹窗图片

jwyu 2 年之前
父节点
当前提交
0d7d46af76
共有 2 个文件被更改,包括 9 次插入2 次删除
  1. 3 1
      pages-report/components/audioBox.vue
  2. 6 1
      pages-report/specialColumn/detail.vue

+ 3 - 1
pages-report/components/audioBox.vue

@@ -44,7 +44,7 @@
     </view> -->
     <view class="pop-audio-wrap">
         <view class="flex small-box" @click="handleOpenBig">
-            <image class="bg-img" src="" mode="aspectFill" />
+            <image class="bg-img" :src="img" mode="aspectFill" />
             <view class="flex con">
                 <view style="flex:1;overflow: hidden;">
                     <view class="van-ellipsis name">{{title}}</view>
@@ -130,6 +130,7 @@ export default {
     data () {
         return {
             title:'',
+            img:'',
             audioTime:0,
             currentTime:0,
             play:false,
@@ -146,6 +147,7 @@ export default {
             }
             
             this.title=curAudio.video_name
+            this.img=curAudio.video_img
             this.audioTime=curAudio.video_play_seconds
             this.currentTime=parseInt(this.globalBgMusic.currentTime)
             this.play=!this.globalBgMusic.paused

+ 6 - 1
pages-report/specialColumn/detail.vue

@@ -158,7 +158,12 @@ export default {
                 }
             }else{
                 this.$store.commit('addAudio', {
-                    list:[{video_url:item.video_url,video_name:item.video_name,video_play_seconds:item.video_play_seconds}],
+                    list:[{
+                        video_url:item.video_url,
+                        video_name:item.video_name,
+                        video_play_seconds:item.video_play_seconds,
+                        video_img:item.report_img_url
+                    }],
                     reportId:item.report_id
                 })
             }