|
@@ -122,17 +122,17 @@
|
|
|
<div v-if="nav.tool[0].tool != undefined">
|
|
|
<div
|
|
|
class="closeTri1"
|
|
|
- v-if="nav.isOpen"
|
|
|
+ v-if="navIndex == taskCount && nav.id == navId && stageIndex == courseType"
|
|
|
@click="openTask(stageIndex, navIndex, nav.id)"
|
|
|
>
|
|
|
- <img src="../../assets/icon/newIcons/bDown.png" alt />
|
|
|
+ <img :style="{transform: nav.isOpen ? 'rotate(0deg)':'rotate(270deg)'}" src="../../assets/icon/newIcons/bDown2.png" alt />
|
|
|
</div>
|
|
|
<div
|
|
|
class="closeTri1"
|
|
|
v-else
|
|
|
@click="openTask(stageIndex, navIndex, nav.id)"
|
|
|
>
|
|
|
- <img src="../../assets/icon/newIcons/right.png" alt />
|
|
|
+ <img :style="{transform: nav.isOpen ? 'rotate(90deg)':'rotate(0deg)'}" src="../../assets/icon/newIcons/right.png" alt />
|
|
|
</div>
|
|
|
</div>
|
|
|
<div v-else class="noToolBlue"></div>
|
|
@@ -20660,8 +20660,10 @@ export default {
|
|
|
}
|
|
|
|
|
|
.openTaskActive {
|
|
|
- background-color: #e0eafb !important;
|
|
|
- color: #0061ff;
|
|
|
+ /* background-color: #e0eafb !important;
|
|
|
+ color: #0061ff; */
|
|
|
+ color:#fff;
|
|
|
+ background: rgb(55, 129, 252) !important;
|
|
|
}
|
|
|
|
|
|
.iframeName {
|
|
@@ -23009,6 +23011,7 @@ ol {
|
|
|
.closeTri1 > img {
|
|
|
width: 100%;
|
|
|
height: 100%;
|
|
|
+ /* transition: all .5s; */
|
|
|
}
|
|
|
|
|
|
.noToolBlue {
|
|
@@ -23066,10 +23069,10 @@ ol {
|
|
|
|
|
|
.isGjCss {
|
|
|
/* color: #0061ff; */
|
|
|
- /* color:#fff;
|
|
|
- background: rgb(55, 129, 252); */
|
|
|
- background-color: #e0eafb !important;
|
|
|
- color: #0061ff !important;
|
|
|
+ color:#fff;
|
|
|
+ background: rgb(55, 129, 252);
|
|
|
+ /* background-color: #e0eafb !important;
|
|
|
+ color: #0061ff !important; */
|
|
|
}
|
|
|
|
|
|
.navItem {
|