|
|
@ -1,14 +1,15 @@ |
|
|
|
<template> |
|
|
|
<template> |
|
|
|
<div class="info my-2"> |
|
|
|
<div class="info my-2"> |
|
|
|
<template v-if="route.params.action !== 'add'"> |
|
|
|
<h1 v-if="riskInfo" |
|
|
|
<h6 class="step-name">{{ route.params.action !== 'config' ? '一、' : '' }}产品定义</h6> |
|
|
|
class="mb-3 text-xl font-semibold text-center">{{ info.productName }}产品手册</h1> |
|
|
|
<p class="text">{{ info.productDefinition }}</p> |
|
|
|
<h6 class="step-name">{{ route.params.action !== 'config' ? '一、' : '' }}产品定义</h6> |
|
|
|
<h6 class="step-name mt-5">{{ route.params.action !== 'config' ? '二、' : '' }}产品要素</h6> |
|
|
|
<p class="text">{{ info.productDefinition }}</p> |
|
|
|
<p class="text">产品名称:{{ info.productName }}</p> |
|
|
|
<h6 class="step-name mt-5">{{ route.params.action !== 'config' ? '二、' : '' }}产品要素</h6> |
|
|
|
<p class="text">贷款币种:人民币</p> |
|
|
|
<p class="text">产品名称:{{ info.productName }}</p> |
|
|
|
<p v-if="info.loanPurpose" |
|
|
|
<p class="text">贷款币种:人民币</p> |
|
|
|
class="text"> |
|
|
|
<p v-if="info.loanPurpose" |
|
|
|
贷款用途:{{ |
|
|
|
class="text"> |
|
|
|
|
|
|
|
贷款用途:{{ |
|
|
|
info.loanPurpose === '购房' |
|
|
|
info.loanPurpose === '购房' |
|
|
|
? '可用于住房按揭贷款、二手房住房按揭贷款。' |
|
|
|
? '可用于住房按揭贷款、二手房住房按揭贷款。' |
|
|
|
: info.loanPurpose === '消费' |
|
|
|
: info.loanPurpose === '消费' |
|
|
@ -21,27 +22,27 @@ |
|
|
|
? '用于短期生产经营周转的可循环的人民币信用贷款业务。' |
|
|
|
? '用于短期生产经营周转的可循环的人民币信用贷款业务。' |
|
|
|
: info.otherPurposesOfLoan |
|
|
|
: info.otherPurposesOfLoan |
|
|
|
}} |
|
|
|
}} |
|
|
|
</p> |
|
|
|
</p> |
|
|
|
<div class="flex my-2"> |
|
|
|
<div v-if="info.guarantyStyle" |
|
|
|
<p class="text whitespace-nowrap">担保方式:</p> |
|
|
|
class="flex my-2"> |
|
|
|
<p v-html="info.guarantyStyle" |
|
|
|
<p class="text whitespace-nowrap">担保方式:</p> |
|
|
|
class="text"></p> |
|
|
|
<p v-html="info.guarantyStyle" |
|
|
|
</div> |
|
|
|
class="text"></p> |
|
|
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
<p class="text">贷款期限:{{ info.minimumTermOfLoan }}月 - {{ info.maximumTermOfLoan }}月</p> |
|
|
|
<p class="text">贷款期限:{{ info.minimumTermOfLoan }}月 - {{ info.maximumTermOfLoan }}月</p> |
|
|
|
<p class="text">贷款限额:{{ info.minimumLoan }}万元 - {{ info.loanCeiling }}万元</p> |
|
|
|
<p class="text">贷款限额:{{ info.minimumLoan }}万元 - {{ info.loanCeiling }}万元</p> |
|
|
|
<p class="text">贷款利率:{{ info.minimumAprOnLoan }}% - {{ info.maximumAnnualInterestRate }}%</p> |
|
|
|
<p class="text">贷款利率:{{ info.minimumAprOnLoan }}% - {{ info.maximumAnnualInterestRate }}%</p> |
|
|
|
<p class="text">还款方式:{{ info.modeRepayment }}</p> |
|
|
|
<p class="text">还款方式:{{ info.modeRepayment }}</p> |
|
|
|
|
|
|
|
|
|
|
|
<div v-if="info.prospectiveBorrowerText" |
|
|
|
<div v-if="info.prospectiveBorrowerText" |
|
|
|
class="flex my-2"> |
|
|
|
class="flex my-2"> |
|
|
|
<p class="text whitespace-nowrap">贷款对象:</p> |
|
|
|
<p class="text whitespace-nowrap">贷款对象:</p> |
|
|
|
<div class="text" |
|
|
|
<div class="text" |
|
|
|
v-html="info.prospectiveBorrowerText"></div> |
|
|
|
v-html="info.prospectiveBorrowerText"></div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<template v-if="riskInfo && route.params.action !== 'config'"> |
|
|
|
<template v-if="riskInfo"> |
|
|
|
<h6 class="step-name mt-5">{{ route.params.action !== 'add' ? '三、' : '' }}材料要求</h6> |
|
|
|
<h6 class="step-name mt-5">{{ route.params.action !== 'add' ? '三、' : '' }}材料要求</h6> |
|
|
|
<p v-if="riskInfo?.accountMaterials" |
|
|
|
<p v-if="riskInfo?.accountMaterials" |
|
|
|
class="text">办理账户-提供材料:{{ riskInfo?.accountMaterials }}</p> |
|
|
|
class="text">办理账户-提供材料:{{ riskInfo?.accountMaterials }}</p> |
|
|
|