From adb79299e86660a7f205466cf1ea48c6b25b1398 Mon Sep 17 00:00:00 2001
From: 云 <2163098428@qq.com>
Date: 星期四, 18 六月 2026 13:14:37 +0800
Subject: [PATCH] 1.计量器具台账上传附件报错 2.质量拉的数据不对(未明确) 3.计量器具台账逾期的做标红提醒 4.设备保养定时任务和记录要加上具体的保养内容 5.质量要区分质检规则抽检还是全检,抽检的话是抽多少百分比 6.供应商管理东西太少了,没有资质文件啊这些东西(是不是可以参考pro) 7.采购审批把人从李莹莹改成龙红星

---
 src/views/reportAnalysis/dataDashboard/components/basic/center-top.vue |  138 ++++++++++++++++++++++++++++++++++++++++++++-
 1 files changed, 133 insertions(+), 5 deletions(-)

diff --git a/src/views/reportAnalysis/dataDashboard/components/basic/center-top.vue b/src/views/reportAnalysis/dataDashboard/components/basic/center-top.vue
index d795f50..f4e086e 100644
--- a/src/views/reportAnalysis/dataDashboard/components/basic/center-top.vue
+++ b/src/views/reportAnalysis/dataDashboard/components/basic/center-top.vue
@@ -305,12 +305,52 @@
   background-position: center;
   background-repeat: no-repeat;
   height: 142px;
+  transition: all 0.3s ease;
+  position: relative;
+  overflow: hidden;
+  animation: cardFadeIn 0.6s ease-out both;
+}
+
+.stat-card:nth-child(1) { animation-delay: 0.1s; }
+.stat-card:nth-child(2) { animation-delay: 0.2s; }
+
+@keyframes cardFadeIn {
+  from { opacity: 0; transform: translateY(20px); }
+  to { opacity: 1; transform: translateY(0); }
+}
+
+.stat-card:hover {
+  transform: translateY(-3px);
+  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
+}
+
+/* 鍗$墖搴曢儴鍏夌嚎 */
+.stat-card::after {
+  content: '';
+  position: absolute;
+  bottom: 0;
+  left: 10%;
+  right: 10%;
+  height: 2px;
+  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.5), transparent);
+  opacity: 0;
+  transition: opacity 0.3s;
+}
+
+.stat-card:hover::after {
+  opacity: 1;
 }
 
 .card-icon {
-  width: 100px;
-  height: 100px;
+  width: 70px;
+  height: 70px;
   margin: 20px 20px 0 10px;
+  animation: iconFloat 4s ease-in-out infinite;
+}
+
+@keyframes iconFloat {
+  0%, 100% { transform: translateY(0); }
+  50% { transform: translateY(-5px); }
 }
 
 .card-content {
@@ -321,16 +361,22 @@
 
 .card-value {
   font-weight: 500;
-  font-size: 40px;
+  font-size: 32px;
   background: linear-gradient(360deg, #008bfd 0%, #ffffff 100%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
+  transition: all 0.3s ease;
+}
+
+.stat-card:hover .card-value {
+  text-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
+  transform: scale(1.05);
 }
 
 .card-label {
   font-weight: 400;
-  font-size: 19px;
+  font-size: 16px;
   color: rgba(208, 231, 255, 0.7);
 }
 
@@ -373,6 +419,32 @@
   height: 240px;
   padding-top: 0px;
   margin-bottom: 20px;
+  position: relative;
+  overflow: hidden;
+}
+
+/* 璁惧缁熻闈㈡澘瑙掕惤瑁呴グ */
+.equipment-stats::before,
+.equipment-stats::after {
+  content: '';
+  position: absolute;
+  width: 15px;
+  height: 15px;
+  border-color: rgba(0, 212, 255, 0.5);
+  border-style: solid;
+  pointer-events: none;
+}
+
+.equipment-stats::before {
+  top: -1px;
+  left: -1px;
+  border-width: 2px 0 0 2px;
+}
+
+.equipment-stats::after {
+  bottom: -1px;
+  right: -1px;
+  border-width: 0 2px 2px 0;
 }
 
 .equipment-header {
@@ -419,7 +491,7 @@
 .equipment-value {
   display: block;
   font-weight: 500;
-  font-size: 40px;
+  font-size: 36px;
   color: #ffffff;
   width: 120px;
   height: 110px;
@@ -429,6 +501,13 @@
   background-position: center;
   background-repeat: no-repeat;
   margin-bottom: 8px;
+  transition: all 0.3s ease;
+  animation: valuePulse 3s ease-in-out infinite;
+}
+
+@keyframes valuePulse {
+  0%, 100% { text-shadow: 0 0 10px rgba(78, 228, 255, 0.2); }
+  50% { text-shadow: 0 0 20px rgba(78, 228, 255, 0.4); }
 }
 
 .equipment-label {
@@ -446,6 +525,32 @@
   padding-top: 10px;
   height: 480px;
   flex: 1;
+  position: relative;
+  overflow: hidden;
+}
+
+/* 浜嬩欢闈㈡澘瑙掕惤瑁呴グ */
+.event-info::before,
+.event-info::after {
+  content: '';
+  position: absolute;
+  width: 15px;
+  height: 15px;
+  border-color: rgba(0, 212, 255, 0.5);
+  border-style: solid;
+  pointer-events: none;
+}
+
+.event-info::before {
+  top: -1px;
+  left: -1px;
+  border-width: 2px 0 0 2px;
+}
+
+.event-info::after {
+  bottom: -1px;
+  right: -1px;
+  border-width: 0 2px 2px 0;
 }
 
 .event-header {
@@ -482,6 +587,29 @@
   display: flex;
   justify-content: space-between;
   align-items: center;
+  transition: all 0.3s ease;
+  position: relative;
+}
+
+.todo-list li:hover {
+  background: rgba(0, 212, 255, 0.08);
+  transform: translateX(5px);
+}
+
+.todo-list li::after {
+  content: '';
+  position: absolute;
+  left: 0;
+  right: 0;
+  bottom: 0;
+  height: 1px;
+  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
+  opacity: 0;
+  transition: opacity 0.3s;
+}
+
+.todo-list li:hover::after {
+  opacity: 1;
 }
 
 .todo-title {

--
Gitblit v1.9.3