routesAlias.ts 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /**
  2. * 路由别名,方便快速找到页面,同时可以用作路由跳转
  3. */
  4. /** 路由别名 */
  5. export enum RoutesAlias {
  6. Layout = '/index/index', // 布局容器
  7. Login = '/auth/login', // 登录
  8. Register = '/auth/register', // 注册
  9. ForgetPassword = '/auth/forget-password', // 忘记密码
  10. Exception403 = '/exception/403', // 403
  11. Exception404 = '/exception/404', // 404
  12. Exception500 = '/exception/500', // 500
  13. Success = '/result/success', // 成功
  14. Fail = '/result/fail', // 失败
  15. Dashboard = '/dashboard/console', // 工作台
  16. Analysis = '/dashboard/analysis', // 分析页
  17. Ecommerce = '/dashboard/ecommerce', // 电子商务
  18. IconList = '/widgets/icon-list', // 图标列表
  19. IconSelector = '/widgets/icon-selector', // 图标选择器
  20. ImageCrop = '/widgets/image-crop', // 图片裁剪
  21. Excel = '/widgets/excel', // Excel
  22. Video = '/widgets/video', // 视频
  23. CountTo = '/widgets/count-to', // 计数
  24. WangEditor = '/widgets/wang-editor', // 富文本编辑器
  25. Watermark = '/widgets/watermark', // 水印
  26. ContextMenu = '/widgets/context-menu', // 上下文菜单
  27. Qrcode = '/widgets/qrcode', // 二维码
  28. Drag = '/widgets/drag', // 拖拽
  29. TextScroll = '/widgets/text-scroll', // 文字滚动
  30. Fireworks = '/widgets/fireworks', // 礼花效果
  31. Chat = '/template/chat', // 聊天
  32. Cards = '/template/cards', // 卡片
  33. Banners = '/template/banners', // 横幅
  34. Charts = '/template/charts', // 图表
  35. Map = '/template/map', // 地图
  36. Calendar = '/template/calendar', // 日历
  37. Pricing = '/template/pricing', // 定价
  38. ArticleList = '/article/list', // 文章列表
  39. ArticleDetail = '/article/detail', // 文章详情
  40. Comment = '/article/comment', // 评论
  41. ArticlePublish = '/article/publish', // 文章发布
  42. User = '/system/user', // 账户
  43. Role = '/system/role', // 角色
  44. UserCenter = '/system/user-center', // 用户中心
  45. Menu = '/system/menu', // 菜单
  46. NestedMenu1 = '/system/nested/menu1', // 嵌套菜单1
  47. NestedMenu21 = '/system/nested/menu2', // 嵌套菜单2-1
  48. NestedMenu31 = '/system/nested/menu3', // 嵌套菜单3-1
  49. NestedMenu321 = '/system/nested/menu3/menu3-2', // 嵌套菜单3-2-1
  50. Server = '/safeguard/server', // 服务器
  51. ChangeLog = '/change/log', // 更新日志
  52. ExamplesTabs = '/examples/tabs', // 标签页
  53. ExamplesTablesBasic = '/examples/tables/basic', // 基础表格示例
  54. ExamplesTables = '/examples/tables', // 高级表格示例
  55. ExamplesTablesTree = '/examples/tables/tree', // 左右布局表格示例
  56. ExamplesSearchBar = '/examples/forms/search-bar', // 搜索表单示例
  57. SchoolList = '/school/list', // 学校列表
  58. SchoolInfo = '/school/info', // 学校详情
  59. SchoolEdit = '/school/edit', // 编辑学校
  60. SchoolRelation = '/school/relation' // 学校关系
  61. }