|
@@ -207,7 +207,8 @@ export default {
|
|
|
funnelList:[
|
|
|
{data:0,reaVal:0,value:20},
|
|
|
{data:0,reaVal:0,value:40},
|
|
|
- {data:0,reaVal:0,value:60}
|
|
|
+ {data:0,reaVal:0,value:60},
|
|
|
+ {data:0,reaVal:0,value:80}
|
|
|
]
|
|
|
},
|
|
|
};
|
|
@@ -309,6 +310,7 @@ export default {
|
|
|
{name:'市政水源',reaVal:(this.fireWaterStatisticsObj.municipalWater/total).toFixed(2) * 100,data:this.fireWaterStatisticsObj.municipalWater},
|
|
|
{name:'居民水源',reaVal:(this.fireWaterStatisticsObj.residentWater/total).toFixed(2) * 100,data:this.fireWaterStatisticsObj.residentWater},
|
|
|
{name:'单位水源',reaVal:(this.fireWaterStatisticsObj.unitWater/total).toFixed(2) * 100,data:this.fireWaterStatisticsObj.unitWater},
|
|
|
+ {name:'天然水源',reaVal:(this.fireWaterStatisticsObj.unitWater/total).toFixed(2) * 100,data:this.fireWaterStatisticsObj.unitWater},
|
|
|
].sort((a,b)=>{
|
|
|
return a.data - b.data
|
|
|
})
|
|
@@ -555,16 +557,18 @@ export default {
|
|
|
flex: 1;
|
|
|
width: 100%;
|
|
|
box-sizing: border-box;
|
|
|
- padding-bottom: 0.25rem;
|
|
|
+ padding: .125rem 0;
|
|
|
& > .el-col:last-child {
|
|
|
height: 100%;
|
|
|
display: flex;
|
|
|
+ flex-direction: column;
|
|
|
justify-content: space-between;
|
|
|
align-items: center;
|
|
|
flex-wrap: wrap;
|
|
|
& > .el-col {
|
|
|
width: 100%;
|
|
|
height: 0.625rem;
|
|
|
+ flex: none;
|
|
|
background-image: linear-gradient(
|
|
|
90deg,
|
|
|
transparent 0%,
|
|
@@ -602,6 +606,11 @@ export default {
|
|
|
color: #00d4ff;
|
|
|
}
|
|
|
}
|
|
|
+ & > .el-col:nth-child(4) {
|
|
|
+ & > span:last-child {
|
|
|
+ color: rgba(12,210,0,1);
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
.gaugeCon {
|