From 26ca5273d21abcc9c5300ccc6751f9de51c58d9c Mon Sep 17 00:00:00 2001 From: Julian Freeman Date: Fri, 13 Mar 2026 17:07:19 -0400 Subject: [PATCH] add visual hints on advanced --- src/App.vue | 51 +++++++++++++++++++++++++++++++++++++++++---------- 1 file changed, 41 insertions(+), 10 deletions(-) diff --git a/src/App.vue b/src/App.vue index 7638e02..410ba83 100644 --- a/src/App.vue +++ b/src/App.vue @@ -614,7 +614,7 @@ watch(activeTab, (newTab) => { @@ -625,13 +625,18 @@ watch(activeTab, (newTab) => {
⚙️
-

系统组件清理

+

系统组件清理 (点击查看详情)

通过 DISM 命令移除不再需要的系统冗余组件。

- +
+ + + + +
@@ -653,11 +658,16 @@ watch(activeTab, (newTab) => {
🖼️
-

清理缩略图缓存

+

清理缩略图缓存 (点击查看详情)

重置文件夹预览缩略图数据库以释放空间。

- +
+ + + + +
@@ -678,11 +688,16 @@ watch(activeTab, (newTab) => {
🌙
-

关闭休眠文件

+

关闭休眠文件 (点击查看详情)

永久删除 hiberfil.sys 文件(大小等同于内存)。

- +
+ + + + +
@@ -691,6 +706,7 @@ watch(activeTab, (newTab) => {

注意事项:

  • 关闭后将无法使用“休眠”功能及“快速启动”技术。
  • +
  • 只需执行一次。
  • 需要管理员权限。
@@ -1363,9 +1379,24 @@ body { .adv-card-info { display: flex; align-items: center; gap: 24px; } .adv-card-icon { font-size: 32px; } -.adv-card-text h3 { font-size: 18px; margin-bottom: 4px; font-weight: 700; color: var(--text-main); } +.adv-card-text h3 { font-size: 18px; margin-bottom: 4px; font-weight: 700; color: var(--text-main); display: flex; align-items: center; gap: 8px; } .adv-card-text p { color: var(--text-sec); font-size: 14px; } +.detail-hint { font-size: 12px; color: var(--text-sec); font-weight: 400; opacity: 0.7; } + +.adv-card-right { display: flex; align-items: center; gap: 16px; } + +.expand-icon { + width: 32px; height: 32px; + display: flex; align-items: center; justify-content: center; + color: #C1C1C1; + transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); + border-radius: 50%; + background: #F8F9FA; +} +.expand-icon svg { width: 18px; height: 18px; } +.expand-icon.rotated { transform: rotate(180deg); background: #EBF4FF; color: var(--primary-color); } + .btn-action { background-color: #F2F2F7; color: var(--primary-color);