From e836becda6a8946177aab068c13e8a5a48340dcf Mon Sep 17 00:00:00 2001 From: root Date: Sun, 20 Sep 2026 18:41:09 +0800 Subject: [PATCH] =?UTF-8?q?=E6=A1=8C=E9=9D=A2=E7=AB=AF=E4=B8=8B=E8=BD=BD?= =?UTF-8?q?=E5=99=A8=E8=B0=83=E4=BC=98=EF=BC=9A=E4=BB=BB=E5=8A=A1=E5=88=97?= =?UTF-8?q?=E8=A1=A8=E4=BF=A1=E6=81=AF=E5=B1=82=E7=BA=A7=E4=B8=8E=E6=93=8D?= =?UTF-8?q?=E4=BD=9C=E5=8C=BA=E9=87=8D=E6=8E=92?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 统一 theme.css 视觉变量与卡片、状态标签样式 - DashBoard 与 Side 的任务行重排:状态标签与进度对齐,排序/显示条件更明确 - 新增 AppIcon 图标组件,store 同步空名短标题修复 --- src/App.vue | 18 +- src/components/AppIcon.vue | 47 +++ src/components/DashBoard.vue | 265 ++++++++------- src/components/Side.vue | 332 ++++++++++++------- src/store/index.js | 8 +- src/styles/theme.css | 610 ++++++++++++++++++++++++++++++----- 6 files changed, 969 insertions(+), 311 deletions(-) create mode 100644 src/components/AppIcon.vue diff --git a/src/App.vue b/src/App.vue index 03ceb46..02e79ed 100644 --- a/src/App.vue +++ b/src/App.vue @@ -24,7 +24,10 @@ import DashBoard from "./components/DashBoard.vue"; diff --git a/src/components/AppIcon.vue b/src/components/AppIcon.vue new file mode 100644 index 0000000..3a17512 --- /dev/null +++ b/src/components/AppIcon.vue @@ -0,0 +1,47 @@ + + + diff --git a/src/components/DashBoard.vue b/src/components/DashBoard.vue index 2fb7fd1..daa4491 100644 --- a/src/components/DashBoard.vue +++ b/src/components/DashBoard.vue @@ -2,12 +2,20 @@
-

LionWebsite

-

请输入授权码以访问下载管理器

+
+ + LionWebsite +
+

下载管理器

+

输入授权码以继续

- + 记住授权码 - 验证 + 验证
@@ -15,138 +23,179 @@
-

用量统计

-
- 本周已用: {{ weekUsed.weekUsedAmount }} | 上次重置: {{ weekUsed.lastResetAmountTime }} - 查询用量 +
+

本周用量

+ 刷新 +
+
+ {{ weekUsed.weekUsedAmount ?? '—' }} + 上次重置 {{ weekUsed.lastResetAmountTime ?? '—' }}
-
-

查询任务

-
- - - - - - 远程查询 - 当前页查询 +
+
+
+

查询任务

+
+
+ + + + + + 远程查询 + 当前页查询 +
+
+ +
+
+

管理

+
+
+ 修改授权码 + 删除本地授权码 + 配置 +
+
+ +
+
+

系统

+
+
+ 在线搜索 + 重连节点 + 重置任务 +
+
+ +
+
+

外观

+
+
+ 夜间模式 + +
-
-

管理

-
- 修改授权码 - 删除授权码 - 配置 - 夜间模式 - +
+
+

缩略图

-
- -
-

系统

-
- 在线搜索 - 重连节点 - 重置任务 -
-
- -
-

缩略图

- +
+ +
- - - - 名字:{{chosenGallery.name}} - 页数:{{chosenGallery.pages}} - 语言:{{chosenGallery.language}} - 大小:{{chosenGallery.fileSize}} - 状态:{{chosenGallery.status}} - - 目标分辨率: - - - - -
+ +
+ +
+
名字
+
{{ chosenGallery.name }}
+
页数
+
{{ chosenGallery.pages }}
+
语言
+
{{ chosenGallery.language }}
+
大小
+
{{ chosenGallery.fileSize }}
+
状态
+
{{ chosenGallery.status }}
+ +
+
- - - - + + + {{ realAuthCode }} - - - + + - - - + + - - 提交 - + -
- 夜间模式
- 夜间模式跟随系统 -
-
-
- 在线预览
- 在线预览分页页数: -
-
-
- 默认设置
- 分类: - - - - -
- 排序方式: - - - - -
- 显示类型: - - - -
-
+ +

外观

+
+ 夜间模式跟随系统 + +
+ +

在线预览

+ + + 1 – 30 + + +

默认设置

+ + + + + + + + + + + + + + + + + + + + +
diff --git a/src/components/Side.vue b/src/components/Side.vue index 7adb740..cc0fd9a 100644 --- a/src/components/Side.vue +++ b/src/components/Side.vue @@ -1,103 +1,164 @@