|
@@ -5,6 +5,7 @@
|
|
|
<span style="color:#5cd9e8">
|
|
|
<icon name="chart-area"></icon>
|
|
|
</span>
|
|
|
+
|
|
|
<div class="d-flex">
|
|
|
<span class="fs-xl text mx-2">天然气平衡</span>
|
|
|
<div class="decoration2">
|
|
@@ -12,30 +13,38 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="naturalGasData">
|
|
|
- <div>
|
|
|
- <p class="ml-3 colorBlue fw-b">电厂</p>
|
|
|
- <div>
|
|
|
- <div class="fontElec">853.0</div>
|
|
|
+ <div style="display:flex;flex-direction:row">
|
|
|
+ <div style="flex: 3">
|
|
|
+ <bottomRightChart />
|
|
|
+ </div>
|
|
|
+ <div class="naturalGasData" style="flex: 1">
|
|
|
+ <div style="">
|
|
|
+ <div style="display:flex;flex-direction:row; margin-bottom: 30px">
|
|
|
+ <p class="ml-3 colorBlue fw-b">电厂</p>
|
|
|
+ <div class="fontElec1">853.0</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div>
|
|
|
+ <div style="display:flex;flex-direction:row; margin-bottom: 30px">
|
|
|
<p class="ml-3 colorBlue fw-b">合成器</p>
|
|
|
<div>
|
|
|
- <div class="fontElec">53.0</div>
|
|
|
+ <div class="fontElec1">53.0</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div>
|
|
|
+ <div style="display:flex;flex-direction:row; margin-bottom: 30px">
|
|
|
<p class="ml-3 colorBlue fw-b">剩余U2</p>
|
|
|
<div>
|
|
|
- <div class="fontElec">145.0</div>
|
|
|
+ <div class="fontElec1">145.0</div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div style="display:flex;flex-direction:row; margin-bottom: 30px">
|
|
|
+ <p class="ml-3 colorBlue fw-b">剩余量</p>
|
|
|
+ <div style="float: top">
|
|
|
+ <div class="fontElec1">15.0</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- </div>
|
|
|
- <div>
|
|
|
- <bottomRightChart />
|
|
|
</div>
|
|
|
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -57,11 +66,11 @@ export default {
|
|
|
<style lang="scss" scoped>
|
|
|
#bottomRight {
|
|
|
padding: 0rem 0rem 0rem;
|
|
|
- height: 1.5rem;
|
|
|
+ height: 3.5rem;
|
|
|
min-width: 3.75rem;
|
|
|
border-radius: 0.0625rem;
|
|
|
- top:-50 !important;
|
|
|
- left:-40 !important;
|
|
|
+ //top:-50 !important;
|
|
|
+ //left:-40 !important;
|
|
|
.bg-color-black {
|
|
|
height: 3.1875rem;
|
|
|
border-radius: 0.125rem;
|
|
@@ -75,18 +84,24 @@ export default {
|
|
|
}
|
|
|
.chart-box {
|
|
|
margin-top: 0.2rem;
|
|
|
- width: 2.125rem;
|
|
|
+ width: 4.125rem;
|
|
|
height: 2.125rem;
|
|
|
.active-ring-name {
|
|
|
padding-top: 0.125rem;
|
|
|
}
|
|
|
}
|
|
|
.naturalGasData {
|
|
|
- display: flex;
|
|
|
justify-content: space-between;
|
|
|
float: right;
|
|
|
position: relative;
|
|
|
}
|
|
|
+ .fontElec1 {
|
|
|
+ width:100px;
|
|
|
+ margin-left: 0.3rem;
|
|
|
+ color: #cfe5ea;
|
|
|
+ font:30px/15px 'ds-digitalbold';
|
|
|
+ text-align:center;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
</style>
|