|
@ -2,7 +2,7 @@ |
|
|
<div class='congestion'> |
|
|
<div class='congestion'> |
|
|
<WgtTitle :title="'能见度变化趋势'"></WgtTitle> |
|
|
<WgtTitle :title="'能见度变化趋势'"></WgtTitle> |
|
|
<div class="board"> |
|
|
<div class="board"> |
|
|
<div class="charts keep-ratio " id="VisibilityTrends"></div> |
|
|
<div class="charts" id="VisibilityTrends"></div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</template> |
|
|
</template> |
|
@ -52,25 +52,22 @@ |
|
|
|
|
|
|
|
|
<style lang='scss' scoped> |
|
|
<style lang='scss' scoped> |
|
|
.congestion { |
|
|
.congestion { |
|
|
width: 100%; |
|
|
display: flex; flex-direction: column; align-items: stretch; |
|
|
.board{ |
|
|
.board{ |
|
|
height:260px; |
|
|
flex: 1; |
|
|
width: 100%; |
|
|
|
|
|
padding: 0px 20px; |
|
|
padding: 0px 20px; |
|
|
background: linear-gradient(180deg, rgba(6,66,88,0.2) 0%, #064258 100%); |
|
|
background: linear-gradient(180deg, rgba(6,66,88,0.2) 0%, #064258 100%); |
|
|
border-radius: 5px 5px 5px 5px; |
|
|
border-radius: 5px 5px 5px 5px; |
|
|
opacity: 1; |
|
|
opacity: 1; |
|
|
border: 1px solid; |
|
|
border: 1px solid; |
|
|
border-image: linear-gradient(360deg, rgba(55, 231, 255,0.3), rgba(55, 231, 255, 0)) 1 1; |
|
|
border-image: linear-gradient(360deg, rgba(55, 231, 255,0.3), rgba(55, 231, 255, 0)) 1 1; |
|
|
display: flex; |
|
|
display: flex; flex-direction: column; |
|
|
justify-content: space-between; |
|
|
justify-content: center; |
|
|
align-items: center; |
|
|
align-items: stretch; |
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
.charts { |
|
|
.charts { |
|
|
height:200px; |
|
|
height:200px; |
|
|
width: 100%; |
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
</style> |
|
|
</style> |
|
|