1.除名修复管理清单显示字段调整

This commit is contained in:
cc_caijp 2026-01-09 15:18:41 +08:00
parent ab7b6da15b
commit 95221b3799
1 changed files with 15 additions and 10 deletions

View File

@ -43,14 +43,14 @@
<tr> <tr>
<th><span style="color:red">*</span>申请人</th> <th><span style="color:red">*</span>申请人</th>
<td colspan="2"> <td colspan="2">
<el-input v-model="contactName" placeholder="请输入申请人" /> <el-input v-model="detailInfo.repairInfo.contactName" placeholder="请输入申请人" />
<!-- {{ companyInfo.applicant }} --> <!-- {{ companyInfo.applicant }} -->
</td> </td>
</tr> </tr>
<tr> <tr>
<th>除名时间</th> <th>除名时间</th>
<td> <td>
{{ detailInfo?.repairInfo?.applyDate || '' }} {{ detailInfo?.repairInfo?.removeDate || '' }}
</td> </td>
</tr> </tr>
<tr> <tr>
@ -638,7 +638,7 @@ export default {
if (this.$util.isEmpty(this.repairReason)) { if (this.$util.isEmpty(this.repairReason)) {
return this.$message.warning('请选择移出原因') return this.$message.warning('请选择移出原因')
} }
if (this.$util.isEmpty(this.contactName)) { if (this.$util.isEmpty(this.detailInfo.repairInfo.contactName)) {
return this.$message.warning('请输入申请人') return this.$message.warning('请输入申请人')
} }
this.activeName = 'second' this.activeName = 'second'
@ -1069,15 +1069,20 @@ export default {
nextNodeId: 'handleExptlist', nextNodeId: 'handleExptlist',
nextPerformerIds: this.formData.nextPerformerids, nextPerformerIds: this.formData.nextPerformerids,
nextPerformerNames: this.formData.nextPerformerNames, nextPerformerNames: this.formData.nextPerformerNames,
repairApproveInfo: this.detailInfo.repairInfo, repairApproveInfo: {
opinionQuery: { ...this.detailInfo.repairInfo,
acceptStatus: this.isAccept, acceptStatus: this.isAccept,
isAgreeRepair: this.isAgreeRepair,
contactName: this.contactName,
repairReason: this.repairReason, repairReason: this.repairReason,
remreasons: this.formData.remreasons, remark: this.remRemark
opinion: this.formData.opinion, },
remRemark: this.remRemark opinionQuery: {
bizseq: this.bizId,
workflowid: this.workflowid,
handler: this.user.nickname,
handlerid: this.user.primaryKey,
opiniontype: '0',
isagree: '1',
opinioncontent: this.formData.opinion
} }
} }
expelledRepairNextBiz(params).then(res => { expelledRepairNextBiz(params).then(res => {