|
|
@ -102,25 +102,18 @@ |
|
|
|
|
|
|
|
<!--质控对比--> |
|
|
|
<div v-if="currentTab === 'MWR'" class="picture-container contrast-picture-container picture-MWR"> |
|
|
|
|
|
|
|
<div class="picture"> |
|
|
|
<h2 class="title">质控前</h2> |
|
|
|
<canvas id='original-data-canvas'></canvas> |
|
|
|
</div> |
|
|
|
|
|
|
|
<!-- <div class="picture">--> |
|
|
|
<!-- <h2 class="title">温度异常值标记</h2>--> |
|
|
|
<!-- <canvas id='abnormal-canvas'></canvas>--> |
|
|
|
<!-- </div>--> |
|
|
|
|
|
|
|
|
|
|
|
<div class="picture"> |
|
|
|
<h2 class="title">质控后</h2> |
|
|
|
<canvas id='interpolate-canvas'></canvas> |
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
<!--BP反演产品--> |
|
|
@ -140,17 +133,14 @@ |
|
|
|
</div> |
|
|
|
|
|
|
|
<div v-if="currentTab === 'kuoxian'" class="verticalProfile"> |
|
|
|
|
|
|
|
<div class="verticalProfile-picture"> |
|
|
|
<h2 class="verticalProfileTitle">温度廓线</h2> |
|
|
|
<div id="verticalProfileTemp" style="width: 400px;height: 400px"></div> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="verticalProfile-picture"> |
|
|
|
<h2 class="verticalProfileTitle">相对湿度廓线</h2> |
|
|
|
<div id="verticalProfileRelativeHumidity" style="width: 400px;height: 400px"></div> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="verticalProfile-picture"> |
|
|
|
<h2 class="verticalProfileTitle">水汽密度廓线</h2> |
|
|
|
<div id="verticalProfileVaporDensity" style="width: 400px;height: 400px"></div> |
|
|
@ -210,6 +200,7 @@ import { BoxDrawer, ColorChart, createEmptyCanvas } from "../uilts/box-drawer"; |
|
|
|
import {Constant} from "../model/constant"; |
|
|
|
import {HighChartCreate} from "../model/high-chart-create"; |
|
|
|
import {ElMessage} from 'element-plus' |
|
|
|
|
|
|
|
export default { |
|
|
|
name: 'MicrowaveRadiation', |
|
|
|
setup() { |
|
|
@ -244,7 +235,7 @@ export default { |
|
|
|
|
|
|
|
let options = reactive({ |
|
|
|
currentTab: 'MWR', |
|
|
|
currentRegion: 'jiangning', |
|
|
|
currentRegion: 'jiang-ning', |
|
|
|
currentType: 'TEMP', |
|
|
|
currentElement: 'six-minute', |
|
|
|
currentCategory: 'CAPE', |
|
|
@ -301,8 +292,7 @@ export default { |
|
|
|
verticalProfileTempInit() |
|
|
|
verticalProfileVaporDensityInit() |
|
|
|
verticalProfileRelativeHumidityInit() |
|
|
|
} |
|
|
|
else if (name === 'shixu') { |
|
|
|
} else if (name === 'shixu') { |
|
|
|
convectiveIndexProfileTimeChartInitCAPE() |
|
|
|
convectiveIndexProfileTimeChartInitCIN() |
|
|
|
kIndexChartInit() |
|
|
@ -966,26 +956,32 @@ export default { |
|
|
|
z-index: 100; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.BPPicture { |
|
|
|
width: 65% !important; |
|
|
|
height: 45%; |
|
|
|
position: relative; |
|
|
|
|
|
|
|
#BP-temp, #BP-relative-humidity, #BP-vapor-density { |
|
|
|
transform: scale(0.40, 0.4); |
|
|
|
} |
|
|
|
|
|
|
|
.title { |
|
|
|
left: 4.35rem!important; |
|
|
|
left: 3.85rem !important; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.shiXu { |
|
|
|
overflow-y: scroll; |
|
|
|
width: 100% !important; |
|
|
|
} |
|
|
|
|
|
|
|
.shiXuBP { |
|
|
|
flex-flow: column; |
|
|
|
align-content: space-around !important; |
|
|
|
} |
|
|
|
|
|
|
|
.picture-MWR { |
|
|
|
width: 100%; |
|
|
|
height: 100%; |
|
|
|