router_path.dart 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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 authSignUpVerify = '/auth/signup/verify'; //注册的短信验证
  11. static const authSignUpSuccess = '/auth/signup/success'; //账号注册成功
  12. static const authSelectEstate = '/auth/select/estate'; //绑定社区
  13. static const authSelectUnit = '/auth/select/unit'; //绑定楼栋与房间号
  14. static const authResetPassword = '/auth/rest_psd'; //重置密码
  15. //首页
  16. static const main = '/main';
  17. static const settings = '/settings';
  18. static const notification = '/notification';
  19. //用户
  20. static const profileEdit = '/profile/edit';
  21. //社区
  22. static const community = '/community';
  23. //设施
  24. static const facility = '/facility';
  25. //表单
  26. static const form = '/form';
  27. //消息板
  28. static const noticeBoard = '/notice_board';
  29. //支付
  30. static const payment = '/payment';
  31. //房屋资产
  32. static const property = '/property';
  33. static const propertyIoan = 'property/ioan';
  34. static const propertyNews = 'property/news';
  35. static const propertySale = 'property/sale';
  36. static const propertyRent = 'property/rent';
  37. //奖励
  38. static const rewards = '/rewards';
  39. //服务广告
  40. static const services = '/services';
  41. //全局其他
  42. static const previewImage = '/preview/image'; //预览图片
  43. static const globalWeb = '/global/web/:isShowAppBar/:initialUrl/:title'; //全局公用的Web页面
  44. //Runalone
  45. static const runAloneMain = '/runalone/main'; //独立运行的入口页面
  46. }