|
@@ -10,6 +10,12 @@
|
|
:localdata="goafList"
|
|
:localdata="goafList"
|
|
></uni-data-select>
|
|
></uni-data-select>
|
|
</uni-forms-item>
|
|
</uni-forms-item>
|
|
|
|
+ <uni-forms-item label="预警类型" name="hdangerType" required>
|
|
|
|
+ <uni-data-select :clear="false"
|
|
|
|
+ v-model="formData.hdangerType"
|
|
|
|
+ :localdata="hdangerTypes"
|
|
|
|
+ ></uni-data-select>
|
|
|
|
+ </uni-forms-item>
|
|
<uni-forms-item v-if="formState!=='form_checkList'" label="检查表" name="checklistId" required>
|
|
<uni-forms-item v-if="formState!=='form_checkList'" label="检查表" name="checklistId" required>
|
|
<uni-data-select
|
|
<uni-data-select
|
|
v-model="formData.checklistId"
|
|
v-model="formData.checklistId"
|
|
@@ -85,6 +91,7 @@
|
|
'dangerDeadline': '', // 截止时间
|
|
'dangerDeadline': '', // 截止时间
|
|
'goafId': undefined,
|
|
'goafId': undefined,
|
|
'checklistId': '',
|
|
'checklistId': '',
|
|
|
|
+ 'hdangerType':0,
|
|
"attachList":[]
|
|
"attachList":[]
|
|
},
|
|
},
|
|
formState:undefined,
|
|
formState:undefined,
|
|
@@ -94,6 +101,10 @@
|
|
userList:[],
|
|
userList:[],
|
|
checkList:[],
|
|
checkList:[],
|
|
goafList:[],
|
|
goafList:[],
|
|
|
|
+ hdangerTypes:[
|
|
|
|
+ {"value": 0,"text": "人员巡检" },
|
|
|
|
+ {"value": 1,"text": "传感器巡检"},
|
|
|
|
+ ],
|
|
hdangerLevels:[
|
|
hdangerLevels:[
|
|
{"value": 0,"text": "较低" },
|
|
{"value": 0,"text": "较低" },
|
|
{"value": 1,"text": "一般"},
|
|
{"value": 1,"text": "一般"},
|
|
@@ -259,7 +270,8 @@
|
|
this.formData.submitPositionId = userData.positionId
|
|
this.formData.submitPositionId = userData.positionId
|
|
this.formData.submitPositionName = userData.positionName
|
|
this.formData.submitPositionName = userData.positionName
|
|
this.formData.submitAccountId = userData.userId
|
|
this.formData.submitAccountId = userData.userId
|
|
- this.formData.submitAccountName = userData.userName
|
|
|
|
|
|
+ this.formData.submitAccountName = userData.userName
|
|
|
|
+ /*评审人信息*/
|
|
this.formData.reviewRemark = this.flowData.hdangerDesc
|
|
this.formData.reviewRemark = this.flowData.hdangerDesc
|
|
this.formData.reviewAccountName = user.accountName
|
|
this.formData.reviewAccountName = user.accountName
|
|
this.formData.reviewGroupId = user.groupId
|
|
this.formData.reviewGroupId = user.groupId
|