123456789101112131415161718192021222324252627 |
- class RouterPath {
- // 默认的路由
- static const splash = '/';
- static const guide = '/guide'; //指引页面
- //用户
- static const authLogin = '/auth/login'; //用户登录注册
- static const authSignUp = '/auth/signup'; //注册
- static const authResetPassword = '/auth/rest_psd'; //重置密码
- //首页
- static const main = '/main';
- static const settings = '/settings';
- static const notification = '/notification';
- //用户
- static const profileEdit = '/profile/edit';
- //全局其他
- static const previewImage = '/preview/image'; //预览图片
- static const globalWeb = '/global/web/:isShowAppBar/:initialUrl/:title'; //全局公用的Web页面
- //Runalone
- static const runAloneMain = '/runalone/main'; //独立运行的入口页面
- }
|