Files
plan_flutter/lib/router/config/route_paths.dart
zhutao 0231dcfe1a 1
2025-09-04 17:57:35 +08:00

25 lines
480 B
Dart

class RoutePaths {
RoutePaths._();
///闪烁页
static const splash = "/";
///协议页
static const agreement = "/agreement";
///登录
static const login = "/login";
///登陆验证码
static const loginCode = "/loginCode";
///首页
static const layout = "/layout";
///计划历史页
static const planHistory = "/planHistory";
///计划详情页
static String planDetail([int? id]) => id != null ? "/planDetail/$id" : "/planDetail/:id";
}