diff --git a/src/views/hidden/rectify/components/change.vue b/src/views/hidden/rectify/components/change.vue index c80f0f7..aa45fd9 100644 --- a/src/views/hidden/rectify/components/change.vue +++ b/src/views/hidden/rectify/components/change.vue @@ -33,6 +33,9 @@ + + + = 1 && this.form.TEMPORARY_SAFE_MEASURE == '') { + this.$message({ + message: '临时安全措施不能为空,请先返回上个页面填写临时安全措施!!!', + type: 'error' + }) + this.loading = false + return false + } if (this.$refs.zhenggaiupload.uploadFiles.length < 1) { this.$message({ message: '请上传整改后照片', @@ -457,6 +475,7 @@ export default { formdata.append('CHECKDEPT', this.form.DEPARTMENT_ID) // 验收人 formdata.append('CHECKOR', this.form.USER_ID) // 验收部门 formdata.append('OTHER', JSON.stringify(this.other)) // 其他验收人 + formdata.append('TEMPORARY_SAFE_MEASURE', this.form.TEMPORARY_SAFE_MEASURE) // 临时安全措施 if (this.form.USER_ID == this.loginUserid) { this.$message({ message: '验收人和整改人不能是同一个人!', diff --git a/src/views/hiddenApi/publicMethod/detail.vue b/src/views/hiddenApi/publicMethod/detail.vue index e214305..a889b3b 100644 --- a/src/views/hiddenApi/publicMethod/detail.vue +++ b/src/views/hiddenApi/publicMethod/detail.vue @@ -116,6 +116,10 @@ 是否相关方 {{ pd.ISRELEVANT=='1'?'是':'否' }} + + 临时安全措施 + {{ pd.TEMP_SAFE_MEASURE !== undefined ? pd.TEMP_SAFE_MEASURE : '' }} +