guoshilong
2022-10-11 5799c29b452405811fe06f0a4a36522ff8200aab
修正详情显示图片视频,当有多个视频时,视频无法加载的问题
2 files modified
14 ■■■■■ changed files
src/views/eventgm/eventgmDetail.vue 7 ●●●●● patch | view | raw | blame | history
src/views/repairsorder/repairsorderDetail.vue 7 ●●●●● patch | view | raw | blame | history
src/views/eventgm/eventgmDetail.vue
@@ -117,10 +117,11 @@
                ></el-image>
              <video
                :src="videoUrls"
                style="width: 145px; height: 145px; object-fit: fill"
                v-for="(item,index) in videoUrls"
                :src="item"
                style="width: 145px; height: 145px; object-fit: fill; margin-right: 10px"
                controls
                v-show="videoUrls != ''"
                v-show="item != ''"
              ></video>
              <span v-show="picUrls.length == 0&&videoUrls.length ==0">暂无数据</span>
src/views/repairsorder/repairsorderDetail.vue
@@ -101,10 +101,11 @@
              ></el-image>
              <video
                :src="videoUrls"
                style="width: 145px; height: 145px; object-fit: fill"
                v-for="(item,index) in videoUrls"
                :src="item"
                style="width: 145px; height: 145px; object-fit: fill; margin-right: 10px"
                controls
                v-show="videoUrls != ''"
                v-show="item != ''"
              ></video>
              <span v-show="picUrls.length == 0&&videoUrls.length ==0">暂无数据</span>