+
{{ item.name }}
@@ -99,6 +107,7 @@
font-style: normal;
color: #ea7000;
text-align: center;
+ padding-top: 5px;
"
>{{ item.value }}
@@ -110,6 +119,7 @@
font-size: 10px;
color: #7f7f7f;
text-align: center;
+ padding-top: 5px;
"
>{{ item.unit }}
@@ -131,8 +141,8 @@
border-radius: 10px;
background: #ffffff;
">
-
-
+
+
环境指数分析
@@ -803,4 +813,17 @@
:deep(.ant-spin-nested-loading) {
height: 100% !important;
}
+ // /* 修改 a-progress 圆角大小 */
+ // ::v-deep .ant-progress-bg {
+ // // border-radius: 1px !important; /* 调整圆角大小,值可以自定义 */
+ // stroke-linecap: butt !important; /* 如果需要去掉圆角,使用 "butt" */
+ // }
+ /* 修改 a-progress 进度条的圆角 */
+ ::v-deep .ant-progress-inner {
+ border-radius: 4px !important; /* 整个进度条容器的圆角 */
+ }
+
+ ::v-deep .ant-progress-bg {
+ border-radius: 4px !important; /* 进度条本身的圆角 */
+ }
diff --git a/hx-ai-intelligent/src/view/monitor/environmentMonitor/averageData/index.vue b/hx-ai-intelligent/src/view/monitor/environmentMonitor/averageData/index.vue
index 19bc73e..5032b05 100644
--- a/hx-ai-intelligent/src/view/monitor/environmentMonitor/averageData/index.vue
+++ b/hx-ai-intelligent/src/view/monitor/environmentMonitor/averageData/index.vue
@@ -38,7 +38,9 @@
查询
-
导出
+
+ 导出
+
@@ -228,4 +230,7 @@
td.column-money {
text-align: right !important;
}
+ ::v-deep .ant-table.ant-table-bordered > .ant-table-title {
+ border: none !important;
+ }
diff --git a/hx-ai-intelligent/src/view/monitor/environmentMonitor/historyData/index.vue b/hx-ai-intelligent/src/view/monitor/environmentMonitor/historyData/index.vue
index 64b7731..b1ed14b 100644
--- a/hx-ai-intelligent/src/view/monitor/environmentMonitor/historyData/index.vue
+++ b/hx-ai-intelligent/src/view/monitor/environmentMonitor/historyData/index.vue
@@ -11,7 +11,13 @@
:scroll="{ x: 3000, y: 440 }">
+ style="
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ width: 100%;
+ border-top: 0 !important;
+ ">
-
导出
+
+ 导出
+
@@ -370,4 +378,7 @@
td.column-money {
text-align: right !important;
}
+ ::v-deep .ant-table.ant-table-bordered > .ant-table-title {
+ border: none !important;
+ }
diff --git a/hx-ai-intelligent/src/view/monitor/environmentMonitor/index.vue b/hx-ai-intelligent/src/view/monitor/environmentMonitor/index.vue
index bd898d2..805ab8e 100644
--- a/hx-ai-intelligent/src/view/monitor/environmentMonitor/index.vue
+++ b/hx-ai-intelligent/src/view/monitor/environmentMonitor/index.vue
@@ -3,7 +3,14 @@
+ style="
+ height: 5%;
+ width: 98.5%;
+ margin-top: 0.5%;
+ padding-left: 1.5%;
+ background: #ffffff;
+ font-family: 'PingFangSC-Regular', sans-serif;
+ ">
@@ -11,7 +18,8 @@
+ @click="configurePoint"
+ v-if="activeKey == '1'">
配置监测点位
@@ -236,7 +244,6 @@
};
// 修改是否显示状态
const updateShowed = (record: any) => {
- debugger;
let url = '';
if (record.useFlag == 0) {
record.useFlag = 1;
@@ -253,7 +260,7 @@
},
];
http.post(url, params).then((res) => {
- debugger;
+ console.log('🚀 ~ http.post ~ res:', res);
});
};
// 批量修改是否显示状态
@@ -448,7 +455,7 @@