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/qualityAnalysis/components/PanelHeader.vue |   35 ++++++++++++++++++++++++++++++++++-
 1 files changed, 34 insertions(+), 1 deletions(-)

diff --git a/src/views/reportAnalysis/qualityAnalysis/components/PanelHeader.vue b/src/views/reportAnalysis/qualityAnalysis/components/PanelHeader.vue
index 313f1df..3416ee0 100644
--- a/src/views/reportAnalysis/qualityAnalysis/components/PanelHeader.vue
+++ b/src/views/reportAnalysis/qualityAnalysis/components/PanelHeader.vue
@@ -1,6 +1,9 @@
 <template>
   <div class="panel-header">
     <span class="panel-title">{{ title }}</span>
+    <span v-if="$slots.extra" class="panel-extra">
+      <slot name="extra"></slot>
+    </span>
   </div>
 </template>
 
@@ -20,14 +23,44 @@
   background-size: 100% 100%;
   background-position: center;
   background-repeat: no-repeat;
+  display: flex;
+  align-items: center;
+  justify-content: space-between;
+  position: relative;
+}
+
+/* 鏍囬瑁呴グ鍔ㄧ敾 */
+.panel-header::before {
+  content: '';
+  position: absolute;
+  left: 20px;
+  top: 50%;
+  transform: translateY(-50%);
+  width: 8px;
+  height: 8px;
+  background: #00d4ff;
+  border-radius: 50%;
+  animation: dotPulse 2s ease-in-out infinite;
+  box-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
+}
+
+@keyframes dotPulse {
+  0%, 100% { opacity: 0.6; transform: translateY(-50%) scale(1); }
+  50% { opacity: 1; transform: translateY(-50%) scale(1.2); }
 }
 
 .panel-title {
-  width: 100%;
   font-weight: 500;
   font-size: 16px;
   color: #D9ECFF;
   padding-left: 46px;
   line-height: 36px;
+  position: relative;
+  text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
+}
+
+.panel-extra {
+  padding-right: 10px;
+  line-height: 36px;
 }
 </style>

--
Gitblit v1.9.3