router_path.dart 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. class RouterPath {
  2. // 默认的路由
  3. static const splash = '/';
  4. static const guide = '/guide'; //指引页面
  5. //用户
  6. static const authLogin = '/auth/login'; //用户登录注册
  7. static const authForgotInput = '/auth/forgot/input'; //忘记密码
  8. static const authForgotVerify = '/auth/forgot/verify'; //忘记密码校验
  9. static const authSignUp = '/auth/signup'; //注册
  10. static const authResetPassword = '/auth/rest_psd'; //重置密码
  11. //首页
  12. static const main = '/main';
  13. static const settings = '/settings';
  14. static const notification = '/notification';
  15. //用户
  16. static const profileEdit = '/profile/edit';
  17. //社区
  18. static const community = '/community';
  19. //设施
  20. static const facility = '/facility';
  21. //表单
  22. static const form = '/form';
  23. //消息板
  24. static const noticeBoard = '/notice_board';
  25. //支付
  26. static const payment = '/payment';
  27. //房屋资产
  28. static const property = '/property';
  29. static const propertyIoan = 'property/ioan';
  30. static const propertyNews = 'property/news';
  31. static const propertySale = 'property/sale';
  32. static const propertyRent = 'property/rent';
  33. //奖励
  34. static const rewards = '/rewards';
  35. //服务广告
  36. static const services = '/services';
  37. //全局其他
  38. static const previewImage = '/preview/image'; //预览图片
  39. static const globalWeb = '/global/web/:isShowAppBar/:initialUrl/:title'; //全局公用的Web页面
  40. //Runalone
  41. static const runAloneMain = '/runalone/main'; //独立运行的入口页面
  42. }