美文网首页
子系统实现跳转到标准版子系统

子系统实现跳转到标准版子系统

作者: jesse28 | 来源:发表于2022-08-17 16:05 被阅读0次

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
     
    },

相关文章

网友评论

      本文标题:子系统实现跳转到标准版子系统

      本文链接:https://www.haomeiwen.com/subject/ymvegrtx.html