91 lines
2.1 KiB
Dart
91 lines
2.1 KiB
Dart
class RoutePath {
|
|
/// 首页
|
|
static const kIndex = "/index";
|
|
|
|
/// 空白
|
|
static const kEmpty = "/empty";
|
|
|
|
/// 登录
|
|
static const kUserLogin = "/user/login";
|
|
|
|
static const kTestSubRoute = "/test/sub_route";
|
|
|
|
/// WebView
|
|
static const kWebView = "/other/webview";
|
|
|
|
/// 新闻详情
|
|
static const kNewsDetail = "/news/detail";
|
|
|
|
/// 评论
|
|
static const kComment = "/comment";
|
|
|
|
/// 漫画详情
|
|
static const kComicDetail = "/comic/detail";
|
|
|
|
/// 漫画阅读
|
|
static const kComicReader = "/comic/reader";
|
|
|
|
/// 漫画分类详情
|
|
static const kComicCategoryDetail = "/comic/category/detail";
|
|
|
|
/// 专题详情
|
|
static const kSpecialDetail = "/comic/special/detail";
|
|
|
|
/// 漫画作者详情
|
|
static const kComicAuthorDetail = "/comic/author/detail";
|
|
|
|
/// 漫画搜索
|
|
static const kComicSearch = "/comic/search";
|
|
|
|
/// 轻小说搜索
|
|
static const kNovelSearch = "/novel/search";
|
|
|
|
/// 轻小说分类详情
|
|
static const kNovelCategoryDetail = "/novel/category/detail";
|
|
|
|
/// 用户订阅
|
|
static const kUserSubscribe = "/user/subscribe";
|
|
|
|
/// 用户观看记录
|
|
static const kUserHistory = "/user/history";
|
|
|
|
/// 本机观看记录
|
|
static const kLocalHistory = "/user/local/history";
|
|
|
|
/// 设置
|
|
static const kSettings = "/user/settings";
|
|
|
|
/// 小说详情
|
|
static const kNovelDetail = "/novel/detail";
|
|
|
|
/// 小说阅读
|
|
static const kNovelReader = "/novel/reader";
|
|
|
|
/// 漫画下载,选择章节
|
|
static const kComicDownloadSelect = "/comic/download/chapter";
|
|
|
|
/// 小说下载,选择章节
|
|
static const kNovelDownloadSelect = "/novel/download/chapter";
|
|
|
|
/// 漫画下载管理
|
|
static const kComicDownload = "/download/comic";
|
|
|
|
/// 漫画下载详情
|
|
static const kComicDownloadDetail = "/download/comic/detail";
|
|
|
|
/// 小说下载管理
|
|
static const kNovelDownload = "/download/novel";
|
|
|
|
/// 小说下载详情
|
|
static const kNovelDownloadDetail = "/download/novel/chapter";
|
|
|
|
/// 添加/回复评论
|
|
static const kCommentAdd = "/comment/add";
|
|
|
|
/// 用户的评论
|
|
static const kUserComment = "/user/comment";
|
|
|
|
/// 本机收藏
|
|
static const kLocalFavorite = "/user/local/favorite";
|
|
}
|