- 新增OperationDashboard.vue全屏大屏组件 - 添加6个核心KPI指标卡片: 进水总量/出水总量/产销差率/营收额/平均水质/报警次数 - 实现6个ECharts图表: 供水趋势/水质分布/报警统计/管网空间/设备状态/营收分析 - 创建静态HTML版本operation-dashboard.html,使用CDN加载Vue3/ECharts/Element Plus - 更新路由配置,添加/operation路径支持 - 修复nextTick导入问题,优化build脚本 🚧 开发者: bot_dev1 📝 任务: #38 [BI] 运营仪表盘 + 供水专题大屏
91 lines
1.7 KiB
CSS
91 lines
1.7 KiB
CSS
@import url(../shared.css);
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.cesium-infoBox-description {
|
|
font-family: sans-serif;
|
|
font-size: 13px;
|
|
padding: 4px 10px;
|
|
margin-right: 4px;
|
|
color: #edffff;
|
|
}
|
|
|
|
.cesium-infoBox-description a:link,
|
|
.cesium-infoBox-description a:visited,
|
|
.cesium-infoBox-description a:hover,
|
|
.cesium-infoBox-description a:active {
|
|
color: #edffff;
|
|
}
|
|
|
|
.cesium-infoBox-description table {
|
|
color: #edffff;
|
|
}
|
|
|
|
.cesium-infoBox-defaultTable {
|
|
width: 100%;
|
|
color: #edffff;
|
|
}
|
|
|
|
.cesium-infoBox-defaultTable tr:nth-child(odd) {
|
|
background-color: rgba(84, 84, 84, 0.8);
|
|
}
|
|
|
|
.cesium-infoBox-defaultTable tr:nth-child(even) {
|
|
background-color: rgba(84, 84, 84, 0.25);
|
|
}
|
|
|
|
.cesium-infoBox-defaultTable th {
|
|
font-weight: normal;
|
|
padding: 3px;
|
|
vertical-align: middle;
|
|
text-align: center;
|
|
}
|
|
|
|
.cesium-infoBox-defaultTable td {
|
|
padding: 3px;
|
|
vertical-align: middle;
|
|
text-align: left;
|
|
}
|
|
|
|
.cesium-infoBox-description-lighter {
|
|
color: #000000;
|
|
}
|
|
|
|
.cesium-infoBox-description-lighter a:link,
|
|
.cesium-infoBox-description-lighter a:visited,
|
|
.cesium-infoBox-description-lighter a:hover,
|
|
.cesium-infoBox-description-lighter a:active {
|
|
color: #000000;
|
|
}
|
|
|
|
.cesium-infoBox-description-lighter table {
|
|
color: #000000;
|
|
}
|
|
|
|
.cesium-infoBox-defaultTable-lighter {
|
|
width: 100%;
|
|
color: #000000;
|
|
}
|
|
|
|
.cesium-infoBox-defaultTable-lighter tr:nth-child(odd) {
|
|
background-color: rgba(179, 179, 179, 0.8);
|
|
}
|
|
|
|
.cesium-infoBox-defaultTable-lighter tr:nth-child(even) {
|
|
background-color: rgba(179, 179, 179, 0.25);
|
|
}
|
|
|
|
.cesium-infoBox-loadingContainer {
|
|
margin: 5px;
|
|
text-align: center;
|
|
}
|
|
|
|
.cesium-infoBox-loading {
|
|
display: inline-block;
|
|
background-image: url(../Images/info-loading.gif);
|
|
width: 16px;
|
|
height: 11px;
|
|
}
|