From 1c829f9177eab675b22be4d20ef2761ed1bbb423 Mon Sep 17 00:00:00 2001
From: 云 <2163098428@qq.com>
Date: 星期二, 15 九月 2026 16:15:48 +0800
Subject: [PATCH] refactor(layout): 调整布局样式并优化轮播卡片组件
---
src/views/reportAnalysis/PSIDataAnalysis/components/PanelHeader.vue | 25 +++++++++++++++++--------
1 files changed, 17 insertions(+), 8 deletions(-)
diff --git a/src/views/reportAnalysis/PSIDataAnalysis/components/PanelHeader.vue b/src/views/reportAnalysis/PSIDataAnalysis/components/PanelHeader.vue
index 313f1df..f463ff4 100644
--- a/src/views/reportAnalysis/PSIDataAnalysis/components/PanelHeader.vue
+++ b/src/views/reportAnalysis/PSIDataAnalysis/components/PanelHeader.vue
@@ -16,18 +16,27 @@
<style scoped>
.panel-header {
- background-image: url("@/assets/BI/kehuhetongback@2x.png");
- background-size: 100% 100%;
- background-position: center;
- background-repeat: no-repeat;
+ display: flex;
+ align-items: center;
+ gap: 8px;
+ padding: 0 4px;
+ height: 36px;
+}
+
+/* 鍝佺墝钃濈粏绔栨潯锛屽懠搴� HomePanel 鏍囬鏍峰紡 */
+.panel-header::before {
+ content: '';
+ width: 3px;
+ height: 14px;
+ border-radius: 2px;
+ background: linear-gradient(180deg, var(--bi-accent-bright, #4a6cf0) 0%, var(--bi-accent, #2c51d9) 100%);
+ flex-shrink: 0;
}
.panel-title {
- width: 100%;
font-weight: 500;
font-size: 16px;
- color: #D9ECFF;
- padding-left: 46px;
- line-height: 36px;
+ color: var(--bi-text-strong, #eaf1ff);
+ letter-spacing: 1px;
}
</style>
--
Gitblit v1.9.3