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

2022-08-17  本文已影响0人  jesse28

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

上一篇 下一篇

猜你喜欢

热点阅读