Commit 57ade4e3 authored by caimeng's avatar caimeng

修改bug

parent 73c6b8c8
...@@ -3,9 +3,9 @@ ...@@ -3,9 +3,9 @@
<div class='com'> <div class='com'>
<el-descriptions style='margin-bottom: 20px;' border size='small' direction="vertical" :column='5'> <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='用户申请金额'>{{ applyAmount }}</el-descriptions-item>
<el-descriptions-item label-class-name='labelCls' label='剩余未还本金'>{{ creditAmount }}</el-descriptions-item> <el-descriptions-item label-class-name='labelCls' label='剩余未还本金'>{{ surplusNoPrincipal }}</el-descriptions-item>
<el-descriptions-item label-class-name='labelCls' label='机审建议额度'>{{ manualAmount }}</el-descriptions-item> <el-descriptions-item label-class-name='labelCls' label='机审建议额度'>{{ creditAmount }}</el-descriptions-item>
<el-descriptions-item label-class-name='labelCls' label='人审额度'>{{ surplusNoPrincipal }}</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='合作商等级'>{{ partnerGrade }}</el-descriptions-item>
</el-descriptions> </el-descriptions>
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
</template> </template>
<script> <script>
import { money } from '@/utils/index' import { money } from '@/utils'
export default { export default {
name: 'ApprovalResult', name: 'ApprovalResult',
......
...@@ -5,12 +5,12 @@ ...@@ -5,12 +5,12 @@
:before-close='handleClose' :before-close='handleClose'
:destroy-on-close='true' :destroy-on-close='true'
width='38%' width='38%'
title='申'> title='申'>
<div class='page'> <div class='page'>
<!--搜索--> <!--搜索-->
<el-form ref='dForm' label-suffix=':' label-width='90px' :rules='rules' :model='form' class='form-inline'> <el-form ref='dForm' label-suffix=':' label-width='90px' :rules='rules' :model='form' class='form-inline'>
<el-form-item prop='appealMemo' label='申述原因'> <el-form-item prop='appealMemo' label='备注'>
<el-input v-model='form.appealMemo' type='textarea' clearable placeholder='请输入申述备注' /> <el-input v-model='form.appealMemo' type='textarea' clearable placeholder='请输入备注' />
</el-form-item> </el-form-item>
<el-form-item prop='approveOpinion' label='审批意见'> <el-form-item prop='approveOpinion' label='审批意见'>
<template v-if='searchData!==null'> <template v-if='searchData!==null'>
......
...@@ -26,6 +26,30 @@ ...@@ -26,6 +26,30 @@
placeholder='请输入手机号码' placeholder='请输入手机号码'
/> />
</el-form-item> </el-form-item>
<template v-if='searchData!==null'>
<el-form-item prop='creditStatus' label='审批状态'>
<el-select v-model='queryForm.creditStatus' clearable placeholder='请选择审批状态'>
<el-option
v-for='(item,index) in searchData.creditStatusResponseList'
:label='item.creditStatusStr'
:key='index'
:value='item.creditStatus'></el-option>
</el-select>
</el-form-item>
</template>
<template v-if='searchData!==null'>
<el-form-item prop='creditResult' label='审批结果'>
<el-select v-model='queryForm.creditResult' clearable placeholder='请选择审批结果'>
<el-option
v-for='(item,index) in searchData.creditStatusResultResponseList'
:label='item.creditResultStr'
:key='index'
:value='item.creditResult'></el-option>
</el-select>
</el-form-item>
</template>
<el-form-item prop='time' label='申请时间'> <el-form-item prop='time' label='申请时间'>
<el-date-picker <el-date-picker
...@@ -160,7 +184,7 @@ ...@@ -160,7 +184,7 @@
ApprovalVisible: false, ApprovalVisible: false,
ApprovalItem: null, ApprovalItem: null,
checkList: ['授信编号', '客户信息', '对应BD', '商户区域', '申请金额(元)', '授信金额(元)', '授信状态', '创建时间'], checkList: ['授信编号', '客户信息', '对应BD', '商户区域', '申请金额(元)', '授信金额(元)', '审批状态', '申请时间'],
columns: [ columns: [
{ {
order: 1, order: 1,
...@@ -194,13 +218,13 @@ ...@@ -194,13 +218,13 @@
}, },
{ {
order: 7, order: 7,
label: '授信状态', label: '审批状态',
prop: 'creditStatusStr' prop: 'creditStatusStr'
}, },
{ {
order: 8, order: 8,
width: 110, width: 110,
label: '创建时间', label: '申请时间',
prop: 'applyDate' prop: 'applyDate'
} }
], ],
...@@ -216,6 +240,7 @@ ...@@ -216,6 +240,7 @@
creditNo: '', creditNo: '',
realName: '', realName: '',
creditStatus: '', creditStatus: '',
creditResult: '',
creditType: '', creditType: '',
time: '', time: '',
startTime: '', startTime: '',
......
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
</el-form-item> </el-form-item>
<template v-if='searchData!==null'> <template v-if='searchData!==null'>
<el-form-item prop='creditStatus' label='授信状态'> <el-form-item prop='creditStatus' label='授信状态'>
<el-select clearable v-model='queryForm.creditStatus' placeholder='请选择授信状态'> <el-select v-model='queryForm.creditStatus' clearable placeholder='请选择授信状态'>
<el-option <el-option
v-for='(item,index) in searchData.creditStatusResponseList' v-for='(item,index) in searchData.creditStatusResponseList'
:label='item.creditStatusStr' :label='item.creditStatusStr'
...@@ -37,6 +37,18 @@ ...@@ -37,6 +37,18 @@
</el-select> </el-select>
</el-form-item> </el-form-item>
</template> </template>
<template v-if='searchData!==null'>
<el-form-item prop='creditResult' label='审批结果'>
<el-select v-model='queryForm.creditResult' clearable placeholder='请选择审批结果'>
<el-option
v-for='(item,index) in searchData.creditStatusResultResponseList'
:label='item.creditResultStr'
:key='index'
:value='item.creditResult'></el-option>
</el-select>
</el-form-item>
</template>
<el-form-item prop='time' label='申请时间'> <el-form-item prop='time' label='申请时间'>
<el-date-picker <el-date-picker
...@@ -197,6 +209,7 @@ ...@@ -197,6 +209,7 @@
mobile: '', mobile: '',
bdNo: '', bdNo: '',
creditNo: '', creditNo: '',
creditResult: '',
creditStatus: '', creditStatus: '',
realName: '', realName: '',
time: '', time: '',
......
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
<template v-if='detail.preBasisInfoResponse.preState === "PRE_CREDIT_REFUSE"'> <template v-if='detail.preBasisInfoResponse.preState === "PRE_CREDIT_REFUSE"'>
<el-button @click='handlePlead' size='mini' style='margin-left: 10px' type='primary'></el-button> <el-button @click='handlePlead' size='mini' style='margin-left: 10px' type='primary'></el-button>
</template> </template>
</el-descriptions-item> </el-descriptions-item>
<el-descriptions-item label-class-name='labelCls' label='商户区域'>{{ detail.preBasisInfoResponse.regionName }} <el-descriptions-item label-class-name='labelCls' label='商户区域'>{{ detail.preBasisInfoResponse.regionName }}
......
...@@ -82,7 +82,7 @@ ...@@ -82,7 +82,7 @@
<template #default='{ row }'> <template #default='{ row }'>
<el-button type='text' @click='handleDetail(row)'>详情</el-button> <el-button type='text' @click='handleDetail(row)'>详情</el-button>
<template v-if='row.preStatusStr === "授信拒绝"'> <template v-if='row.preStatusStr === "授信拒绝"'>
<el-button type='text' @click='handlePlead(row)'></el-button> <el-button type='text' @click='handlePlead(row)'></el-button>
</template> </template>
</template> </template>
...@@ -201,7 +201,7 @@ ...@@ -201,7 +201,7 @@
this.fetchData() this.fetchData()
}, },
methods: { methods: {
// 申弹框 // 申弹框
handlePlead(row) { handlePlead(row) {
this.item = row this.item = row
console.log(row, '当前行信息') console.log(row, '当前行信息')
......
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