关闭播放窗口停止回放

回滚回放代码
This commit is contained in:
panlinlin
2021-01-12 10:46:41 +08:00
parent 2d8054be18
commit a683d9f676
2 changed files with 8 additions and 7 deletions

View File

@@ -183,7 +183,8 @@ export default {
scanGroup: 0,
tracks: [],
coverPlaying:false,
tracksLoading: false
tracksLoading: false,
recordPlay: ""
};
},
methods: {
@@ -318,6 +319,10 @@ export default {
this.convertStop();
}
this.convertKey = ''
if (this.recordPlay != '') {
this.stopPlayRecord();
}
this.recordPlay = ''
},
copySharedInfo: function (data) {
@@ -384,6 +389,7 @@ export default {
var streamInfo = res.data;
that.streamId = streamInfo.streamId;
that.videoUrl = streamInfo.ws_flv;
that.recordPlay = true;
});
}
},