|
|
@@ -3,26 +3,27 @@
|
|
|
<HeaderComponent title="M1水解"></HeaderComponent>
|
|
|
<div class="content_page">
|
|
|
<M1Tank title="M1" :valveArr="valveMap.M1" :waterLevelValue="30"
|
|
|
- :pressureValue="sensorHelper.getDataArrByCode('M1yl')[0]" :temperatureValue="30" :weightValue="300"
|
|
|
- :iconSize="getTankSize('M1')" :style="getTankStyle('M1')">
|
|
|
+ :pressureValue="sensorHelper.getDataArrByCode('M1yl')[0]" :iconSize="getTankSize('M1')"
|
|
|
+ :style="getTankStyle('M1')">
|
|
|
</M1Tank>
|
|
|
<S1Tank title="S1" :fanStatus="fanStatus" :valveArr="valveMap.S1"
|
|
|
:pressureValue="sensorHelper.getDataArrByCode('S1yl')[0]" :waterLevelValue="30"
|
|
|
- :temperatureValue="sensorHelper.getDataArrByCode('S1wd')[0]" :weightValue="100"
|
|
|
- :iconSize="getTankSize('S1',300)" :style="getTankStyle('S1')">
|
|
|
+ :temperatureValue="sensorHelper.getDataArrByCode('S1wd')[0]" :iconSize="getTankSize('S1', 300)"
|
|
|
+ :style="getTankStyle('S1')">
|
|
|
</S1Tank>
|
|
|
<S1Tank title="S2" :fanStatus="fanStatus" :valveArr="valveMap.S2"
|
|
|
:pressureValue="sensorHelper.getDataArrByCode('S2yl')[0]" :waterLevelValue="30"
|
|
|
- :temperatureValue="sensorHelper.getDataArrByCode('S2wd')[0]" :weightValue="100"
|
|
|
- :iconSize="getTankSize('S2',300)" :style="getTankStyle('S2')">
|
|
|
+ :temperatureValue="sensorHelper.getDataArrByCode('S2wd')[0]" :iconSize="getTankSize('S2', 300)"
|
|
|
+ :style="getTankStyle('S2')">
|
|
|
</S1Tank>
|
|
|
- <S1Tank title="S3" :fanStatus="fanStatus" :valveArr="valveMap.S3" :pressureValue="0.444"
|
|
|
- :waterLevelValue="30" :temperatureValue="20" :iconSize="getTankSize('S3',300)" :weightValue="100" class="m1Flow_s3Tank">
|
|
|
+ <S1Tank title="S3" :fanStatus="fanStatus" :valveArr="valveMap.S3" :waterLevelValue="30"
|
|
|
+ :iconSize="getTankSize('S3', 300)" class="m1Flow_s3Tank">
|
|
|
</S1Tank>
|
|
|
<div class="pumps">
|
|
|
<!-- lb9 -->
|
|
|
<div :style="getTankStyle('LB9')">
|
|
|
- <Pump title="进料泵" :pumpDataArr="pumpHelper.getDataArrByCode('LB9')" :iconSize="getTankSize('LB9',300)"></Pump>
|
|
|
+ <Pump title="进料泵" :pumpDataArr="pumpHelper.getDataArrByCode('LB9')"
|
|
|
+ :iconSize="getTankSize('LB9', 300)"></Pump>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="icon_others">
|
|
|
@@ -385,7 +386,7 @@ onBeforeUnmount(() => {
|
|
|
|
|
|
|
|
|
const flowId = 5 // 当前页面对应的流程 ID
|
|
|
-const { layoutMap, fetchLayoutParams, getTankStyle ,getTankSize} = useLayout(flowId)
|
|
|
+const { layoutMap, fetchLayoutParams, getTankStyle, getTankSize } = useLayout(flowId)
|
|
|
|
|
|
//更新页面配置
|
|
|
function updatePageConfig() {
|