diff --git a/src/views/projectFront/insideVideo/overview.vue b/src/views/projectFront/insideVideo/overview.vue index 43cc3cf4..0a13c73d 100644 --- a/src/views/projectFront/insideVideo/overview.vue +++ b/src/views/projectFront/insideVideo/overview.vue @@ -170,7 +170,6 @@ export default { methods: { deletePlayer(index) { this.videoList.splice(index, 1); - this.changeShowType(this.showType); }, selectFn(index) { this.winIndex = index; @@ -186,11 +185,9 @@ export default { console.log(itemVal); if (this.showType == 1) { this.videoList = [item]; - this.changeShowType(this.showType); } if (!itemVal && this.showType != 1) { this.videoList.push(item); - this.changeShowType(this.showType); } console.log("右边的值", this.videoList); },