diff --git a/src/views/redirect.vue b/src/layout/redirect.vue similarity index 100% rename from src/views/redirect.vue rename to src/layout/redirect.vue diff --git a/src/router/modules/remaining.ts b/src/router/modules/remaining.ts index 9483ff8da..53626e92f 100644 --- a/src/router/modules/remaining.ts +++ b/src/router/modules/remaining.ts @@ -27,7 +27,7 @@ const remainingRouter = [ { path: "/redirect/:path(.*)", name: "redirect", - component: () => import("/@/views/redirect.vue") + component: () => import("/@/layout/redirect.vue") } ] } diff --git a/src/views/type.ts b/src/views/type.ts deleted file mode 100644 index def5205d4..000000000 --- a/src/views/type.ts +++ /dev/null @@ -1,6 +0,0 @@ -export type infoType = { - svg?: string; - code?: number; - info?: string; - accessToken?: string; -};