|
|
@ -107,7 +107,7 @@ |
|
|
|
<!-- 查看车辆历史催收记录 --> |
|
|
|
<vehiclecollectionrecords v-show="viewState == 4" ref="divRecords" @doback="resetState"/> |
|
|
|
<!-- 维护还款操作人 --> |
|
|
|
<el-dialog title="录入实际还款人" :visible.sync="dialogVisible" width="70%"> |
|
|
|
<el-dialog title="录入还款操作人" :visible.sync="dialogVisible" width="70%"> |
|
|
|
<el-form ref="form_obj" :model="formobj" class="formadd"> |
|
|
|
<el-row style="border-top: 1px solid #e0e3eb"> |
|
|
|
<el-col :span="5" class="tleftb"> |
|
|
@ -139,13 +139,13 @@ |
|
|
|
</el-row> |
|
|
|
<el-row> |
|
|
|
<el-col :span="5" class="tleftb"> |
|
|
|
<span>实际还款人名称</span> |
|
|
|
<span>还款操作人名称</span> |
|
|
|
</el-col> |
|
|
|
<el-col :span="7"> |
|
|
|
<el-form-item><el-input v-model="formobj.reaRepaymentName" clearable placeholder="" /></el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="5" class="tleftb"> |
|
|
|
<span>实际还款人电话</span> |
|
|
|
<span>还款操作人电话</span> |
|
|
|
</el-col> |
|
|
|
<el-col :span="7"> |
|
|
|
<el-form-item><el-input v-model="formobj.reaRepaymentPhone" clearable placeholder="" /></el-form-item> |
|
|
@ -398,7 +398,7 @@ export default { |
|
|
|
}, |
|
|
|
handleSave() { |
|
|
|
if (this.formobj.reaRepaymentName === '' || this.formobj.reaRepaymentPhone === '') { |
|
|
|
this.$message({ showClose: true, type: 'error', message: '实际还款人名称和电话不能为空' }) |
|
|
|
this.$message({ showClose: true, type: 'error', message: '还款操作人名称和电话不能为空' }) |
|
|
|
return |
|
|
|
} |
|
|
|
req.maintReaRepayment(this.formobj).then((res) => { |
|
|
|