From ddbe9085029d8c7a8544a0806205c5aa71007baa Mon Sep 17 00:00:00 2001 From: Huang <596417202@qq.com> Date: Mon, 13 Jun 2022 17:32:54 +0800 Subject: [PATCH] =?UTF-8?q?feat-=E8=B7=AF=E7=94=B1=E6=8B=A6=E6=88=AA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.vue | 2 + src/enums/routerEnum.ts | 12 ++++++ src/main.ts | 3 -- src/pages.json | 12 ++++++ src/pages/index/index.vue | 12 +++++- src/pages/log/index.vue | 12 ++++++ src/pages/login/index.vue | 7 ++++ src/pages/notFound/404.vue | 7 ++++ src/utils/http/index.ts | 2 +- src/utils/interceptors/index.ts | 6 ++- src/utils/router/index.ts | 5 +++ src/utils/router/interceptor.ts | 65 +++++++++++++++++++++++++++++++++ src/utils/router/router.d.ts | 10 +++++ 13 files changed, 149 insertions(+), 6 deletions(-) create mode 100644 src/enums/routerEnum.ts create mode 100644 src/pages/log/index.vue create mode 100644 src/pages/notFound/404.vue create mode 100644 src/utils/router/index.ts create mode 100644 src/utils/router/interceptor.ts create mode 100644 src/utils/router/router.d.ts diff --git a/src/App.vue b/src/App.vue index 91a409f..bc3baf3 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,9 +1,11 @@ + + diff --git a/src/pages/login/index.vue b/src/pages/login/index.vue index ee6f00b..fd39a0a 100644 --- a/src/pages/login/index.vue +++ b/src/pages/login/index.vue @@ -20,6 +20,13 @@ + + diff --git a/src/utils/http/index.ts b/src/utils/http/index.ts index 0f0d36d..7747468 100644 --- a/src/utils/http/index.ts +++ b/src/utils/http/index.ts @@ -67,7 +67,7 @@ request.interceptors.response.use( }, (response) => { // 请求错误做点什么。可以使用async await 做异步操作 - error('Request Error!'); + // error('Request Error!'); return Promise.reject(response); }, ); diff --git a/src/utils/interceptors/index.ts b/src/utils/interceptors/index.ts index 1366dc5..aa3c8f7 100644 --- a/src/utils/interceptors/index.ts +++ b/src/utils/interceptors/index.ts @@ -1 +1,5 @@ -export function setupInterceptors() {} +import { routerInterceptor } from '@/utils/router/interceptor'; + +export function setupInterceptors() { + routerInterceptor(); +} diff --git a/src/utils/router/index.ts b/src/utils/router/index.ts new file mode 100644 index 0000000..3efae5d --- /dev/null +++ b/src/utils/router/index.ts @@ -0,0 +1,5 @@ +/** + * 需要验证登录的路径 + * 包括分包(subPackage)的路径 + */ +export const authRouter: string[] = ['pages/log/index']; diff --git a/src/utils/router/interceptor.ts b/src/utils/router/interceptor.ts new file mode 100644 index 0000000..5496f0e --- /dev/null +++ b/src/utils/router/interceptor.ts @@ -0,0 +1,65 @@ +import { HOME_PAGE, LOGIN_PAGE, NAVIGATE_TYPE_LIST, NOT_FOUND_PAGE } from '@/enums/routerEnum'; +import { authRouter } from '@/utils/router/index'; +import { useAuthStore } from '@/state/modules/auth'; +import { Toast } from '@/utils/uniApi'; + +/** + * 判断当前路径是否在需要验证登录的路径中 + * @param path + * @return boolean + */ +function isIncludesAuthRouter(path: string): boolean { + if (!authRouter.length) return false; + return authRouter.includes(path) || authRouter.some((item) => path.includes(item)); +} + +// 跳转登录 +function jumpLogin(path: string) { + const _path = path.startsWith('/') ? path : `/${path}`; + let pathQuery = encodeURIComponent(_path); + uni.navigateTo({ + url: `${LOGIN_PAGE}?redirect=${pathQuery}`, + }); +} + +/** + * 添加拦截器 + * 微信小程序端uni.switchTab拦截无效,请在onShow处理 + * 微信小程序端 拦截无效,请使用api + * @param routerName + * @export void + */ +function addInterceptor(routerName: string) { + uni.addInterceptor(routerName, { + // 跳转前拦截 + invoke: (args) => { + if (isIncludesAuthRouter(args.url) && args.url !== LOGIN_PAGE) { + const authStore = useAuthStore(); + if (authStore.isLogin) return args; + jumpLogin(args.url); + return false; + } + return args; + }, + // 成功回调拦截 + success: (res: any) => {}, + // 失败回调拦截 + fail: (err: any) => { + if (err.errMsg.includes(`${routerName}:fail page`)) { + Toast('页面不存在'); + uni.navigateTo({ + url: `${NOT_FOUND_PAGE}?redirect=${HOME_PAGE}`, + }); + } + return false; + }, + // 完成回调拦截 + complete: (res: any) => {}, + }); +} + +export function routerInterceptor() { + NAVIGATE_TYPE_LIST.forEach((item) => { + addInterceptor(item); + }); +} diff --git a/src/utils/router/router.d.ts b/src/utils/router/router.d.ts new file mode 100644 index 0000000..78681b1 --- /dev/null +++ b/src/utils/router/router.d.ts @@ -0,0 +1,10 @@ +declare interface Router extends Record { + path: string; + meta?: { + auth?: boolean; + }; +} + +declare interface TabBar extends Record { + list: Router[]; +}