Commit 310730a9 authored by lizhichao's avatar lizhichao

安全承诺添加默认值

parent 9c9dd88e
......@@ -86,7 +86,7 @@
<el-row>
<el-col :span="8">
<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-col>
</el-row>
......@@ -110,7 +110,7 @@
<el-row>
<el-col :span="8">
<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-col>
</el-row>
......@@ -389,7 +389,7 @@ export default {
let begin = this.dateRange[0],
end = this.dateRange[1];
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("params", params);
}else{
......@@ -443,14 +443,14 @@ export default {
runningDevice: null,
shutdownDevice: null,
maintenanceDevice: null,
hotWork: null,
hotWork: 0,
specialHotWork: null,
classOneHotWork: null,
classTwoHotWork: null,
isConfinedSpace: null,
isTrialProduction: null,
isSecurityStatus: null,
assessmentLevel: null,
isConfinedSpace: "1",
isTrialProduction: "1",
isSecurityStatus: "1",
assessmentLevel: "1",
keyPerson: 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