Files
derma_flutter/lib/router/config/route_paths.dart
zhutao 99a1ce601e 1
2025-08-22 14:15:02 +08:00

23 lines
471 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 detail = "/detail";
///文章详情
static String articleDetail([int? id]) => id != null ? "/articleDetail/$id" : "/articleDetail/:id";
}