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