router_path.dart 3.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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 authSelectRole = '/auth/select/role'; //选择角色
  15. static const authTenantDoc = '/auth/tenant/doc'; //租户的文件上传
  16. static const authResetPassword = '/auth/rest_psd'; //重置密码
  17. //首页
  18. static const main = '/main';
  19. static const notification = '/notification';
  20. static const settings = '/settings';
  21. static const settingsChangeMobile = '/settings/change/mobile';
  22. static const settingsResetPassword = '/settings/reset/psd';
  23. static const homePropertyNews = '/home/property/news';
  24. static const homeLatestNews = '/home/latest/news';
  25. static const homeManagementGuides = '/home/management/guides';
  26. static const visitorRegister = '/visitor/register';
  27. static const feedbackCreate = '/feedback/create';
  28. static const feedbackCreateSuccess = '/feedback/create/success';
  29. static const feedbackDetail = '/feedback/detail';
  30. //用户
  31. static const profileEdit = '/profile/edit';
  32. static const profileEstate = '/profile/estate';
  33. static const profileHousehold = '/profile/household';
  34. static const profileMyFollow = '/profile/my/follow';
  35. static const profileMyPost = '/profile/my/post';
  36. //社区
  37. static const community = '/community';
  38. static const newsfeedNews = 'community/newsfeed_news';
  39. static const newsfeedFollowing = 'community/newsfeed_following';
  40. static const newsfeedForyou = 'community/newsfeed_foryou';
  41. static const newsFeedPost = '/newsfeed_post';
  42. static const newsFeedDetail = '/newsfeed_detail';
  43. static const newsFeedMyPosts = '/newsfeed_my_posts';
  44. static const garage = '/garage';
  45. static const garageForSale = 'garage/garage_for_sale';
  46. static const garageForRent = 'garage/garage_for_rent';
  47. static const garageSalePost = '/garage_sale_post';
  48. static const garageSaleDetail = '/garage_sale_detail';
  49. static const garageSaleMyPosts = '/garage_sale_my_posts';
  50. //设施
  51. static const facility = '/facility';
  52. static const facilityDetail = '/facility/detail';
  53. static const facilityBook = '/facility/book';
  54. //表单
  55. static const form = '/form';
  56. //消息板
  57. static const noticeBoard = '/notice_board';
  58. static const announ = 'notice_board/announ';
  59. static const event = 'notice_board/event';
  60. static const documents = 'notice_board/documents';
  61. static const announcementDetail = '/notice_board/announcement_detail';
  62. //支付
  63. static const payment = '/payment';
  64. //房屋资产
  65. static const property = '/property';
  66. static const propertyIoan = 'property/ioan';
  67. static const propertyNews = 'property/news';
  68. static const propertySale = 'property/sale';
  69. static const propertyRent = 'property/rent';
  70. static const propertyNewsDetail = '/property_news_detail';
  71. //奖励
  72. static const rewards = '/rewards';
  73. //服务广告
  74. static const services = '/services';
  75. //全局其他
  76. static const previewImage = '/preview/image'; //预览图片
  77. static const globalWeb = '/global/web/:isShowAppBar/:initialUrl/:title'; //全局公用的Web页面
  78. //Runalone
  79. static const runAloneMain = '/runalone/main'; //独立运行的入口页面
  80. }