Commit 310730a9 authored by lizhichao's avatar lizhichao

安全承诺添加默认值

parent 9c9dd88e
...@@ -86,7 +86,7 @@ ...@@ -86,7 +86,7 @@
<el-row> <el-row>
<el-col :span="8"> <el-col :span="8">
<el-form-item label="生产装置" prop="productionUnit"> <el-form-item label="生产装置" prop="productionUnit">
<el-input v-model="form.productionUnit" placeholder="" disabled/> <el-input v-model="form.productionUnit" placeholder="0" disabled/>
</el-form-item> </el-form-item>
</el-col> </el-col>
</el-row> </el-row>
...@@ -110,7 +110,7 @@ ...@@ -110,7 +110,7 @@
<el-row> <el-row>
<el-col :span="8"> <el-col :span="8">
<el-form-item label="动火作业" prop="hotWork"> <el-form-item label="动火作业" prop="hotWork">
<el-input v-model="form.hotWork" placeholder="" disabled/> <el-input v-model="form.hotWork" placeholder="0" disabled/>
</el-form-item> </el-form-item>
</el-col> </el-col>
</el-row> </el-row>
...@@ -389,7 +389,7 @@ export default { ...@@ -389,7 +389,7 @@ export default {
let begin = this.dateRange[0], let begin = this.dateRange[0],
end = this.dateRange[1]; end = this.dateRange[1];
params = [begin.getFullYear()+'-'+(begin.getMonth()+1)+'-'+begin.getDate()+' '+begin.getHours()+':'+begin.getMinutes()+':'+begin.getSeconds(), params = [begin.getFullYear()+'-'+(begin.getMonth()+1)+'-'+begin.getDate()+' '+begin.getHours()+':'+begin.getMinutes()+':'+begin.getSeconds(),
end.getFullYear()+'-'+(begin.getMonth()+1)+'-'+end.getDate()+' '+end.getHours()+':'+end.getMinutes()+':'+end.getSeconds()]; end.getFullYear()+'-'+(begin.getMonth()+1)+'-'+end.getDate()+' 23:59:59'];
console.log(begin, end); console.log(begin, end);
console.log("params", params); console.log("params", params);
}else{ }else{
...@@ -443,14 +443,14 @@ export default { ...@@ -443,14 +443,14 @@ export default {
runningDevice: null, runningDevice: null,
shutdownDevice: null, shutdownDevice: null,
maintenanceDevice: null, maintenanceDevice: null,
hotWork: null, hotWork: 0,
specialHotWork: null, specialHotWork: null,
classOneHotWork: null, classOneHotWork: null,
classTwoHotWork: null, classTwoHotWork: null,
isConfinedSpace: null, isConfinedSpace: "1",
isTrialProduction: null, isTrialProduction: "1",
isSecurityStatus: null, isSecurityStatus: "1",
assessmentLevel: null, assessmentLevel: "1",
keyPerson: null, keyPerson: null,
announcement: null announcement: null
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment