Initial commit: One Pipe System

完整的管理系统,包含账户管理、卡片管理、套餐管理、财务管理等功能模块。

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
sexygoat
2026-01-22 16:35:33 +08:00
commit 222e5bb11a
495 changed files with 145440 additions and 0 deletions

View File

@@ -0,0 +1,72 @@
import { AppRouteRecordRaw } from '../utils/utils'
import { RoutesAlias, HOME_PAGE } from '../routesAlias'
import Home from '@views/index/index.vue'
/**
* 静态路由配置
* 不需要权限就能访问的路由
*/
export const staticRoutes: AppRouteRecordRaw[] = [
{
path: '/',
redirect: HOME_PAGE
},
{
path: RoutesAlias.Login,
name: 'Login',
component: () => import('@views/auth/login/index.vue'),
meta: { title: 'menus.login.title', isHideTab: true, setTheme: true }
},
{
path: RoutesAlias.Register,
name: 'Register',
component: () => import('@views/auth/register/index.vue'),
meta: { title: 'menus.register.title', isHideTab: true, noLogin: true, setTheme: true }
},
{
path: RoutesAlias.ForgetPassword,
name: 'ForgetPassword',
component: () => import('@views/auth/forget-password/index.vue'),
meta: { title: 'menus.forgetPassword.title', isHideTab: true, noLogin: true, setTheme: true }
},
{
path: '/exception',
component: Home,
name: 'Exception',
meta: { title: 'menus.exception.title' },
children: [
{
path: RoutesAlias.Exception403,
name: 'Exception403',
component: () => import('@views/exception/403/index.vue'),
meta: { title: '403' }
},
{
path: '/:catchAll(.*)',
name: 'Exception404',
component: () => import('@views/exception/404/index.vue'),
meta: { title: '404' }
},
{
path: RoutesAlias.Exception500,
name: 'Exception500',
component: () => import('@views/exception/500/index.vue'),
meta: { title: '500' }
}
]
},
{
path: '/outside',
component: Home,
name: 'Outside',
meta: { title: 'menus.outside.title' },
children: [
{
path: '/outside/iframe/:path',
name: 'Iframe',
component: () => import('@/views/outside/Iframe.vue'),
meta: { title: 'iframe' }
}
]
}
]