|
@@ -4,6 +4,7 @@
|
|
|
<div class="menuList">
|
|
|
<div
|
|
|
class="menu"
|
|
|
+ :data-type="$store.state.moreSty"
|
|
|
:class="{ active: menuIndex == index }"
|
|
|
v-for="(nemu, index) in list"
|
|
|
:key="index"
|
|
@@ -92,6 +93,18 @@ export default {
|
|
|
immediate: true,
|
|
|
},
|
|
|
},
|
|
|
+ mounted() {
|
|
|
+ this.list = new Array(5).fill({
|
|
|
+ pjname: "测试数据",
|
|
|
+ lns: new Array(5).fill({
|
|
|
+ lnname: "测试Lns数据",
|
|
|
+ wts: new Array(5).fill({
|
|
|
+ status: "blue",
|
|
|
+ wtname: "测试w数据"
|
|
|
+ })
|
|
|
+ })
|
|
|
+ })
|
|
|
+ },
|
|
|
methods: {
|
|
|
handleClick(val) {
|
|
|
if (this.menuIndex === val) {
|
|
@@ -143,17 +156,116 @@ export default {
|
|
|
height: 3px;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+.menu[data-type~="greenSty"] {
|
|
|
+ .box-text{
|
|
|
+ border: 1px solid #3b6c53;
|
|
|
+ background: rgba(39, 62, 48, 0.6);
|
|
|
+ }
|
|
|
+ .dot {
|
|
|
+ border: 1px solid #05bb4c;
|
|
|
+ box-shadow: 0 0 7px rgb(42 255 28);
|
|
|
+ }
|
|
|
+ &.active {
|
|
|
+ .box-text {
|
|
|
+ color: #05bb4c;
|
|
|
+ }
|
|
|
+ .second-menu{
|
|
|
+ .box-text1 {
|
|
|
+ color: #05bb4c;
|
|
|
+ }
|
|
|
+ &.active {
|
|
|
+ .box-text1 {
|
|
|
+ color: #05bb4c;
|
|
|
+
|
|
|
+ .dot {
|
|
|
+ background-color: #3b6c53;
|
|
|
+ }
|
|
|
+
|
|
|
+ &::after {
|
|
|
+ border-left: 1px dashed rgba(5, 187, 76, 0.5);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .box-text2 {
|
|
|
+ border: 1px solid rgba(7, 122, 52, 0.8);
|
|
|
+ background-color: rgba(7, 122, 52, 0.2);
|
|
|
+ }
|
|
|
+
|
|
|
+ .wind-item {
|
|
|
+ border-left: 1px dashed rgba(5, 187, 76, 0.5);
|
|
|
+ &::after {
|
|
|
+ border-top: 1px dashed rgba(5, 187, 76, 0.5);
|
|
|
+ }
|
|
|
+ &.active {
|
|
|
+ .box-text2 {
|
|
|
+ background-color: rgba(7, 122, 52, 0.4);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+.menu[data-type~="blueSty"] {
|
|
|
+ .box-text{
|
|
|
+ border: 1px solid #3b546c;
|
|
|
+ background: rgba(39, 50, 62, 0.6);
|
|
|
+ }
|
|
|
+ .dot {
|
|
|
+ border: 1px solid #055abb;
|
|
|
+ box-shadow: 0 0 7px rgb(28, 164, 255);
|
|
|
+ }
|
|
|
+ &.active {
|
|
|
+ .box-text {
|
|
|
+ color: #1a93cf;
|
|
|
+ }
|
|
|
+ .second-menu{
|
|
|
+ .box-text1 {
|
|
|
+ color: #1a93cf;
|
|
|
+ }
|
|
|
+ &.active {
|
|
|
+ .box-text1 {
|
|
|
+ color: #1a93cf;
|
|
|
+
|
|
|
+ .dot {
|
|
|
+ background-color: #3b566c;
|
|
|
+ }
|
|
|
+
|
|
|
+ &::after {
|
|
|
+ border-left: 1px dashed rgba(5, 105, 187, 0.5);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .box-text2 {
|
|
|
+ border: 1px solid rgba(7, 70, 122, 0.8);
|
|
|
+ background-color: rgba(7, 70, 122, 0.2);
|
|
|
+ }
|
|
|
+
|
|
|
+ .wind-item {
|
|
|
+ border-left: 1px dashed rgba(5, 105, 187, 0.5);
|
|
|
+ &::after {
|
|
|
+ border-top: 1px dashed rgba(5, 105, 187, 0.5);
|
|
|
+ }
|
|
|
+ &.active {
|
|
|
+ .box-text2 {
|
|
|
+ background-color: rgba(7, 70, 122, 0.4);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
.menu {
|
|
|
margin-bottom: 3px;
|
|
|
.box-text {
|
|
|
width: 100%;
|
|
|
- border: 1px solid #3b6c53;
|
|
|
border-radius: 2px;
|
|
|
height: 32px;
|
|
|
line-height: 32px;
|
|
|
font-size: 14px;
|
|
|
color: #b3b3b3;
|
|
|
- background: rgba(39, 62, 48, 0.6);
|
|
|
text-align: center;
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
@@ -175,11 +287,9 @@ export default {
|
|
|
width: 7px;
|
|
|
height: 7px;
|
|
|
border-radius: 50%;
|
|
|
- border: 1px solid #05bb4c;
|
|
|
- box-shadow: 0 0 7px rgb(42 255 28);
|
|
|
margin-right: 7px;
|
|
|
margin-left: 5px;
|
|
|
- background-color: RGBA(10, 13, 17, 1);
|
|
|
+ background-color: rgba(10, 13, 17, 1);
|
|
|
z-index: 99;
|
|
|
}
|
|
|
|
|
@@ -192,9 +302,6 @@ export default {
|
|
|
}
|
|
|
|
|
|
&.active {
|
|
|
- .box-text {
|
|
|
- color: #05bb4c;
|
|
|
- }
|
|
|
|
|
|
.second-menu {
|
|
|
display: block;
|
|
@@ -209,7 +316,6 @@ export default {
|
|
|
height: 30px;
|
|
|
line-height: 30px;
|
|
|
border-bottom: 1px solid rgba(23, 27, 33, 1);
|
|
|
- color: #05bb4c;
|
|
|
align-items: center;
|
|
|
justify-content: space-between;
|
|
|
cursor: pointer;
|
|
@@ -224,10 +330,8 @@ export default {
|
|
|
|
|
|
&.active {
|
|
|
.box-text1 {
|
|
|
- color: #05bb4c;
|
|
|
|
|
|
.dot {
|
|
|
- background-color: #3b6c53;
|
|
|
z-index: 99;
|
|
|
}
|
|
|
|
|
@@ -236,7 +340,6 @@ export default {
|
|
|
display: block;
|
|
|
width: 12px;
|
|
|
height: 12px;
|
|
|
- border-left: 1px dashed rgba(5, 187, 76, 0.5);
|
|
|
position: absolute;
|
|
|
left: 8px;
|
|
|
top: 17px;
|
|
@@ -250,7 +353,6 @@ export default {
|
|
|
line-height: 26px;
|
|
|
color: #959595;
|
|
|
margin: 0 10px 0 18px;
|
|
|
- border-left: 1px dashed rgba(5, 187, 76, 0.5);
|
|
|
|
|
|
.text {
|
|
|
width: 100%;
|
|
@@ -259,14 +361,15 @@ export default {
|
|
|
align-items: center;
|
|
|
height: 26px;
|
|
|
line-height: 26px;
|
|
|
- &.green .dot {
|
|
|
- background-color: rgba(5, 187, 76, 0.7);
|
|
|
- border-color: #05bb4c;
|
|
|
- }
|
|
|
&.blue .dot {
|
|
|
background-color: rgba(28, 153, 255, 0.7);
|
|
|
border-color: #1c99ff;
|
|
|
}
|
|
|
+
|
|
|
+ &.green .dot {
|
|
|
+ background-color: rgba(5, 187, 76, 0.7);
|
|
|
+ border-color: #05bb4c;
|
|
|
+ }
|
|
|
&.pink .dot {
|
|
|
background-color: rgba(197, 48, 200, 0.7);
|
|
|
border-color: #c530c8;
|
|
@@ -293,11 +396,9 @@ export default {
|
|
|
width: 84px;
|
|
|
height: 22px;
|
|
|
line-height: 22px;
|
|
|
- border: 1px solid rgba(7, 122, 52, 0.8);
|
|
|
padding: 0 12px;
|
|
|
color: #959595;
|
|
|
font-size: 12px;
|
|
|
- background-color: rgba(7, 122, 52, 0.2);
|
|
|
cursor: pointer;
|
|
|
}
|
|
|
|
|
@@ -348,7 +449,6 @@ export default {
|
|
|
display: block;
|
|
|
width: 15px;
|
|
|
height: 18px;
|
|
|
- border-top: 1px dashed rgba(5, 187, 76, 0.5);
|
|
|
position: absolute;
|
|
|
left: -1px;
|
|
|
top: 13px;
|
|
@@ -356,7 +456,6 @@ export default {
|
|
|
|
|
|
&.active {
|
|
|
.box-text2 {
|
|
|
- background-color: rgba(7, 122, 52, 0.4);
|
|
|
color: #fff;
|
|
|
}
|
|
|
}
|
|
@@ -365,4 +464,4 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
-</style>
|
|
|
+</style>
|