|
|
|
@ -31,10 +31,10 @@ |
|
|
|
</el-timeline> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="处理意见(内部):" prop="handleAdvice" :required="true"> |
|
|
|
<el-input v-model="postDataForm.handleAdvice" placeholder="不超过50字"></el-input> |
|
|
|
<el-input v-model="postDataForm.handleAdvice" placeholder="不超过500字"></el-input> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="处理意见(外部):" prop="outHandleAdvice" :required="true"> |
|
|
|
<el-input v-model="postDataForm.outHandleAdvice" placeholder="不超过50字"></el-input> |
|
|
|
<el-input v-model="postDataForm.outHandleAdvice" placeholder="不超过500字"></el-input> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="处理:" prop="handleCategory" :required="true"> |
|
|
|
<el-select v-model="postDataForm.handleCategory" placeholder="请选择"> |
|
|
|
@ -117,7 +117,6 @@ export default { |
|
|
|
if (val === 1) { |
|
|
|
this.deptResultDTOSVisible = true |
|
|
|
this.evaluateDeptDTOSVisible = false |
|
|
|
console.log(this.dataForm.deptResultDTOS) |
|
|
|
for (let index = 0; index < this.dataForm.deptResultDTOS.length; index++) { |
|
|
|
const deptResultDTO = this.dataForm.deptResultDTOS[index] |
|
|
|
if (deptResultDTO.selected === true) { |
|
|
|
@ -174,14 +173,14 @@ export default { |
|
|
|
if (this.postDataForm.handleAdvice === '') { |
|
|
|
return this.$message.error('内部处理意见不能为空') |
|
|
|
} |
|
|
|
if (this.postDataForm.handleAdvice.length > 50) { |
|
|
|
return this.$message.error('内部处理意见不能超过50字') |
|
|
|
if (this.postDataForm.handleAdvice.length > 500) { |
|
|
|
return this.$message.error('内部处理意见不能超过500字') |
|
|
|
} |
|
|
|
if (this.postDataForm.outHandleAdvice === '') { |
|
|
|
return this.$message.error('外部处理意见不能为空') |
|
|
|
} |
|
|
|
if (this.postDataForm.outHandleAdvice > 50) { |
|
|
|
return this.$message.error('外部处理意见不能超过50字') |
|
|
|
if (this.postDataForm.outHandleAdvice > 500) { |
|
|
|
return this.$message.error('外部处理意见不能超过500字') |
|
|
|
} |
|
|
|
if (this.postDataForm.handleCategory === '') { |
|
|
|
return this.$message.error('请选择处理选项') |
|
|
|
|