提交 f436bb66 编写于 作者: Neuromancer255's avatar Neuromancer255

实现刷新不重置菜单项 --fix1

上级 b5e490d7
<template>
<ion-tabs class="app-mob-menu-default-view" @ionTabsDidChange="selectItem($event)">
<ion-tabs ref="ionNav" class="app-mob-menu-default-view" @ionTabsDidChange="selectItem($event)">
<template v-for="item in items">
<template v-if="!item.hidden">
<ion-tab :key="item.id" :tab="item.name" >
......@@ -139,15 +139,14 @@ export default class AppMobMenuDefaultView extends Vue {
public mounted() {
let ionNav:any = this.$refs.ionNav;
let currPage = sessionStorage.getItem("currId");
this.items.forEach((item:any,index:number) => {
if(currPage){
if(item.id == currPage){
this.activeId = currPage ;
if(currPage){
this.items.forEach((item:any,index:number) => {
if(item.id == currPage){
this.activeId = item.id
ionNav.select(item.name);
}
}
})
})
}
}
/**
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册