【移动端】企业微信链接访问拼接规则处理

gengboxb 197 0

比如

enterMode(enterprise:企业微信端  service:服务端)

path(跳转的页面名称)

可在首页路由跳转前beforeEnter获取缓存到sessionstorage,然后Home页面获取path进行跳转

路由配置

  {
    path: '/',
    name: 'index',
    component: Home,
    beforeEnter: (to, from, next) => {
        beforeEnterHandler(to); // 处理缓存到sessionstorage
        next();
    }
  },

跳转链接

http://192.168.0.1/#/?enterMode=enterprise&path=home

最终页面链接变成带有code的链接

http://192.168.0.1/?code=codedata&state=STATE#/home

发表评论 取消回复
表情 图片 链接 代码

分享