|
@@ -9916,12 +9916,15 @@ export default {
|
|
|
if (this.oldIndex == 0) {
|
|
|
chapterData = newItems[this.oldIndex].chapterData
|
|
|
newItems[this.oldIndex].chapterData = []
|
|
|
+ }else if(this.newIndex == 0){
|
|
|
+ chapterData = newItems[this.newIndex].chapterData
|
|
|
+ newItems[this.oldIndex].chapterData = []
|
|
|
}
|
|
|
// 删除老的节点
|
|
|
newItems.splice(this.oldIndex, 1);
|
|
|
// 在列表中目标位置增加新的节点
|
|
|
newItems.splice(this.newIndex, 0, this.oldData);
|
|
|
- if (this.oldIndex == 0) {
|
|
|
+ if (this.oldIndex == 0 || this.newIndex == 0) {
|
|
|
newItems[0].chapterData = chapterData
|
|
|
}
|
|
|
this.unitJson[this.unitIndex].chapterInfo[0].taskJson = [...newItems];
|