oyjt / uniapp-vue3-template

使用uniapp+vite+vue3+uview-plus3.0 搭建的搭建的适合团队协作的快速开发模版
http://icnpath.com/uniapp-vue3-template/
MIT License
243 stars 55 forks source link

页面跳转验证拦截器 在小程序里无效 #9

Closed duan1v closed 5 months ago

duan1v commented 5 months ago

h5可以拦截到登录页,但是在微信小程序中不行,getToken()为空也能到list页;pemission.ts 中的invoke方法好像都没有调用

duan1v commented 5 months ago

App.vue 中 修改

onShow(() => {
  // #ifdef MP-WEIXIN
  //微信小程序tabpages登陆拦截,app无需
  if (uni.$u.test.isEmpty(getToken())) {
    //跳转登陆页
    uni.reLaunch({ url: '/pages/common/login/index' });
  }
  // #endif
});