From 5895cf78cab0c0c005e8965a39b2a49902db39cb Mon Sep 17 00:00:00 2001
From: BianLzhaoMin <11485688+bianliangzhaomin123@user.noreply.gitee.com>
Date: Thu, 24 Jul 2025 09:35:09 +0800
Subject: [PATCH] =?UTF-8?q?=E6=A0=B7=E5=BC=8F=E4=BC=98=E5=8C=96?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
css/newDataAnalysis/projectProgress.css | 30 +++++++++++++++----
js/pages/newDataAnalysis/projectManagement.js | 3 +-
2 files changed, 26 insertions(+), 7 deletions(-)
diff --git a/css/newDataAnalysis/projectProgress.css b/css/newDataAnalysis/projectProgress.css
index 2891bb3..3c12fd9 100644
--- a/css/newDataAnalysis/projectProgress.css
+++ b/css/newDataAnalysis/projectProgress.css
@@ -5,10 +5,13 @@
}
.tap-box div {
- padding: 4px 10px;
- border-radius: 5px;
+ text-align: center;
+ padding: 8px 16px;
+ background: rgba(22, 186, 170, 0.2);
+ border-radius: 6px;
+ border: 1px solid rgba(22, 186, 170, 0.5);
+ transition: all 0.3s ease;
cursor: pointer;
- border: 1px solid #e0e0e0;
}
.tap-box div:last-child {
@@ -16,7 +19,9 @@
}
.active {
- background-color: #0052cc;
+ background: rgba(22, 186, 170, 0.8) !important;
+ border: 1px solid rgba(22, 186, 170, 0.8) !important;
+ color: #fff;
}
.chart-box {
@@ -25,6 +30,21 @@
}
.chart-box-left,
.chart-box-right {
- width: 50%;
+ width: 48%;
height: 400px;
+
+ background: linear-gradient(
+ 135deg,
+ rgba(22, 186, 170, 0.1) 0%,
+ rgba(22, 186, 170, 0.05) 100%
+ );
+ border: 1px solid rgba(22, 186, 170, 0.3);
+ border-radius: 12px;
+ padding: 20px;
+ position: relative;
+ overflow: hidden;
+ box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
+}
+.chart-box-left {
+ margin-right: 1%;
}
diff --git a/js/pages/newDataAnalysis/projectManagement.js b/js/pages/newDataAnalysis/projectManagement.js
index 62661f7..825ba16 100644
--- a/js/pages/newDataAnalysis/projectManagement.js
+++ b/js/pages/newDataAnalysis/projectManagement.js
@@ -80,7 +80,6 @@ function initTable(type, bidCode) {
function setCols(type) {
if (type === 1) {
- // 工程质量分析
return [
{ type: "numbers", title: "序号", width: "10%" }, // 添加序号列
{
@@ -134,7 +133,7 @@ function initTable(type, bidCode) {
templet: (d) => {
let text = "";
text +=
- '导出';
+ '导出';
return text;
},
},