1.第一步主系统的一级菜单会存放在localstorage,这边序列化一下。
JSON.parse(localStorage.getItem("microList"))
2.跳转到子系统
// 跳转到主系统
handleJump(item) {
if(item.name=='zhihuidiaodu'){
window.location.href = `${window.webConfig.ipLoginOut}/case/newScreen/index.html#/`;
return
}
if(item.name=='lawEnforcement'){
window.location.href = item.entry;
return
}
window.location.href=`${window.webConfig.ipLoginOut}/case`+item.entry.replace('.','')
return
},
网友评论