Commit 1d5ed7fe authored by caimeng's avatar caimeng

明天调稽核和放款

parent 88b80ade
......@@ -22,6 +22,6 @@
.el-dialog__header{
border-bottom: 1px solid #ebeef5;
}
.el-descriptions-row .el-descriptions-item__cell{
text-align: center !important;
.el-descriptions__table .el-descriptions-row .el-descriptions-item__cell{
//text-align: center !important;
}
<!-- 操作日志 -->
<template>
<div class='com'>
<block-header title='审批结果' />
<el-descriptions style='margin-bottom: 20px;' border size='small' direction="vertical" :column='5'>
<el-descriptions-item label-class-name='labelCls' label='用户申请金额'>{{ applyAmount }}</el-descriptions-item>
<el-descriptions-item label-class-name='labelCls' label='剩余未还本金'>{{ creditAmount }}</el-descriptions-item>
<el-descriptions-item label-class-name='labelCls' label='机审建议额度'>{{ manualAmount }}</el-descriptions-item>
<el-descriptions-item label-class-name='labelCls' label='人审额度'>{{ partnerGrade }}</el-descriptions-item>
<el-descriptions-item label-class-name='labelCls' label='合作商等级'>{{ surplusNoPrincipal }}</el-descriptions-item>
<el-descriptions-item label-class-name='labelCls' label='人审额度'>{{ surplusNoPrincipal }}</el-descriptions-item>
<el-descriptions-item label-class-name='labelCls' label='合作商等级'>{{ partnerGrade }}</el-descriptions-item>
</el-descriptions>
</div>
......@@ -40,7 +39,7 @@
this.applyAmount = money(applyAmount)
this.creditAmount = money(creditAmount)
this.manualAmount = money(manualAmount)
this.partnerGrade = money(partnerGrade)
this.partnerGrade = partnerGrade
}
}
}
......
......@@ -17,6 +17,14 @@
</el-row>
</el-form-item>
<el-form-item label='授信额度(元)'>
<el-row>
<el-col :span='14'>
<el-input v-model='form.creditAmount' disabled style='width: 100%;' clearable />
</el-col>
</el-row>
</el-form-item>
<el-form-item prop='perAllotAmount' label='人审额度(元)'>
<el-row>
<el-col :span='14'>
......@@ -150,6 +158,7 @@
hasRisk: false,
riskResult: '',
form: {
creditAmount:'',
applyAmount: '',
approveStatus: '',
capitalCode: '',
......@@ -167,8 +176,9 @@
async mounted() {
console.log(this.item, 'nash ')
if (this.item !== null) {
const { applyAmount, creditNo } = this.item
const { applyAmount,creditAmount, creditNo } = this.item
this.form.applyAmount = this.money(applyAmount)
this.form.creditAmount = this.money(creditAmount)
this.form.creditNo = creditNo
// 初始化丰盛查询结果
......
<!-- 操作日志 -->
<template>
<div class='com'>
<block-header title='机审报告' />
<el-table
ref="tableSort"
v-loading="listLoading"
......@@ -43,7 +42,6 @@
</el-descriptions-item>
</el-descriptions>
</div>
</template>
......
......@@ -67,11 +67,13 @@
</template>
<!--机审报告-->
<block-header title='机审报告' />
<template v-if='reportResponse!==null'>
<audit-result />
</template>
<!--审批结果-->
<block-header title='审批结果' />
<template v-if='approvalResultResponse!==null'>
<approval-result :result='approvalResultResponse' />
</template>
......@@ -127,6 +129,8 @@
this.reportResponse = reportResponse
this.thirdPartyReport = thirdPartyReport
this.supplAttachInfo = supplAttachInfo // 附件信息
this.supplAttachInfo = [] // 附件信息
},
methods: {
......
......@@ -77,9 +77,12 @@
:show-overflow-tooltip='!!item.overflow'
>
<template #default='{ row }'>
<span v-if='item.label==="申请金额(元)" || item.label==="审核金额(元)"'>
<span v-if='item.label==="申请金额(元)" || item.label==="授信金额(元)"'>
{{ money(row[item.prop]) }}
</span>
<span v-else-if='item.label==="客户信息"'>
{{ row.realName }} <br /> {{ row.mobile }}
</span>
<span v-else-if='item.label==="授信状态"'>
<el-tag v-if='row.creditStatus==="CREATED"' size='mini'>{{ row.creditStatusStr }}</el-tag>
<el-tag v-if='row.creditStatus==="CREDIT_ING"' type='warning' size='mini'>{{ row.creditStatusStr }}</el-tag>
......@@ -160,7 +163,7 @@
ApprovalVisible: false,
ApprovalItem: null,
checkList: ['授信编号', '客户姓名', '手机号码', '对应BD', '商户区域', '申请金额(元)', '授信状态', '创建时间'],
checkList: ['授信编号', '客户信息', '对应BD', '商户区域', '申请金额(元)', '授信金额(元)', '授信状态', '创建时间'],
columns: [
{
order: 1,
......@@ -169,14 +172,9 @@
},
{
order: 2,
label: '客户姓名',
label: '客户信息',
prop: 'realName'
},
{
order: 3,
label: '手机号码',
prop: 'mobile'
},
{
order: 3,
label: '对应BD',
......@@ -190,6 +188,11 @@
{
order: 5,
label: '申请金额(元)',
prop: 'applyAmount'
},
{
order: 6,
label: '授信金额(元)',
prop: 'creditAmount'
},
{
......
......@@ -89,8 +89,11 @@
:show-overflow-tooltip='!!item.overflow'
>
<template #default='{ row }'>
<span v-if='item.label==="申请金额(元)" || item.label==="审核结果(元)"'>
{{ money(row.availableAmount) }}
<span v-if='item.label==="申请金额(元)"'>
{{ money(row.applyAmount) }}
</span>
<span v-else-if='item.label==="审核结果(元)"'>
{{ money(row.manualAmount) }}
</span>
<span v-else-if='item.label==="客户信息"'>
{{ row.realName }} <br /> {{ row.mobile }}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment