diff --git a/src/views/jsxt/refereeList/menuReplay.vue b/src/views/jsxt/refereeList/menuReplay.vue index 26d611a69..ac52d9992 100644 --- a/src/views/jsxt/refereeList/menuReplay.vue +++ b/src/views/jsxt/refereeList/menuReplay.vue @@ -71,10 +71,10 @@ export default { } }, beforeDestroy() { - if (this.isPlaying) { - endPlaying({}).then(res=>{ - }); - } + // if (this.isPlaying) { + endPlaying({}).then(res=>{ + }); + // } }, methods:{ back() { @@ -86,35 +86,35 @@ export default { addSpeed() { if (this.playSpeedIndex < this.playSpeedList.length - 1) { this.playSpeedIndex++; - if (this.isPlaying) { - // 暂停播放 - playingPause({}).then(res=>{ - this.isPlaying = false; - setPlaySpeed({level:this.playSpeedList[this.playSpeedIndex].level}).then(res=>{ - }); - }); + // if (this.isPlaying) { + // // 暂停播放 + // playingPause({}).then(res=>{ + // this.isPlaying = false; + // setPlaySpeed({level:this.playSpeedList[this.playSpeedIndex].level}).then(res=>{ + // }); + // }); - } else { - setPlaySpeed({level:this.playSpeedList[this.playSpeedIndex].level}).then(res=>{ - }); - } + // } else { + setPlaySpeed({level:this.playSpeedList[this.playSpeedIndex].level}).then(res=>{ + }); + // } } }, minusSpeed() { if (this.playSpeedIndex > 0) { this.playSpeedIndex--; - if (this.isPlaying) { - // 暂停播放 - playingPause({}).then(res=>{ - this.isPlaying = false; - setPlaySpeed({level:this.playSpeedList[this.playSpeedIndex].level}).then(res=>{ - }); - }); - } else { - setPlaySpeed({level:this.playSpeedList[this.playSpeedIndex].level}).then(res=>{ - }); - } + // if (this.isPlaying) { + // // 暂停播放 + // playingPause({}).then(res=>{ + // this.isPlaying = false; + // setPlaySpeed({level:this.playSpeedList[this.playSpeedIndex].level}).then(res=>{ + // }); + // }); + // } else { + setPlaySpeed({level:this.playSpeedList[this.playSpeedIndex].level}).then(res=>{ + }); + // } } }, diff --git a/src/views/newMap/jointTrainingNew/chatView/chatBox.vue b/src/views/newMap/jointTrainingNew/chatView/chatBox.vue index 3ce1aeedd..ae42ab8a1 100644 --- a/src/views/newMap/jointTrainingNew/chatView/chatBox.vue +++ b/src/views/newMap/jointTrainingNew/chatView/chatBox.vue @@ -2,7 +2,7 @@