fix
This commit is contained in:
parent
814956f7d1
commit
316e9e7a66
|
|
@ -280,7 +280,7 @@
|
|||
<tr>
|
||||
<th><span style="color:red">*</span>作出决定的事实、理由、依据及主要内容</th>
|
||||
<td colspan="3">
|
||||
<el-input v-model="formData.remreasons" type="textarea" :autosize="{ minRows: 4}" maxlength="500" show-word-limit placeholder="请输入作出决定的事实、理由、依据及主要内容" style="width:100%" />
|
||||
<el-input v-model="formData.situation" type="textarea" :autosize="{ minRows: 4}" maxlength="500" show-word-limit placeholder="请输入作出决定的事实、理由、依据及主要内容" style="width:100%" />
|
||||
</td>
|
||||
</tr>
|
||||
<template v-if="historyLog && historyLog.length > 0">
|
||||
|
|
@ -446,7 +446,7 @@ export default {
|
|||
multipleSelection: [],
|
||||
form: {
|
||||
enterType: 'company',
|
||||
remreasons: '',
|
||||
situation: '',
|
||||
repairReason: '',
|
||||
remRemark: '',
|
||||
opinion: ''
|
||||
|
|
@ -496,7 +496,7 @@ export default {
|
|||
operOpinion: '',
|
||||
opinion: '',
|
||||
nextPerformerids: '',
|
||||
remreasons: ''
|
||||
situation: ''
|
||||
},
|
||||
// 意见-经办人
|
||||
handleOpinion: {
|
||||
|
|
@ -1023,11 +1023,11 @@ export default {
|
|||
this.submitLoading = false
|
||||
return this.$message.error('请输入退回原因')
|
||||
}
|
||||
if (this.isAccept === '1' && this.$util.isEmpty(this.formData.remreasons)) {
|
||||
if (this.isAccept === '1' && this.$util.isEmpty(this.formData.situation)) {
|
||||
this.submitLoading = false
|
||||
return this.$message.error('请输入作出决定的事实、理由、依据及主要内容')
|
||||
}
|
||||
if (this.isAccept === '1' && this.formData.remreasons.length > 500) {
|
||||
if (this.isAccept === '1' && this.formData.situation.length > 500) {
|
||||
this.submitLoading = false
|
||||
return this.$message.warning('作出决定的事实、理由长度不大于500!')
|
||||
}
|
||||
|
|
@ -1073,6 +1073,7 @@ export default {
|
|||
...this.detailInfo.repairInfo,
|
||||
acceptStatus: this.isAccept,
|
||||
repairReason: this.repairReason,
|
||||
situation: this.formData.situation,
|
||||
remark: this.remRemark
|
||||
},
|
||||
opinionQuery: {
|
||||
|
|
|
|||
Loading…
Reference in New Issue