router_path.dart 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. class RouterPath {
  2. // 默认的路由
  3. static const SPLASH = '/';
  4. static const GUIDE = '/guide'; //指引页面
  5. //用户登录注册
  6. static const AUTH_LOGIN = '/auth/login';
  7. static const AUTH_BIND = '/auth/bind'; //绑定手机号
  8. static const AUTH_FORGET = '/auth/forget'; //忘记密码
  9. static const AUTH_SIGNUP = '/auth/signup'; //手动注册
  10. //首页
  11. static const MAIN = '/main';
  12. static const FORMFILED = '/form_filed'; //表单提交
  13. static const SETTING = '/setting'; // 设置界面
  14. static const RESETPASSWORD = '/reset/password'; // 重置密码
  15. static const CHANGEMOBILE = '/change/mobile'; // 修改手机号
  16. static const DARK_MODEL = '/dark/model'; // 黑暗模式
  17. static const NOTIFICATION_ENABLE = '/notification/enable'; // 通知推送设置
  18. static const MallMain = '/mall/main'; // 商城
  19. static const PREVIEW_IMAGE = '/preview/image'; //预览图片
  20. static const GLOBAL_WEB = '/global/web'; //全局公用的Web页面
  21. //Runalone
  22. static const RunaloneMain = '/runalone/main'; //独立运行的入口页面
  23. }