Browse Source

优化海康国标录像播放的控制

pull/473/head
648540858 2 years ago
parent
commit
4d3f0a8d79
  1. 2
      src/main/java/com/genersoft/iot/vmp/utils/DateUtil.java
  2. 6
      web_src/src/components/dialog/devicePlayer.vue

2
src/main/java/com/genersoft/iot/vmp/utils/DateUtil.java

@ -14,7 +14,7 @@ import java.util.Locale;
/** /**
* 全局时间工具类 * 全局时间工具类
* @author swwheihei * @author lin
*/ */
public class DateUtil { public class DateUtil {

6
web_src/src/components/dialog/devicePlayer.vue

@ -681,7 +681,11 @@ export default {
this.$axios({ this.$axios({
method: 'get', method: 'get',
url: `/api/playback/seek/${this.streamId }/` + Math.floor(this.seekTime * val / 100000) url: `/api/playback/seek/${this.streamId }/` + Math.floor(this.seekTime * val / 100000)
}).then(function (res) {}); }).then( (res)=> {
setTimeout(()=>{
this.$refs.videoPlayer.play(this.videoUrl)
}, 600)
});
} }
} }

Loading…
Cancel
Save