|
@@ -4417,18 +4417,27 @@ export default {
|
|
|
// this.unitJson2 = JSON.parse(res.data[0][0].chapters);
|
|
|
let _unitJson2 = JSON.parse(JSON.stringify(this.unitJson));
|
|
|
let _unitJson = [];
|
|
|
-
|
|
|
+ let _chapAarry = []
|
|
|
let _unitIndex = this.unitIndex;
|
|
|
if(_unitJson2.length > unitJson.length){
|
|
|
+ for(let c = 0;c<_unitJson2.length;c++){
|
|
|
+ _chapAarry.push(_unitJson2[c].chapterInfo[0].chapterid)
|
|
|
+ }
|
|
|
for(let j = 0;j<unitJson.length;j++){
|
|
|
- // let count = 0
|
|
|
+ let count = 0
|
|
|
for(let k = 0;k<_unitJson2.length;k++){
|
|
|
if(unitJson[j].chapterInfo[0].chapterid == _unitJson2[k].chapterInfo[0].chapterid){
|
|
|
+ count++
|
|
|
+ _chapAarry.splice(_chapAarry.indexOf(_unitJson2[k].chapterInfo[0].chapterid),1)
|
|
|
_unitJson.push(unitJson[j]);
|
|
|
break;
|
|
|
}
|
|
|
}
|
|
|
+ if(count === 0){
|
|
|
+ this.$message.error("您所修改的阶段已经被其他老师删除了");
|
|
|
+ }
|
|
|
}
|
|
|
+ console.log(_chapAarry);
|
|
|
}else{
|
|
|
_unitJson = _unitJson2
|
|
|
}
|