From bdbef0fbde20317d19bfc6d3473dabb10fb3fb3b Mon Sep 17 00:00:00 2001
From: 张含笑 <zhx18749296735@163.com>
Date: Sat, 19 Apr 2025 15:41:21 +0800
Subject: [PATCH] feat: 修改任务事件概况的饼状图颜色

---
 src/layout/Header.vue |    9 +++++----
 1 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/src/layout/Header.vue b/src/layout/Header.vue
index 0c727d2..8bdf2ca 100644
--- a/src/layout/Header.vue
+++ b/src/layout/Header.vue
@@ -52,7 +52,6 @@
 
 const handleClick = ({ path, name }) => {
   if (['系统运维'].includes(name)) {
-    console.log('打印地址',import.meta.env.VITE_APP_ADMIN_URL);
     window.open(import.meta.env.VITE_APP_ADMIN_URL + '?token=' + localStorage.getItem(ELocalStorageKey.Token), '_blank');
     return;
   }
@@ -129,14 +128,16 @@
     font-family: YouSheBiaoTiHei, YouSheBiaoTiHei;
     font-weight: 400;
     font-size: 45px;
-    color: #ffffff;
     line-height: 53px;
     letter-spacing: 11px;
-    text-shadow: 0px 4px 1px rgba(19, 80, 143, 0.66), 0px 0px 18px rgba(130, 165, 255, 0.4),
-      inset 0px 0px 2px rgba(255, 255, 255, 0.8);
+    text-shadow: 0px 4px 1px rgba(19,80,143,0.66), 0px 0px 18px rgba(130,165,255,0.4), inset 0px 0px 2px rgba(255,255,255,0.8);
     text-align: center;
     font-style: normal;
     text-transform: none;
+    background: linear-gradient(180deg, #FFFFFF 23%, #E9F8FF 46%, #77BAFF 76%);
+    -webkit-background-clip: text;
+    color: transparent;
+    background-clip: text;
   }
 
   .h-right {

--
Gitblit v1.9.3