|
@@ -171,7 +171,8 @@
|
|
|
@dragend="dragTaskEnd()" draggable @click="goToTask(tIndex)" class="navTask" :class="{
|
|
|
isNavTask:
|
|
|
isClickColor > 0 && isClickColor == tIndex + 1,
|
|
|
- isNavOpen: t.toolOpen
|
|
|
+ isNavOpen: t.toolOpen,
|
|
|
+ // dragOver: newIndex === tIndex
|
|
|
}">
|
|
|
<div style="left: 8px;" class="chapter_upload_drag"></div>
|
|
|
<div class="nt_taskBox">
|
|
@@ -4782,6 +4783,9 @@ export default {
|
|
|
imageList: [],
|
|
|
heightPx: '100%',
|
|
|
toolsData: toolsData,
|
|
|
+ oldIndex: 0,
|
|
|
+ oldData: null,
|
|
|
+ newIndex: "",
|
|
|
};
|
|
|
},
|
|
|
directives: {
|
|
@@ -11751,6 +11755,7 @@ ol {
|
|
|
position: absolute;
|
|
|
right: 15px;
|
|
|
bottom: 35px;
|
|
|
+ z-index: 9999;
|
|
|
}
|
|
|
|
|
|
.fold {
|
|
@@ -12846,6 +12851,10 @@ ol {
|
|
|
background-image: url(../../../assets/icon/new/icon_arrow_a.png) !important;
|
|
|
}
|
|
|
|
|
|
+.dragOver{
|
|
|
+ background: red !important;
|
|
|
+}
|
|
|
+
|
|
|
.isNavTask {
|
|
|
/* background: #3681FC; */
|
|
|
background: #EEF3FB;
|