|
@@ -41,13 +41,15 @@
|
|
|
<div :class="isShow ? 'center-area' : 'center-area1'">
|
|
|
<div :class="isShow ? 'center-t' : 'center-t1'">
|
|
|
<div class="center-scalc" @click="getScalc">
|
|
|
- <img src="../../../../assets/images/scalc.png" alt="" />
|
|
|
+ <div class="scalc-line"></div>
|
|
|
+ <div class="scalc-line"></div>
|
|
|
+ <div class="scalc-line"></div>
|
|
|
</div>
|
|
|
<iframe src="http://172.16.253.23:91/valkyrja/?type=tf" width="100%" height="100%" frameborder="0"></iframe>
|
|
|
</div>
|
|
|
<transition name="fade" mode="out-in">
|
|
|
<div class="center-b" v-if="isShow">
|
|
|
- <DanelBd :moduleName="'综放工作面粉尘浓度'" :contentStyle="{ contentH: '309px' }" :commonTitle="'selected'"
|
|
|
+ <DanelBd :moduleName="'综放工作面粉尘浓度'" :contentStyle="{ contentH: '245px' }" :commonTitle="'selected'"
|
|
|
:selectList="selectListBd" :selectValue="sensorCode" @change-select="changeSelect">
|
|
|
<multipleDust :echartData="echartData" />
|
|
|
</DanelBd>
|
|
@@ -66,8 +68,7 @@
|
|
|
</div>
|
|
|
<!-- 右中区域 -->
|
|
|
<div class="right-c">
|
|
|
- <DanelBd :moduleName="'粉尘关联指标'" :contentStyle="{ contentH: '280px' }"
|
|
|
- >
|
|
|
+ <DanelBd :moduleName="'粉尘关联指标'" :contentStyle="{ contentH: '280px' }">
|
|
|
<dustGlzb :dustGlzbData="dustGlzbData" />
|
|
|
</DanelBd>
|
|
|
</div>
|
|
@@ -127,7 +128,13 @@ let unInterTotal = ref(0);
|
|
|
let pwData = reactive<any[]>([]);
|
|
|
|
|
|
//粉尘关联指标数据
|
|
|
-let dustGlzbData = reactive<any[]>([]);
|
|
|
+let dustGlzbData = reactive<any[]>([
|
|
|
+ {label:'最高温度(°C)',val:''},
|
|
|
+ {label:'环境湿度(%)',val:''},
|
|
|
+ {label:'风速(m/s)',val:''},
|
|
|
+ {label:'水压(Mpa)',val:'10'},
|
|
|
+ {label:'水阀',val:'-'},
|
|
|
+]);
|
|
|
|
|
|
//粉尘静态指标数据
|
|
|
let selectListJt = reactive<any[]>([
|
|
@@ -233,23 +240,22 @@ async function historyAndForecastList(params) {
|
|
|
echartData.yData1.length = 0
|
|
|
let nowData = []
|
|
|
let ycDate = []
|
|
|
- res.lineData.forEach((el, index) => {
|
|
|
- if (new Date(el.time).getTime() <= new Date(res.splitTime).getTime()) {
|
|
|
- nowData = res.lineData.slice(0, index)
|
|
|
- }else {
|
|
|
- ycDate = res.lineData.slice(index)
|
|
|
- }
|
|
|
- console.log(nowData, 'nowData---------------------------')
|
|
|
- console.log(ycDate, 'ycDate============')
|
|
|
- echartData.xData.push(el.time);
|
|
|
- });
|
|
|
+ let counts = -1
|
|
|
+ nowData = res.lineData.filter(n => new Date(n.time).getTime() <= new Date(res.splitTime).getTime())
|
|
|
+ ycDate = res.lineData.filter(y => new Date(y.time).getTime() > new Date(res.splitTime).getTime())
|
|
|
+ console.log(nowData, 'nowData---------------------------')
|
|
|
+ console.log(ycDate, 'ycDate============')
|
|
|
+ res.lineData.forEach(el => {
|
|
|
+ echartData.xData.push(el.time)
|
|
|
+ })
|
|
|
echartData.xData.forEach((el, index) => {
|
|
|
if (nowData[index]) {
|
|
|
echartData.yData.push(nowData[index]['value']);
|
|
|
echartData.yData1.push('')
|
|
|
} else {
|
|
|
+ counts += 1
|
|
|
echartData.yData.push('');
|
|
|
- echartData.yData1.push(ycDate[index]['valuePredict'])
|
|
|
+ echartData.yData1.push(ycDate[counts]['valuePredict'])
|
|
|
}
|
|
|
})
|
|
|
}
|
|
@@ -274,13 +280,12 @@ async function getRealDataList() {
|
|
|
}
|
|
|
|
|
|
//粉尘关联指标数据
|
|
|
-async function getGzmMaxBySensorTypeList(){
|
|
|
- let res=await getGzmMaxBySensorType()
|
|
|
- if(res.length!=0){
|
|
|
- dustGlzbData.length=0
|
|
|
- res.forEach(el=>{
|
|
|
- dustGlzbData.push({label:`${el.sensorName}${el.unit}`,val:el.value})
|
|
|
- })
|
|
|
+async function getGzmMaxBySensorTypeList() {
|
|
|
+ let res = await getGzmMaxBySensorType()
|
|
|
+ if (res.length != 0) {
|
|
|
+ dustGlzbData[0]['val']=res.filter(v=>v.sensorType=='M0201')[0]['value'] || '-'
|
|
|
+ dustGlzbData[1]['val']=res.filter(v=>v.sensorType=='M0202')[0]['value'] || '-'
|
|
|
+ dustGlzbData[2]['val']=res.filter(v=>v.sensorType=='M0302')[0]['value'] || '-'
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -413,39 +418,48 @@ onUnmounted(() => {
|
|
|
.center-t {
|
|
|
position: relative;
|
|
|
width: 100%;
|
|
|
- height: 60%;
|
|
|
+ height: calc(100% - 295px);
|
|
|
margin-bottom: 15px;
|
|
|
overflow: hidden;
|
|
|
|
|
|
.center-scalc {
|
|
|
position: absolute;
|
|
|
- top: 10px;
|
|
|
- left: 10px;
|
|
|
- width: 50px;
|
|
|
- height: 50px;
|
|
|
- background-color: rgb(30 58 117 / 41.8%);
|
|
|
-
|
|
|
- img {
|
|
|
+ top: 0;
|
|
|
+ left: 0;
|
|
|
+ width: 44px;
|
|
|
+ height: 44px;
|
|
|
+ border-radius: 50%;
|
|
|
+ background-color: #000;
|
|
|
+ box-shadow: 0 0 15px 1px rgb(31 179 247 / 70%) inset;
|
|
|
+ cursor: pointer;
|
|
|
+
|
|
|
+ .scalc-line {
|
|
|
position: absolute;
|
|
|
- top: 50%;
|
|
|
left: 50%;
|
|
|
- width: 37px;
|
|
|
- height: 41px;
|
|
|
- transform: translate(-50%, -50%);
|
|
|
- cursor: pointer;
|
|
|
-
|
|
|
- &:hover {
|
|
|
- width: 43px;
|
|
|
- height: 47px;
|
|
|
- background-color: rgb(100 228 185 / 6.27%);
|
|
|
+ width: 22px;
|
|
|
+ height: 3px;
|
|
|
+ transform: translate(-50%, 0);
|
|
|
+ background-color: #fff;
|
|
|
+
|
|
|
+ &:nth-child(1) {
|
|
|
+ top: 14px;
|
|
|
+ }
|
|
|
+
|
|
|
+ &:nth-child(2) {
|
|
|
+ top: 21px;
|
|
|
}
|
|
|
+
|
|
|
+ &:nth-child(3) {
|
|
|
+ bottom: 13px;
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
.center-b {
|
|
|
width: 100%;
|
|
|
- height: calc(40% - 15px);
|
|
|
+ height: 280px;
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -465,26 +479,35 @@ onUnmounted(() => {
|
|
|
|
|
|
.center-scalc {
|
|
|
position: absolute;
|
|
|
- top: 10px;
|
|
|
- left: 10px;
|
|
|
- width: 50px;
|
|
|
- height: 50px;
|
|
|
- background-color: rgb(30 58 117 / 41.8%);
|
|
|
-
|
|
|
- img {
|
|
|
+ top: 0;
|
|
|
+ left: 0;
|
|
|
+ width: 44px;
|
|
|
+ height: 44px;
|
|
|
+ border-radius: 50%;
|
|
|
+ background-color: #000;
|
|
|
+ box-shadow: 0 0 15px 1px rgb(31 179 247 / 70%) inset;
|
|
|
+ cursor: pointer;
|
|
|
+
|
|
|
+ .scalc-line {
|
|
|
position: absolute;
|
|
|
- top: 50%;
|
|
|
left: 50%;
|
|
|
- width: 37px;
|
|
|
- height: 41px;
|
|
|
- transform: translate(-50%, -50%);
|
|
|
- cursor: pointer;
|
|
|
-
|
|
|
- &:hover {
|
|
|
- width: 43px;
|
|
|
- height: 47px;
|
|
|
- background-color: rgb(100 228 185 / 6.27%);
|
|
|
+ width: 22px;
|
|
|
+ height: 3px;
|
|
|
+ transform: translate(-50%, 0);
|
|
|
+ background-color: #fff;
|
|
|
+
|
|
|
+ &:nth-child(1) {
|
|
|
+ top: 14px;
|
|
|
}
|
|
|
+
|
|
|
+ &:nth-child(2) {
|
|
|
+ top: 21px;
|
|
|
+ }
|
|
|
+
|
|
|
+ &:nth-child(3) {
|
|
|
+ bottom: 13px;
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
}
|
|
|
}
|