|
@@ -7,7 +7,10 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div>
|
|
|
- <div class='item flex flex-center' v-for='item in data' :key='item.id'>{{item.name}}</div>
|
|
|
+ <div v-for='(item,index) in data' :key='item.id' @click='navClick(index)'>
|
|
|
+ <div class='item flex flex-center bold font-14 ' :style=' item.checked ? "background-color: #7AB4F9;color:white":"" '>{{item.name}}</div>
|
|
|
+ </div>
|
|
|
+
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -26,17 +29,25 @@ export default {
|
|
|
init () {
|
|
|
this.$api.system.getMenus().then(res => {
|
|
|
if (res.code === 200) {
|
|
|
- this.data = res.data
|
|
|
- console.log(typeof this.data)
|
|
|
- if (this.data.length === 0) {
|
|
|
+ this.data = res.data.map(sub => {
|
|
|
+ sub.checked = false
|
|
|
+ return sub
|
|
|
+ })
|
|
|
+ if (res.msg === '暂无承载数据') {
|
|
|
this.$router.push('/login')
|
|
|
} else {
|
|
|
- // this.$router.push(this.data[0].path)
|
|
|
+ this.$router.push(this.data[0].path)
|
|
|
+ this.data[0].checked = true
|
|
|
}
|
|
|
- } else {
|
|
|
- console.log(res)
|
|
|
}
|
|
|
})
|
|
|
+ },
|
|
|
+ navClick (index) {
|
|
|
+ this.data.forEach(item => {
|
|
|
+ item.checked = false
|
|
|
+ })
|
|
|
+ this.data[index].checked = true
|
|
|
+ // this.$router.push(this.data[index].path)
|
|
|
}
|
|
|
}
|
|
|
}
|