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

pull/473/head
648540858 2022-05-13 15:41:50 +08:00
parent 1757203202
commit 4d3f0a8d79
2 changed files with 6 additions and 2 deletions

View File

@ -14,7 +14,7 @@ import java.util.Locale;
/**
*
* @author swwheihei
* @author lin
*/
public class DateUtil {

View File

@ -681,7 +681,11 @@ export default {
this.$axios({
method: 'get',
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)
});
}
}