|
@@ -128,31 +128,31 @@
|
|
|
<el-tab-pane label="最终还款明细" v-if="this.companyType == '01'">
|
|
|
<el-row class="zap-form">
|
|
|
<el-col :span="12">
|
|
|
- <text-item label="还款明细编号" :value="form.zfrPayNumber"></text-item>
|
|
|
+ <text-item label="还款明细编号" :value="forms.zfrPayNumber"></text-item>
|
|
|
</el-col>
|
|
|
<el-col :span="12">
|
|
|
- <text-item label="最终付款方" :value="form.core"></text-item>
|
|
|
+ <text-item label="最终付款方" :value="forms.core"></text-item>
|
|
|
</el-col>
|
|
|
<el-col :span="12">
|
|
|
- <text-item label="还款承诺函编号" :value="form.zfiPaymentNumber"></text-item>
|
|
|
+ <text-item label="还款承诺函编号" :value="forms.zfiPaymentNumber"></text-item>
|
|
|
</el-col>
|
|
|
<el-col :span="12">
|
|
|
- <text-item label="付款承诺日期" :value="form.zfrRepaymentDate"></text-item>
|
|
|
+ <text-item label="付款承诺日期" :value="forms.zfrRepaymentDate"></text-item>
|
|
|
</el-col>
|
|
|
<el-col :span="12">
|
|
|
- <text-item label="承诺付款金额" :value="form.zfrLoanAmount"></text-item>
|
|
|
+ <text-item label="承诺付款金额" :value="forms.zfrLoanAmount"></text-item>
|
|
|
</el-col>
|
|
|
<el-col :span="12">
|
|
|
- <text-item label="融信产品" :value="form.zfpName"></text-item>
|
|
|
+ <text-item label="融信产品" :value="forms.zfpName"></text-item>
|
|
|
</el-col>
|
|
|
<el-col :span="12">
|
|
|
- <text-item label="承诺付款账户" :value="form.zfpcrAccount"></text-item>
|
|
|
+ <text-item label="承诺付款账户" :value="forms.zfpcrAccount"></text-item>
|
|
|
</el-col>
|
|
|
<el-col :span="12">
|
|
|
- <text-item label="付款账户开户行" :value="form.zfpcrAccountBank"></text-item>
|
|
|
+ <text-item label="付款账户开户行" :value="forms.zfpcrAccountBank"></text-item>
|
|
|
</el-col>
|
|
|
<el-col :span="12">
|
|
|
- <text-item label="还款状态" :value="form.zfrApplyStatus"></text-item>
|
|
|
+ <text-item label="还款状态" :value="forms.zfrApplyStatus"></text-item>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
<el-row class="zap-form">
|
|
@@ -276,7 +276,6 @@ export default {
|
|
|
const zfiId = this.$route.params && this.$route.params.zfiId;
|
|
|
getCreditDetail(zfiId)
|
|
|
.then(response => {
|
|
|
- debugger;
|
|
|
if (response.data) {
|
|
|
//融信信息
|
|
|
this.form = response.data.financeInf;
|
|
@@ -432,7 +431,6 @@ export default {
|
|
|
},
|
|
|
//详情按钮
|
|
|
handleDetail(index, rows) {
|
|
|
- debugger;
|
|
|
this.zbiId = rows[index].zbiId;
|
|
|
this.openDetailBill = true;
|
|
|
},
|