提交 9afaf41f 编写于 作者: RedPig97's avatar RedPig97

fix:菜单默认激活项修复

上级 9dc56aa3
...@@ -185,7 +185,8 @@ export default class AppMobMenuDefaultView extends Vue { ...@@ -185,7 +185,8 @@ export default class AppMobMenuDefaultView extends Vue {
if(index!= -1){ if(index!= -1){
this.activeId = this.items[index].id; this.activeId = this.items[index].id;
}else{ }else{
this.activeId = this.items[0].id; const index = this.items.findIndex((item: any) => { return !item.hidden })
this.activeId = this.items[index].id;
} }
this.loadCounterData(); this.loadCounterData();
} }
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册