28 lines
456 B
Dart
28 lines
456 B
Dart
class RoutePaths {
|
|
RoutePaths._();
|
|
|
|
///闪烁页
|
|
static const splash = "/";
|
|
|
|
///引导页
|
|
static const intro = "/intro";
|
|
|
|
///协议页
|
|
static const agreement = "/agreement";
|
|
|
|
///登录
|
|
static const login = "/login";
|
|
|
|
///登陆验证码
|
|
static const loginCode = "/loginCode";
|
|
|
|
///首页
|
|
static const layout = "/layout";
|
|
|
|
///预约详情
|
|
static const detail = "/detail";
|
|
|
|
///编辑我的
|
|
static const myEdit = "/my_edit";
|
|
}
|