|
|
@ -174,9 +174,15 @@ export default { |
|
|
|
if (this.postDataForm.handleAdvice === '') { |
|
|
|
return this.$message.error('内部处理意见不能为空') |
|
|
|
} |
|
|
|
if (this.postDataForm.handleAdvice.length > 50) { |
|
|
|
return this.$message.error('内部处理意见不能超过50字') |
|
|
|
} |
|
|
|
if (this.postDataForm.outHandleAdvice === '') { |
|
|
|
return this.$message.error('外部处理意见不能为空') |
|
|
|
} |
|
|
|
if (this.postDataForm.outHandleAdvice > 50) { |
|
|
|
return this.$message.error('外部处理意见不能超过50字') |
|
|
|
} |
|
|
|
if (this.postDataForm.handleCategory === '') { |
|
|
|
return this.$message.error('请选择处理选项') |
|
|
|
} |
|
|
|