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[];
+}