From 12484ddf51aa6dbc38728eb783dfbf00250691d8 Mon Sep 17 00:00:00 2001 From: kun <1422840143@qq.com> Date: Wed, 20 Mar 2024 09:16:20 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20BUG=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../replayVideoManage/components/playBack/playBack.vue | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/views/projectFront/replayVideoManage/components/playBack/playBack.vue b/src/views/projectFront/replayVideoManage/components/playBack/playBack.vue index 2828064b..8086667e 100644 --- a/src/views/projectFront/replayVideoManage/components/playBack/playBack.vue +++ b/src/views/projectFront/replayVideoManage/components/playBack/playBack.vue @@ -10,7 +10,6 @@ export default { data() { return { videoType:"", - locationValue:1, //声明公用变量 initCount: 0, //初始化参数 @@ -327,7 +326,6 @@ export default { //录像回放功能 startPlayback(){ - console.log('点击查看',this.locationValue) console.log('编号',this.pointCode) console.log('开始时间', this.startTime ) console.log('开始时间', new Date(this.startTime).getTime() / 1000 ) @@ -335,7 +333,7 @@ export default { var cameraIndexCode = this.pointCode; //获取输入的监控点编号值,必填 var startTimeStamp = new Date(this.startTime).getTime(); //回放开始时间戳,必填 var endTimeStamp = new Date(this.endTime).getTime(); //回放结束时间戳,必填 - var recordLocation = +this.locationValue; //录像存储位置:0-中心存储,1-设备存储 + var recordLocation = 1; //录像存储位置:0-中心存储,1-设备存储 var transMode = 1; //传输协议:0-UDP,1-TCP var gpuMode = 0; //是否启用GPU硬解,0-不启用,1-启用 var wndId = -1; //播放窗口序号(在2x2以上布局下可指定播放窗口)