17 lines
432 B
Dart
17 lines
432 B
Dart
class RoutePaths {
|
|
/// 账号相关页面
|
|
static const login = '/auth/login';
|
|
static const register = '/auth/register';
|
|
|
|
/// 一级页面
|
|
static const home = '/home';
|
|
static const ai = '/ai';
|
|
static const my = '/my';
|
|
|
|
/// 二级页面
|
|
// Home下子页面
|
|
static const remoteControl = '/home/remote_control';
|
|
static const routePlan = '/home/route_plan';
|
|
static const runningStatus = '/home/running_status';
|
|
}
|