...
|
...
|
@@ -14,7 +14,8 @@ |
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="wave-title" :style="subTitleStyle">当前使用率</div>
|
|
|
<div class="wave-title" :style="subTitleStyle" v-if="index==0">当前使用率</div>
|
|
|
<div class="wave-title" :style="subTitleStyle" v-if="index==1">使用增长率</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
|
...
|
...
|
@@ -161,7 +162,7 @@ export default { |
|
|
return {
|
|
|
/* width: width + "px",
|
|
|
height: width + "px",*/
|
|
|
margin:this.optionsSetup.flexFlow=='column'?'5px 10px':'10px'
|
|
|
margin:this.optionsSetup.flexFlow=='column'?'5px 10px':'10px 15px'
|
|
|
}
|
|
|
},
|
|
|
//波纹样式
|
...
|
...
|
@@ -307,9 +308,13 @@ export default { |
|
|
justify-content: space-around;
|
|
|
}
|
|
|
.fill-item{
|
|
|
width:100%;height:100%;
|
|
|
//width:100%;
|
|
|
height:100%;
|
|
|
//flex: 1;
|
|
|
margin:10px;
|
|
|
align-items: start;
|
|
|
display: flex;
|
|
|
flex-flow: column;
|
|
|
}
|
|
|
.circle{
|
|
|
background-image: linear-gradient(20deg, #5a8ef5 , #aeedf1);
|
...
|
...
|
@@ -358,9 +363,11 @@ export default { |
|
|
font-size: 20px;
|
|
|
}
|
|
|
.wave-title{
|
|
|
padding:10px;
|
|
|
padding:10px 0;
|
|
|
margin-top:10px;
|
|
|
}
|
|
|
.fillContainer-title{
|
|
|
padding:15px;
|
|
|
margin-bottom:15px;
|
|
|
}
|
|
|
</style> |
...
|
...
|
|