From a935450c18aa54589abce1c32bac4a18faeaea57 Mon Sep 17 00:00:00 2001 From: heyujie <516346543@qq.com> Date: 星期四, 04 三月 2021 18:56:27 +0800 Subject: [PATCH] 数据推送bug修改 --- src/pages/shuohuangMonitorAnalyze/components/videoAnalyze.vue | 11 ++++++----- 1 files changed, 6 insertions(+), 5 deletions(-) diff --git a/src/pages/shuohuangMonitorAnalyze/components/videoAnalyze.vue b/src/pages/shuohuangMonitorAnalyze/components/videoAnalyze.vue index bdf1c20..8a8f6ef 100644 --- a/src/pages/shuohuangMonitorAnalyze/components/videoAnalyze.vue +++ b/src/pages/shuohuangMonitorAnalyze/components/videoAnalyze.vue @@ -1,5 +1,5 @@ <template> - <div class="content"> + <div class="video-analyze-content"> <div class="content-top"> <div class="grid-check"> <span @@ -57,7 +57,7 @@ <!-- {{curVideo.ID}} --> <!-- <img :src="curVideo.VideoCover" style="width:100px" /> --> <ali-player - :source="'http://' + curVideo.VideoPath" + :source="curVideo.VideoPath" :markers="curVideo.marks" :ref="`player_${curVideo.ID}`" /> @@ -82,7 +82,7 @@ style="width:100px" />--> <ali-player - :source="'http://' + videoArrs[index].VideoPath" + :source="videoArrs[index].VideoPath" :markers="videoArrs[index].marks" :ref="`player_${videoArrs[index].ID}`" /> @@ -440,8 +440,9 @@ }; </script> -<style lang="scss"> -.content { +<style lang="scss" > +.video-analyze-content { + margin: 0; padding: 15px; text-align: left; .content-top { -- Gitblit v1.8.0