|
@@ -2,7 +2,7 @@
|
|
|
<div>
|
|
|
<div id="MiForChange">
|
|
|
<ul>
|
|
|
- <li v-for="item,index in hightLightSomeOne" :class="{'highlight': item.status}">
|
|
|
+ <li v-for="item,index in hightLightSomeOne" :class="{'highlight' : item.status}">
|
|
|
<span @click="showMi(item,index)">{{ item.name }}</span>
|
|
|
</li>
|
|
|
</ul>
|
|
@@ -32,6 +32,12 @@ const hightLightSomeOne = reactive([
|
|
|
// eslint-disable-next-line no-unused-vars
|
|
|
function showMi(mi,index){
|
|
|
hightLightSomeOne[index].status= !hightLightSomeOne[index].status
|
|
|
+ hightLightSomeOne.forEach((item,indexs)=>{
|
|
|
+ if (index!=indexs) {
|
|
|
+ item.status = false
|
|
|
+ }
|
|
|
+ })
|
|
|
+
|
|
|
ueCallChangeMi(mi.name)
|
|
|
}
|
|
|
|
|
@@ -52,11 +58,15 @@ function showMi(mi,index){
|
|
|
float: left;
|
|
|
margin-right: 10px;
|
|
|
font-size: 18px;
|
|
|
- font-weight: bold;
|
|
|
- .highlight{
|
|
|
- background: #1A5482;
|
|
|
- }
|
|
|
+ font-weight: bold;}
|
|
|
+
|
|
|
+ ul .highlight{
|
|
|
+ span {
|
|
|
+ color: #1A5482;
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
+
|
|
|
}
|
|
|
|
|
|
|