|
@@ -136,6 +136,10 @@
|
|
|
<text class="dialog-label">O₂:</text>
|
|
|
<u--input inputAlign="center" v-model="formState.o2" placeholder="请输入"></u--input>
|
|
|
</view>
|
|
|
+ <view class="dialog-item">
|
|
|
+ <text class="dialog-label">温度:</text>
|
|
|
+ <u--input inputAlign="center" v-model="formState.temp" placeholder="请输入"></u--input>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
<view class="bottom-dialog-area">
|
|
|
<div class="dialog-title">三对照数据</div>
|
|
@@ -198,6 +202,10 @@
|
|
|
<u--input inputAlign="center" v-model="formStateEdit.o2Early1" placeholder="请输入"></u--input>
|
|
|
</view>
|
|
|
<view class="dialog-item">
|
|
|
+ <text class="dialog-label">温度:</text>
|
|
|
+ <u--input inputAlign="center" v-model="formStateEdit.tEarly1" placeholder="请输入"></u--input>
|
|
|
+ </view>
|
|
|
+ <view class="dialog-item">
|
|
|
<text class="dialog-label">甲烷传感器:</text>
|
|
|
<u--input inputAlign="center" v-model="formStateEdit.jwSdzEarly1"
|
|
|
placeholder="请输入"></u--input>
|
|
@@ -248,6 +256,10 @@
|
|
|
<u--input inputAlign="center" v-model="formStateEdit.o2Early2" placeholder="请输入"></u--input>
|
|
|
</view>
|
|
|
<view class="dialog-item">
|
|
|
+ <text class="dialog-label">温度:</text>
|
|
|
+ <u--input inputAlign="center" v-model="formStateEdit.tEarly2" placeholder="请输入"></u--input>
|
|
|
+ </view>
|
|
|
+ <view class="dialog-item">
|
|
|
<text class="dialog-label">甲烷传感器:</text>
|
|
|
<u--input inputAlign="center" v-model="formStateEdit.jwSdzEarly2"
|
|
|
placeholder="请输入"></u--input>
|
|
@@ -295,6 +307,10 @@
|
|
|
<u--input inputAlign="center" v-model="formStateEdit.o2Noon1" placeholder="请输入"></u--input>
|
|
|
</view>
|
|
|
<view class="dialog-item">
|
|
|
+ <text class="dialog-label">温度:</text>
|
|
|
+ <u--input inputAlign="center" v-model="formStateEdit.tNoon1" placeholder="请输入"></u--input>
|
|
|
+ </view>
|
|
|
+ <view class="dialog-item">
|
|
|
<text class="dialog-label">甲烷传感器:</text>
|
|
|
<u--input inputAlign="center" v-model="formStateEdit.jwSdzNoon1"
|
|
|
placeholder="请输入"></u--input>
|
|
@@ -343,6 +359,10 @@
|
|
|
<u--input inputAlign="center" v-model="formStateEdit.o2Noon2" placeholder="请输入"></u--input>
|
|
|
</view>
|
|
|
<view class="dialog-item">
|
|
|
+ <text class="dialog-label">温度:</text>
|
|
|
+ <u--input inputAlign="center" v-model="formStateEdit.tNoon2" placeholder="请输入"></u--input>
|
|
|
+ </view>
|
|
|
+ <view class="dialog-item">
|
|
|
<text class="dialog-label">甲烷传感器:</text>
|
|
|
<u--input inputAlign="center" v-model="formStateEdit.jwSdzNoon2"
|
|
|
placeholder="请输入"></u--input>
|
|
@@ -393,6 +413,10 @@
|
|
|
<u--input inputAlign="center" v-model="formStateEdit.o2Night1" placeholder="请输入"></u--input>
|
|
|
</view>
|
|
|
<view class="dialog-item">
|
|
|
+ <text class="dialog-label">温度:</text>
|
|
|
+ <u--input inputAlign="center" v-model="formStateEdit.tNight1" placeholder="请输入"></u--input>
|
|
|
+ </view>
|
|
|
+ <view class="dialog-item">
|
|
|
<text class="dialog-label">甲烷传感器:</text>
|
|
|
<u--input inputAlign="center" v-model="formStateEdit.jwSdzNight1"
|
|
|
placeholder="请输入"></u--input>
|
|
@@ -442,6 +466,10 @@
|
|
|
<u--input inputAlign="center" v-model="formStateEdit.o2Night2" placeholder="请输入"></u--input>
|
|
|
</view>
|
|
|
<view class="dialog-item">
|
|
|
+ <text class="dialog-label">温度:</text>
|
|
|
+ <u--input inputAlign="center" v-model="formStateEdit.tNight2" placeholder="请输入"></u--input>
|
|
|
+ </view>
|
|
|
+ <view class="dialog-item">
|
|
|
<text class="dialog-label">甲烷传感器:</text>
|
|
|
<u--input inputAlign="center" v-model="formStateEdit.jwSdzNight2"
|
|
|
placeholder="请输入"></u--input>
|
|
@@ -500,6 +528,7 @@ export default {
|
|
|
gw: '',
|
|
|
bxy: '',
|
|
|
tbrq: moment(new Date()).format('YYYY-MM-DD'),
|
|
|
+ temp:'',
|
|
|
},
|
|
|
showZb1: false,
|
|
|
showZb2: false,
|
|
@@ -518,6 +547,7 @@ export default {
|
|
|
jwSdzEarly1: '',
|
|
|
o2Early1: '',
|
|
|
timeEarly1: '',
|
|
|
+ tEarly1:'',
|
|
|
|
|
|
bxySdzEarly2: '',
|
|
|
ch4Early2: '',
|
|
@@ -527,6 +557,7 @@ export default {
|
|
|
jwSdzEarly2: '',
|
|
|
o2Early2: '',
|
|
|
timeEarly2: '',
|
|
|
+ tEarly2:'',
|
|
|
|
|
|
bxySdzNoon1: '',
|
|
|
ch4Noon1: '',
|
|
@@ -537,6 +568,7 @@ export default {
|
|
|
jwSdzNoon1: '',
|
|
|
o2Noon1: '',
|
|
|
timeNoon1: '',
|
|
|
+ tNoon1:'',
|
|
|
|
|
|
bxySdzNoon2: '',
|
|
|
ch4Noon2: '',
|
|
@@ -546,6 +578,7 @@ export default {
|
|
|
jwSdzNoon2: '',
|
|
|
o2Noon2: '',
|
|
|
timeNoon2: '',
|
|
|
+ tNoon2:'',
|
|
|
|
|
|
bxySdzNight1: '',
|
|
|
ch4Night1: '',
|
|
@@ -556,6 +589,7 @@ export default {
|
|
|
jwSdzNight1: '',
|
|
|
o2Night1: '',
|
|
|
timeNight1: '',
|
|
|
+ tNight1:'',
|
|
|
|
|
|
bxySdzNight2: '',
|
|
|
ch4Night2: '',
|
|
@@ -565,8 +599,7 @@ export default {
|
|
|
jwSdzNight2: '',
|
|
|
o2Night2: '',
|
|
|
timeNight2: '',
|
|
|
-
|
|
|
-
|
|
|
+ tNight2:'',
|
|
|
},
|
|
|
showDialogBc: false,//控制班次选型下拉开启
|
|
|
showDialogCl: false,//控制测量次数选型下拉开启
|
|
@@ -745,6 +778,7 @@ export default {
|
|
|
jcy: that.formState.bc == '早班' ? data.checkPersonEarly : that.formState.bc == '午班' ? data.checkPersonNoon : data.checkPersonNight,
|
|
|
time: that.formState.time,
|
|
|
tbrq: that.formState.tbrq,
|
|
|
+ temp: that.formState.bc == '早班' && that.formState.count == '第一次' ? data.tEarly1 : that.formState.bc == '早班' && that.formState.count == '第二次' ? data.tEarly2 : that.formState.bc == '午班' && that.formState.count == '第一次' ? data.tNoon1: that.formState.bc == '午班' && that.formState.count == '第二次' ? data.tNoon2 : that.formState.bc == '晚班' && that.formState.count == '第一次' ? data.tNight1 : that.formState.bc == '晚班' && that.formState.count == '第二次' ? data.tNight2 : '',
|
|
|
ch4: that.formState.bc == '早班' && that.formState.count == '第一次' ? data.ch4Early1 : that.formState.bc == '早班' && that.formState.count == '第二次' ? data.ch4Early2 : that.formState.bc == '午班' && that.formState.count == '第一次' ? data.ch4Noon1 : that.formState.bc == '午班' && that.formState.count == '第二次' ? data.ch4Noon2 : that.formState.bc == '晚班' && that.formState.count == '第一次' ? data.ch4Night1 : that.formState.bc == '晚班' && that.formState.count == '第二次' ? data.ch4Night2 : '',
|
|
|
co2: that.formState.bc == '早班' && that.formState.count == '第一次' ? data.co2Early1 : that.formState.bc == '早班' && that.formState.count == '第二次' ? data.co2Early2 : that.formState.bc == '午班' && that.formState.count == '第一次' ? data.co2Noon1 : that.formState.bc == '午班' && that.formState.count == '第二次' ? data.co2Noon2 : that.formState.bc == '晚班' && that.formState.count == '第一次' ? data.co2Night1 : that.formState.bc == '晚班' && that.formState.count == '第二次' ? data.co2Night2 : '',
|
|
|
co: that.formState.bc == '早班' && that.formState.count == '第一次' ? data.coEarly1 : that.formState.bc == '早班' && that.formState.count == '第二次' ? data.coEarly2 : that.formState.bc == '午班' && that.formState.count == '第一次' ? data.coNoon1 : that.formState.bc == '午班' && that.formState.count == '第二次' ? data.coNoon2 : that.formState.bc == '晚班' && that.formState.count == '第一次' ? data.coNight1 : that.formState.bc == '晚班' && that.formState.count == '第二次' ? data.coNight2 : '',
|
|
@@ -771,7 +805,7 @@ export default {
|
|
|
jw: '',
|
|
|
gw: '',
|
|
|
bxy: '',
|
|
|
-
|
|
|
+ temp:'',
|
|
|
}
|
|
|
that.saveShow = 'add'
|
|
|
}
|
|
@@ -838,7 +872,8 @@ export default {
|
|
|
o2Early1: that.formState.o2,
|
|
|
strInstallPos: that.formState.jcdd,
|
|
|
timeEarly1: that.formState.time,
|
|
|
- reportTime: that.formState.tbrq
|
|
|
+ reportTime: that.formState.tbrq,
|
|
|
+ tEarly1:that.formState.temp
|
|
|
}
|
|
|
|
|
|
} else if (that.formState.bc == '早班' && that.formState.count == '第二次') {
|
|
@@ -854,7 +889,8 @@ export default {
|
|
|
o2Early2: that.formState.o2,
|
|
|
strInstallPos: that.formState.jcdd,
|
|
|
timeEarly2: that.formState.time,
|
|
|
- reportTime: that.formState.tbrq
|
|
|
+ reportTime: that.formState.tbrq,
|
|
|
+ tEarly2:that.formState.temp
|
|
|
}
|
|
|
} else if (that.formState.bc == '午班' && that.formState.count == '第一次') {
|
|
|
param = {
|
|
@@ -869,7 +905,8 @@ export default {
|
|
|
o2Noon1: that.formState.o2,
|
|
|
strInstallPos: that.formState.jcdd,
|
|
|
timeNoon1: that.formState.time,
|
|
|
- reportTime: that.formState.tbrq
|
|
|
+ reportTime: that.formState.tbrq,
|
|
|
+ tNoon1:that.formState.temp
|
|
|
}
|
|
|
|
|
|
} else if (that.formState.bc == '午班' && that.formState.count == '第二次') {
|
|
@@ -885,7 +922,8 @@ export default {
|
|
|
o2Noon2: that.formState.o2,
|
|
|
strInstallPos: that.formState.jcdd,
|
|
|
timeNoon2: that.formState.time,
|
|
|
- reportTime: that.formState.tbrq
|
|
|
+ reportTime: that.formState.tbrq,
|
|
|
+ tNoon2:that.formState.temp
|
|
|
}
|
|
|
|
|
|
} else if (that.formState.bc == '晚班' && that.formState.count == '第一次') {
|
|
@@ -901,7 +939,8 @@ export default {
|
|
|
o2Night1: that.formState.o2,
|
|
|
strInstallPos: that.formState.jcdd,
|
|
|
timeNight1: that.formState.time,
|
|
|
- reportTime: that.formState.tbrq
|
|
|
+ reportTime: that.formState.tbrq,
|
|
|
+ tNight1:that.formState.temp
|
|
|
}
|
|
|
} else if (that.formState.bc == '晚班' && that.formState.count == '第二次') {
|
|
|
param = {
|
|
@@ -916,7 +955,8 @@ export default {
|
|
|
o2Night2: that.formState.o2,
|
|
|
strInstallPos: that.formState.jcdd,
|
|
|
timeNight2: that.formState.time,
|
|
|
- reportTime: that.formState.tbrq
|
|
|
+ reportTime: that.formState.tbrq,
|
|
|
+ tNight2:that.formState.temp
|
|
|
}
|
|
|
}
|
|
|
} else {
|
|
@@ -933,6 +973,7 @@ export default {
|
|
|
o2Early1: that.formState.o2,
|
|
|
strInstallPos: that.formState.jcdd,
|
|
|
timeEarly1: that.formState.time,
|
|
|
+ tEarly1:that.formState.temp,
|
|
|
|
|
|
bxySdzEarly2: that.saveShowList.bxySdzEarly2,
|
|
|
ch4Early2: that.saveShowList.ch4Early2,
|
|
@@ -942,6 +983,7 @@ export default {
|
|
|
jwSdzEarly2: that.saveShowList.jwSdzEarly2,
|
|
|
o2Early2: that.saveShowList.o2Early2,
|
|
|
timeEarly2: that.saveShowList.timeEarly2,
|
|
|
+ tEarly2:that.saveShowList.tEarly2,
|
|
|
|
|
|
bxySdzNoon1: that.saveShowList.bxySdzNoon1,
|
|
|
ch4Noon1: that.saveShowList.ch4Noon1,
|
|
@@ -953,6 +995,7 @@ export default {
|
|
|
o2Noon1: that.saveShowList.o2Noon1,
|
|
|
strInstallPos: that.saveShowList.strInstallPos,
|
|
|
timeNoon1: that.saveShowList.timeNoon1,
|
|
|
+ tNoon1:that.saveShowList.tNoon1,
|
|
|
|
|
|
bxySdzNoon2: that.saveShowList.bxySdzNoon2,
|
|
|
ch4Noon2: that.saveShowList.ch4Noon2,
|
|
@@ -962,6 +1005,7 @@ export default {
|
|
|
jwSdzNoon2: that.saveShowList.jwSdzNoon2,
|
|
|
o2Noon2: that.saveShowList.o2Noon2,
|
|
|
timeNoon2: that.saveShowList.timeNoon2,
|
|
|
+ tNoon2:that.saveShowList.tNoon2,
|
|
|
|
|
|
|
|
|
bxySdzNight1: that.saveShowList.bxySdzNight1,
|
|
@@ -974,6 +1018,7 @@ export default {
|
|
|
o2Night1: that.saveShowList.o2Night1,
|
|
|
strInstallPos: that.saveShowList.strInstallPos,
|
|
|
timeNight1: that.saveShowList.timeNight1,
|
|
|
+ tNight1:that.saveShowList.tNight1,
|
|
|
|
|
|
|
|
|
bxySdzNight2: that.saveShowList.bxySdzNight2,
|
|
@@ -984,6 +1029,7 @@ export default {
|
|
|
jwSdzNight2: that.saveShowList.jwSdzNight2,
|
|
|
o2Night2: that.saveShowList.o2Night2,
|
|
|
timeNight2: that.saveShowList.timeNight2,
|
|
|
+ tNight2:that.saveShowList.tNight2,
|
|
|
}
|
|
|
|
|
|
} else if (that.formState.bc == '早班' && that.formState.count == '第二次') {
|
|
@@ -997,17 +1043,19 @@ export default {
|
|
|
jwSdzEarly1: that.saveShowList.jwSdzEarly1,
|
|
|
o2Early1: that.saveShowList.o2Early1,
|
|
|
timeEarly1: that.saveShowList.timeEarly1,
|
|
|
+ tEarly1:that.saveShowList.tEarly1,
|
|
|
|
|
|
- bxySdzEarly2: this.formState.bxy,
|
|
|
- ch4Early2: this.formState.ch4,
|
|
|
+ bxySdzEarly2: that.formState.bxy,
|
|
|
+ ch4Early2: that.formState.ch4,
|
|
|
checkPersonEarly: that.formState.jcy,
|
|
|
- co2Early2: this.formState.co2,
|
|
|
- coEarly2: this.formState.co,
|
|
|
- gwSdzEarly2: this.formState.gw,
|
|
|
- jwSdzEarly2: this.formState.jw,
|
|
|
- o2Early2: this.formState.o2,
|
|
|
+ co2Early2: that.formState.co2,
|
|
|
+ coEarly2: that.formState.co,
|
|
|
+ gwSdzEarly2: that.formState.gw,
|
|
|
+ jwSdzEarly2: that.formState.jw,
|
|
|
+ o2Early2: that.formState.o2,
|
|
|
strInstallPos: that.formState.jcdd,
|
|
|
- timeEarly2: this.formState.time,
|
|
|
+ timeEarly2: that.formState.time,
|
|
|
+ tEarly2:that.formState.temp,
|
|
|
|
|
|
bxySdzNoon1: that.saveShowList.bxySdzNoon1,
|
|
|
ch4Noon1: that.saveShowList.ch4Noon1,
|
|
@@ -1019,6 +1067,7 @@ export default {
|
|
|
o2Noon1: that.saveShowList.o2Noon1,
|
|
|
strInstallPos: that.saveShowList.strInstallPos,
|
|
|
timeNoon1: that.saveShowList.timeNoon1,
|
|
|
+ tNoon1:that.saveShowList.tNoon1,
|
|
|
|
|
|
bxySdzNoon2: that.saveShowList.bxySdzNoon2,
|
|
|
ch4Noon2: that.saveShowList.ch4Noon2,
|
|
@@ -1028,6 +1077,7 @@ export default {
|
|
|
jwSdzNoon2: that.saveShowList.jwSdzNoon2,
|
|
|
o2Noon2: that.saveShowList.o2Noon2,
|
|
|
timeNoon2: that.saveShowList.timeNoon2,
|
|
|
+ tNoon2:that.saveShowList.tNoon2,
|
|
|
|
|
|
|
|
|
bxySdzNight1: that.saveShowList.bxySdzNight1,
|
|
@@ -1040,6 +1090,7 @@ export default {
|
|
|
o2Night1: that.saveShowList.o2Night1,
|
|
|
strInstallPos: that.saveShowList.strInstallPos,
|
|
|
timeNight1: that.saveShowList.timeNight1,
|
|
|
+ tNight1:that.saveShowList.tNight1,
|
|
|
|
|
|
|
|
|
bxySdzNight2: that.saveShowList.bxySdzNight2,
|
|
@@ -1050,6 +1101,7 @@ export default {
|
|
|
jwSdzNight2: that.saveShowList.jwSdzNight2,
|
|
|
o2Night2: that.saveShowList.o2Night2,
|
|
|
timeNight2: that.saveShowList.timeNight2,
|
|
|
+ tNight2:that.saveShowList.tNight2,
|
|
|
}
|
|
|
} else if (that.formState.bc == '午班' && that.formState.count == '第一次') {
|
|
|
param = {
|
|
@@ -1064,15 +1116,17 @@ export default {
|
|
|
timeEarly1: that.saveShowList.timeEarly1,
|
|
|
checkPersonEarly: that.saveShowList.checkPersonEarly,
|
|
|
strInstallPos: that.saveShowList.strInstallPos,
|
|
|
+ tEarly1:that.saveShowList.tEarly1,
|
|
|
|
|
|
- bxySdzEarly2: this.saveShowList.bxySdzEarly2,
|
|
|
- ch4Early2: this.saveShowList.ch4Early2,
|
|
|
- co2Early2: this.saveShowList.co2Early2,
|
|
|
- coEarly2: this.saveShowList.coEarly2,
|
|
|
- gwSdzEarly2: this.saveShowList.gwSdzEarly2,
|
|
|
- jwSdzEarly2: this.saveShowList.jwSdzEarly2,
|
|
|
- o2Early2: this.saveShowList.o2Early2,
|
|
|
- timeEarly2: this.saveShowList.timeEarly2,
|
|
|
+ bxySdzEarly2: that.saveShowList.bxySdzEarly2,
|
|
|
+ ch4Early2: that.saveShowList.ch4Early2,
|
|
|
+ co2Early2: that.saveShowList.co2Early2,
|
|
|
+ coEarly2: that.saveShowList.coEarly2,
|
|
|
+ gwSdzEarly2: that.saveShowList.gwSdzEarly2,
|
|
|
+ jwSdzEarly2: that.saveShowList.jwSdzEarly2,
|
|
|
+ o2Early2: that.saveShowList.o2Early2,
|
|
|
+ timeEarly2: that.saveShowList.timeEarly2,
|
|
|
+ tEarly2:that.saveShowList.tEarly2,
|
|
|
|
|
|
bxySdzNoon1: that.formState.bxy,
|
|
|
ch4Noon1: that.formState.ch4,
|
|
@@ -1084,6 +1138,7 @@ export default {
|
|
|
o2Noon1: that.formState.o2,
|
|
|
strInstallPos: that.formState.jcdd,
|
|
|
timeNoon1: that.formState.time,
|
|
|
+ tNoon1:that.formState.temp,
|
|
|
|
|
|
bxySdzNoon2: that.saveShowList.bxySdzNoon2,
|
|
|
ch4Noon2: that.saveShowList.ch4Noon2,
|
|
@@ -1093,6 +1148,7 @@ export default {
|
|
|
jwSdzNoon2: that.saveShowList.jwSdzNoon2,
|
|
|
o2Noon2: that.saveShowList.o2Noon2,
|
|
|
timeNoon2: that.saveShowList.timeNoon2,
|
|
|
+ tNoon2:that.saveShowList.tNoon2,
|
|
|
|
|
|
|
|
|
bxySdzNight1: that.saveShowList.bxySdzNight1,
|
|
@@ -1105,6 +1161,7 @@ export default {
|
|
|
o2Night1: that.saveShowList.o2Night1,
|
|
|
strInstallPos: that.saveShowList.strInstallPos,
|
|
|
timeNight1: that.saveShowList.timeNight1,
|
|
|
+ tNight1:that.saveShowList.tNight1,
|
|
|
|
|
|
|
|
|
bxySdzNight2: that.saveShowList.bxySdzNight2,
|
|
@@ -1115,6 +1172,7 @@ export default {
|
|
|
jwSdzNight2: that.saveShowList.jwSdzNight2,
|
|
|
o2Night2: that.saveShowList.o2Night2,
|
|
|
timeNight2: that.saveShowList.timeNight2,
|
|
|
+ tNight2:that.saveShowList.tNight2,
|
|
|
}
|
|
|
|
|
|
} else if (that.formState.bc == '午班' && that.formState.count == '第二次') {
|
|
@@ -1130,15 +1188,17 @@ export default {
|
|
|
timeEarly1: that.saveShowList.timeEarly1,
|
|
|
checkPersonEarly: that.saveShowList.checkPersonEarly,
|
|
|
strInstallPos: that.saveShowList.strInstallPos,
|
|
|
+ tEarly1:that.saveShowList.tEarly1,
|
|
|
|
|
|
- bxySdzEarly2: this.saveShowList.bxySdzEarly2,
|
|
|
- ch4Early2: this.saveShowList.ch4Early2,
|
|
|
- co2Early2: this.saveShowList.co2Early2,
|
|
|
- coEarly2: this.saveShowList.coEarly2,
|
|
|
- gwSdzEarly2: this.saveShowList.gwSdzEarly2,
|
|
|
- jwSdzEarly2: this.saveShowList.jwSdzEarly2,
|
|
|
- o2Early2: this.saveShowList.o2Early2,
|
|
|
- timeEarly2: this.saveShowList.timeEarly2,
|
|
|
+ bxySdzEarly2: that.saveShowList.bxySdzEarly2,
|
|
|
+ ch4Early2: that.saveShowList.ch4Early2,
|
|
|
+ co2Early2: that.saveShowList.co2Early2,
|
|
|
+ coEarly2: that.saveShowList.coEarly2,
|
|
|
+ gwSdzEarly2: that.saveShowList.gwSdzEarly2,
|
|
|
+ jwSdzEarly2: that.saveShowList.jwSdzEarly2,
|
|
|
+ o2Early2: that.saveShowList.o2Early2,
|
|
|
+ timeEarly2: that.saveShowList.timeEarly2,
|
|
|
+ tEarly2:that.saveShowList.tEarly2,
|
|
|
|
|
|
bxySdzNoon1: that.saveShowList.bxySdzNoon1,
|
|
|
ch4Noon1: that.saveShowList.ch4Noon1,
|
|
@@ -1148,6 +1208,7 @@ export default {
|
|
|
jwSdzNoon1: that.saveShowList.jwSdzNoon1,
|
|
|
o2Noon1: that.saveShowList.o2Noon1,
|
|
|
timeNoon1: that.saveShowList.timeNoon1,
|
|
|
+ tNoon1:that.saveShowList.tNoon1,
|
|
|
|
|
|
bxySdzNoon2: that.formState.bxy,
|
|
|
ch4Noon2: that.formState.ch4,
|
|
@@ -1159,6 +1220,7 @@ export default {
|
|
|
o2Noon2: that.formState.o2,
|
|
|
strInstallPos: that.formState.jcdd,
|
|
|
timeNoon2: that.formState.time,
|
|
|
+ tNoon2:that.formState.temp,
|
|
|
|
|
|
|
|
|
bxySdzNight1: that.saveShowList.bxySdzNight1,
|
|
@@ -1171,6 +1233,7 @@ export default {
|
|
|
o2Night1: that.saveShowList.o2Night1,
|
|
|
strInstallPos: that.saveShowList.strInstallPos,
|
|
|
timeNight1: that.saveShowList.timeNight1,
|
|
|
+ tNight1:that.saveShowList.tNight1,
|
|
|
|
|
|
|
|
|
bxySdzNight2: that.saveShowList.bxySdzNight2,
|
|
@@ -1181,6 +1244,7 @@ export default {
|
|
|
jwSdzNight2: that.saveShowList.jwSdzNight2,
|
|
|
o2Night2: that.saveShowList.o2Night2,
|
|
|
timeNight2: that.saveShowList.timeNight2,
|
|
|
+ tNight2:that.saveShowList.tNight2,
|
|
|
}
|
|
|
|
|
|
} else if (that.formState.bc == '晚班' && that.formState.count == '第一次') {
|
|
@@ -1196,15 +1260,18 @@ export default {
|
|
|
timeEarly1: that.saveShowList.timeEarly1,
|
|
|
checkPersonEarly: that.saveShowList.checkPersonEarly,
|
|
|
strInstallPos: that.saveShowList.strInstallPos,
|
|
|
+ tEarly1:that.saveShowList.tEarly1,
|
|
|
|
|
|
- bxySdzEarly2: this.saveShowList.bxySdzEarly2,
|
|
|
- ch4Early2: this.saveShowList.ch4Early2,
|
|
|
- co2Early2: this.saveShowList.co2Early2,
|
|
|
- coEarly2: this.saveShowList.coEarly2,
|
|
|
- gwSdzEarly2: this.saveShowList.gwSdzEarly2,
|
|
|
- jwSdzEarly2: this.saveShowList.jwSdzEarly2,
|
|
|
- o2Early2: this.saveShowList.o2Early2,
|
|
|
- timeEarly2: this.saveShowList.timeEarly2,
|
|
|
+
|
|
|
+ bxySdzEarly2: that.saveShowList.bxySdzEarly2,
|
|
|
+ ch4Early2: that.saveShowList.ch4Early2,
|
|
|
+ co2Early2: that.saveShowList.co2Early2,
|
|
|
+ coEarly2: that.saveShowList.coEarly2,
|
|
|
+ gwSdzEarly2: that.saveShowList.gwSdzEarly2,
|
|
|
+ jwSdzEarly2: that.saveShowList.jwSdzEarly2,
|
|
|
+ o2Early2: that.saveShowList.o2Early2,
|
|
|
+ timeEarly2: that.saveShowList.timeEarly2,
|
|
|
+ tEarly2:that.saveShowList.tEarly2,
|
|
|
|
|
|
bxySdzNoon1: that.saveShowList.bxySdzNoon1,
|
|
|
ch4Noon1: that.saveShowList.ch4Noon1,
|
|
@@ -1214,6 +1281,7 @@ export default {
|
|
|
jwSdzNoon1: that.saveShowList.jwSdzNoon1,
|
|
|
o2Noon1: that.saveShowList.o2Noon1,
|
|
|
timeNoon1: that.saveShowList.timeNoon1,
|
|
|
+ tNoon1:that.saveShowList.tNoon1,
|
|
|
|
|
|
bxySdzNoon2: that.saveShowList.bxySdzNoon2,
|
|
|
ch4Noon2: that.saveShowList.ch4Noon2,
|
|
@@ -1225,6 +1293,7 @@ export default {
|
|
|
o2Noon2: that.saveShowList.o2Noon2,
|
|
|
strInstallPos: that.saveShowList.strInstallPos,
|
|
|
timeNoon2: that.saveShowList.timeNoon2,
|
|
|
+ tNoon2:that.saveShowList.tNoon2,
|
|
|
|
|
|
|
|
|
bxySdzNight1: that.formState.bxy,
|
|
@@ -1237,6 +1306,7 @@ export default {
|
|
|
o2Night1: that.formState.o2,
|
|
|
strInstallPos: that.formState.jcdd,
|
|
|
timeNight1: that.formState.time,
|
|
|
+ tNight1:that.formState.temp,
|
|
|
|
|
|
|
|
|
bxySdzNight2: that.saveShowList.bxySdzNight2,
|
|
@@ -1247,6 +1317,7 @@ export default {
|
|
|
jwSdzNight2: that.saveShowList.jwSdzNight2,
|
|
|
o2Night2: that.saveShowList.o2Night2,
|
|
|
timeNight2: that.saveShowList.timeNight2,
|
|
|
+ tNight2:that.saveShowList.tNight2,
|
|
|
}
|
|
|
} else if (that.formState.bc == '晚班' && that.formState.count == '第二次') {
|
|
|
param = {
|
|
@@ -1261,15 +1332,17 @@ export default {
|
|
|
timeEarly1: that.saveShowList.timeEarly1,
|
|
|
checkPersonEarly: that.saveShowList.checkPersonEarly,
|
|
|
strInstallPos: that.saveShowList.strInstallPos,
|
|
|
+ tEarly1:that.saveShowList.tEarly1,
|
|
|
|
|
|
- bxySdzEarly2: this.saveShowList.bxySdzEarly2,
|
|
|
- ch4Early2: this.saveShowList.ch4Early2,
|
|
|
- co2Early2: this.saveShowList.co2Early2,
|
|
|
- coEarly2: this.saveShowList.coEarly2,
|
|
|
- gwSdzEarly2: this.saveShowList.gwSdzEarly2,
|
|
|
- jwSdzEarly2: this.saveShowList.jwSdzEarly2,
|
|
|
- o2Early2: this.saveShowList.o2Early2,
|
|
|
- timeEarly2: this.saveShowList.timeEarly2,
|
|
|
+ bxySdzEarly2: that.saveShowList.bxySdzEarly2,
|
|
|
+ ch4Early2: that.saveShowList.ch4Early2,
|
|
|
+ co2Early2: that.saveShowList.co2Early2,
|
|
|
+ coEarly2: that.saveShowList.coEarly2,
|
|
|
+ gwSdzEarly2: that.saveShowList.gwSdzEarly2,
|
|
|
+ jwSdzEarly2: that.saveShowList.jwSdzEarly2,
|
|
|
+ o2Early2: that.saveShowList.o2Early2,
|
|
|
+ timeEarly2: that.saveShowList.timeEarly2,
|
|
|
+ tEarly2:that.saveShowList.tEarly2,
|
|
|
|
|
|
bxySdzNoon1: that.saveShowList.bxySdzNoon1,
|
|
|
ch4Noon1: that.saveShowList.ch4Noon1,
|
|
@@ -1279,6 +1352,7 @@ export default {
|
|
|
jwSdzNoon1: that.saveShowList.jwSdzNoon1,
|
|
|
o2Noon1: that.saveShowList.o2Noon1,
|
|
|
timeNoon1: that.saveShowList.timeNoon1,
|
|
|
+ tNoon1:that.saveShowList.tNoon1,
|
|
|
|
|
|
bxySdzNoon2: that.saveShowList.bxySdzNoon2,
|
|
|
ch4Noon2: that.saveShowList.ch4Noon2,
|
|
@@ -1290,6 +1364,7 @@ export default {
|
|
|
o2Noon2: that.saveShowList.o2Noon2,
|
|
|
strInstallPos: that.saveShowList.strInstallPos,
|
|
|
timeNoon2: that.saveShowList.timeNoon2,
|
|
|
+ tNoon2:that.saveShowList.tNoon2,
|
|
|
|
|
|
|
|
|
bxySdzNight1: that.saveShowList.bxySdzNight1,
|
|
@@ -1300,6 +1375,7 @@ export default {
|
|
|
jwSdzNight1: that.saveShowList.jwSdzNight1,
|
|
|
o2Night1: that.saveShowList.o2Night1,
|
|
|
timeNight1: that.saveShowList.timeNight1,
|
|
|
+ tNight1:that.saveShowList.tNight1,
|
|
|
|
|
|
|
|
|
bxySdzNight2: that.formState.bxy,
|
|
@@ -1312,6 +1388,7 @@ export default {
|
|
|
o2Night2: that.formState.o2,
|
|
|
strInstallPos: that.formState.jcdd,
|
|
|
timeNight2: that.formState.time,
|
|
|
+ tNight2:that.formState.temp,
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -1394,6 +1471,7 @@ export default {
|
|
|
gw: '',
|
|
|
bxy: '',
|
|
|
tbrq: '',
|
|
|
+ temp:'',
|
|
|
}
|
|
|
},
|
|
|
//新增取消
|