This commit is contained in:
cc_caijp 2026-01-09 15:34:28 +08:00
parent 814956f7d1
commit 316e9e7a66
1 changed files with 6 additions and 5 deletions

View File

@ -280,7 +280,7 @@
<tr> <tr>
<th><span style="color:red">*</span>作出决定的事实理由依据及主要内容</th> <th><span style="color:red">*</span>作出决定的事实理由依据及主要内容</th>
<td colspan="3"> <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> </td>
</tr> </tr>
<template v-if="historyLog && historyLog.length > 0"> <template v-if="historyLog && historyLog.length > 0">
@ -446,7 +446,7 @@ export default {
multipleSelection: [], multipleSelection: [],
form: { form: {
enterType: 'company', enterType: 'company',
remreasons: '', situation: '',
repairReason: '', repairReason: '',
remRemark: '', remRemark: '',
opinion: '' opinion: ''
@ -496,7 +496,7 @@ export default {
operOpinion: '', operOpinion: '',
opinion: '', opinion: '',
nextPerformerids: '', nextPerformerids: '',
remreasons: '' situation: ''
}, },
// - // -
handleOpinion: { handleOpinion: {
@ -1023,11 +1023,11 @@ export default {
this.submitLoading = false this.submitLoading = false
return this.$message.error('请输入退回原因') 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 this.submitLoading = false
return this.$message.error('请输入作出决定的事实、理由、依据及主要内容') 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 this.submitLoading = false
return this.$message.warning('作出决定的事实、理由长度不大于500') return this.$message.warning('作出决定的事实、理由长度不大于500')
} }
@ -1073,6 +1073,7 @@ export default {
...this.detailInfo.repairInfo, ...this.detailInfo.repairInfo,
acceptStatus: this.isAccept, acceptStatus: this.isAccept,
repairReason: this.repairReason, repairReason: this.repairReason,
situation: this.formData.situation,
remark: this.remRemark remark: this.remRemark
}, },
opinionQuery: { opinionQuery: {