router_path.dart 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. part of 'page_router.dart';
  2. class RouterPath {
  3. static const SPLASH = '/';
  4. // 用户模块
  5. static const AUTH_LOGIN = '/login';
  6. static const AUTH_CHOOSE = '/choose';
  7. static const AUTH_REGISTER = '/register';
  8. static const AUTH_REGISTER_SUCCESS = '/register/success';
  9. static const AUTH_FORGOT = '/forgot';
  10. static const AUTH_CHANGE_PSD = '/change/psd';
  11. static const AUTH_CHANGE_EMAIL = '/change/email';
  12. // 公司模块
  13. static const AUTH_CAMPANY_JOIN = '/company/join';
  14. static const AUTH_CAMPANY_CREATE = '/company/create';
  15. static const AUTH_CAMPANY_DETAIL = '/company/detail';
  16. //首页模块
  17. static const HOME = '/home';
  18. static const HOME_CONTACT_US = '/home/cantact';
  19. static const HOME_FEEDBACK = '/home/feedback';
  20. static const HOME_ACCOUNT = '/home/account';
  21. //工作与职位模块
  22. static const JOB_MANAGER = '/job/manager';
  23. static const JOB_EXPEIED = '/job/expried';
  24. static const JOB_POSTED = '/job/posted';
  25. static const JOB_POST = '/job/post';
  26. static const JOB_EDIT = '/job/edit';
  27. static const JOB_REPOST = '/job/repost';
  28. //消息与聊天模块
  29. static const MESSAGE = '/message';
  30. static const MESSAGE_CHAT = '/message/chat';
  31. //人才与简历模块
  32. static const TALENT_SEARCH = '/talent/search';
  33. static const RESUME_DETAIL = '/resume/detail';
  34. //YY币模块
  35. static const COIN_BUY = '/coin/buy';
  36. //演示Demo
  37. static const DEMO = '/demo';
  38. }