router_path.dart 1.1 KB

1234567891011121314151617181920212223242526272829303132
  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_SIGNUP = '/auth/signup'; //注册
  8. static const AUTH_RESET_PSD = '/auth/rest_psd'; //重置密码
  9. //首页
  10. static const MAIN = '/main';
  11. static const SETTINGS = '/settings';
  12. //工作-签到签出
  13. static const JOB_SIGN_IN_SIGN_OUT = '/job/sign_in_sign_out';
  14. //用工请求
  15. static const JOB_LABOUR_REQUEST_LIST = '/labour/list'; //用工请求列表
  16. static const JOB_LABOUR_REQUEST_ADD = '/labour/add'; //用工请求添加
  17. static const JOB_LABOUR_REQUEST_Detail = '/labour/detail'; //用工请求详情
  18. static const JOB_LABOUR_REQUEST_WORKFLOW = '/labour/workflow'; //用工请求修改状态的工作流
  19. //全局其他
  20. static const PREVIEW_IMAGE = '/preview/image'; //预览图片
  21. static const GLOBAL_WEB = '/global/web'; //全局公用的Web页面
  22. //Runalone
  23. static const RunaloneMain = '/runalone/main'; //独立运行的入口页面
  24. }