|
@@ -354,15 +354,17 @@ export default {
|
|
|
this.hightOnlineCount != this.compoundList.length
|
|
|
) {
|
|
|
this.$message.error("线上基础技能班仅能和线上基础技能班合并");
|
|
|
- this.hightOnlineCount = 0;
|
|
|
- this.hightCount = 0;
|
|
|
- this.compoundList = [];
|
|
|
+ // this.hightOnlineCount = 0;
|
|
|
+ // this.hightCount = 0;
|
|
|
+ // this.compoundList = [];
|
|
|
+ this.compoundList.splice(this.compoundList.length-1,1)
|
|
|
}
|
|
|
if (this.hightCount && this.hightCount != this.compoundList.length) {
|
|
|
this.$message.error("基础技能班仅能和基础技能班合并");
|
|
|
- this.hightOnlineCount = 0;
|
|
|
- this.hightCount = 0;
|
|
|
- this.compoundList = [];
|
|
|
+ this.compoundList.splice(this.compoundList.length-1,1)
|
|
|
+ // this.hightOnlineCount = 0;
|
|
|
+ // this.hightCount = 0;
|
|
|
+ // this.compoundList = [];
|
|
|
}
|
|
|
},
|
|
|
isAddCom(row) {
|