Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
丽
丽人贷管理后台
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
百灵美选
丽人贷管理后台
Commits
5bb70a62
Commit
5bb70a62
authored
Jun 16, 2022
by
caimeng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
6月16日上午修改bug
parent
0a4f626b
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
104 additions
and
35 deletions
+104
-35
approval-result.vue
src/components/approval-result.vue
+13
-3
approval.vue
src/components/approval.vue
+9
-8
plead.vue
src/components/plead.vue
+3
-3
user-other-info.vue
src/components/user-other-info.vue
+23
-2
detail.vue
src/views/approval/detail.vue
+0
-6
list.vue
src/views/approval/list.vue
+12
-0
approval.vue
src/views/credit/approval.vue
+17
-4
list.vue
src/views/credit/list.vue
+13
-0
audit.vue
src/views/loan/audit.vue
+2
-3
detail.vue
src/views/loan/detail.vue
+3
-3
list.vue
src/views/loan/list.vue
+7
-1
index.vue
src/views/login/index.vue
+2
-2
No files found.
src/components/approval-result.vue
View file @
5bb70a62
<!-- 操作日志 -->
<!-- 操作日志 -->
<
template
>
<
template
>
<div
class=
'com'
>
<div
class=
'com'
>
<el-descriptions
style=
'margin-bottom: 20px;'
border
size=
'small'
direction=
"vertical"
:column=
'5
'
>
<el-descriptions
:content-style=
'CSS'
:label-style=
'LSS'
style=
'margin-bottom: 20px;'
border
size=
'small'
direction=
"vertical"
:column=
'6
'
>
<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=
'剩余未还本金'
>
{{
surplusNoPrincipal
}}
元
</el-descriptions-item>
<el-descriptions-item
label-class-name=
'labelCls'
label=
'剩余未还本金'
>
{{
surplusNoPrincipal
}}
元
</el-descriptions-item>
<el-descriptions-item
label-class-name=
'labelCls'
label=
'机审建议额度'
>
{{
creditAmount
}}
元
</el-descriptions-item>
<el-descriptions-item
label-class-name=
'labelCls'
label=
'机审建议额度'
>
{{
creditAmount
}}
元
</el-descriptions-item>
<el-descriptions-item
label-class-name=
'labelCls'
label=
'用户申请期限(期数)'
>
loanIntentionNum
</el-descriptions-item>
<el-descriptions-item
label-class-name=
'labelCls'
label=
'用户申请期限(期数)'
>
{{
loanIntentionNum
}}
</el-descriptions-item>
<el-descriptions-item
label-class-name=
'labelCls'
label=
'人审额度'
>
{{
manualAmount
}}
元
</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>
...
@@ -27,6 +27,15 @@
...
@@ -27,6 +27,15 @@
},
},
data
()
{
data
()
{
return
{
return
{
CSS
:
{
'text-align'
:
'center'
,
//文本居中
'word-break'
:
'break-all'
//过长时自动换行
},
LSS
:
{
'text-align'
:
'center'
,
'height'
:
'40px'
,
'word-break'
:
'keep-all'
},
applyAmount
:
''
,
applyAmount
:
''
,
creditAmount
:
''
,
creditAmount
:
''
,
manualAmount
:
''
,
manualAmount
:
''
,
...
@@ -37,12 +46,13 @@
...
@@ -37,12 +46,13 @@
},
},
created
()
{
created
()
{
if
(
this
.
result
)
{
if
(
this
.
result
)
{
const
{
applyAmount
,
creditAmount
,
manualAmount
,
loanIntentionNum
,
partnerGrade
}
=
this
.
result
const
{
applyAmount
,
surplusNoPrincipal
,
creditAmount
,
manualAmount
,
loanIntentionNum
,
partnerGrade
}
=
this
.
result
this
.
applyAmount
=
money
(
applyAmount
)
this
.
applyAmount
=
money
(
applyAmount
)
this
.
creditAmount
=
money
(
creditAmount
)
this
.
creditAmount
=
money
(
creditAmount
)
this
.
manualAmount
=
money
(
manualAmount
)
this
.
manualAmount
=
money
(
manualAmount
)
this
.
partnerGrade
=
partnerGrade
this
.
partnerGrade
=
partnerGrade
this
.
loanIntentionNum
=
loanIntentionNum
;
this
.
loanIntentionNum
=
loanIntentionNum
;
this
.
surplusNoPrincipal
=
money
(
surplusNoPrincipal
);
}
}
}
}
}
}
...
...
src/components/approval.vue
View file @
5bb70a62
...
@@ -59,7 +59,7 @@
...
@@ -59,7 +59,7 @@
</el-form-item>
</el-form-item>
</template>
</template>
<
template
v-if=
'form.capitalCode==="FENGSHENGBUSINESS"'
>
<
template
v-if=
'form.capitalCode==="FENGSHENGBUSINESS"'
>
<el-form-item
prop=
'riskResult'
label=
'风审查询结果'
>
<el-form-item
label=
'风审查询结果'
>
<template
v-if=
'riskResult!==null'
>
<template
v-if=
'riskResult!==null'
>
<el-tag
v-if=
'riskResult.status==="CREDIT_ING"'
type=
'warning'
>
{{
riskResult
.
statusDesc
}}
</el-tag>
<el-tag
v-if=
'riskResult.status==="CREDIT_ING"'
type=
'warning'
>
{{
riskResult
.
statusDesc
}}
</el-tag>
<el-tag
v-else-if=
'riskResult.status==="YES"'
type=
'success'
>
{{
riskResult
.
statusDesc
}}
</el-tag>
<el-tag
v-else-if=
'riskResult.status==="YES"'
type=
'success'
>
{{
riskResult
.
statusDesc
}}
</el-tag>
...
@@ -117,13 +117,13 @@
...
@@ -117,13 +117,13 @@
return
{
return
{
rules
:
{
rules
:
{
riskResult
:
[
//
riskResult: [
{
//
{
required
:
true
,
//
required: true,
trigger
:
'change'
,
//
trigger: 'change',
message
:
'风审结果未出'
//
message: '风审结果未出'
}
//
}
],
//
],
approveStatus
:
[
approveStatus
:
[
{
{
required
:
true
,
required
:
true
,
...
@@ -222,6 +222,7 @@
...
@@ -222,6 +222,7 @@
creditAmount
creditAmount
})
})
if
(
result
.
success
)
{
if
(
result
.
success
)
{
this
.
hasRisk
=
true
;
await
this
.
initRiskResult
()
await
this
.
initRiskResult
()
}
}
}
else
{
}
else
{
...
...
src/components/plead.vue
View file @
5bb70a62
...
@@ -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'
>
...
...
src/components/user-other-info.vue
View file @
5bb70a62
...
@@ -66,6 +66,21 @@
...
@@ -66,6 +66,21 @@
</el-row>
</el-row>
</
template
>
</
template
>
<
template
v-if=
'xcxSupplAttachInfo!==null && xcxSupplAttachInfo.length'
>
<block-header
title=
'补充附件信息'
/>
<el-row
:gutter=
'20'
>
<el-col
v-for=
'(o, index) in xcxSupplAttachInfo'
:key=
'index'
:span=
'4'
>
<el-card
:body-style=
"
{ padding: '10px' }">
<el-image
class=
'el-card-image'
:src=
'o.screenList[0]'
@
click
.
native=
'showImgViewer(o.screenList,"annex")'
></el-image>
<div
class=
'el-card-intro'
>
<span>
{{
o
.
attachTypeStr
}}
</span>
</div>
</el-card>
</el-col>
</el-row>
</
template
>
<
template
v-if=
'!isLoan'
>
<
template
v-if=
'!isLoan'
>
<!--机审报告-->
<!--机审报告-->
<block-header
title=
'机审报告'
/>
<block-header
title=
'机审报告'
/>
...
@@ -117,7 +132,8 @@
...
@@ -117,7 +132,8 @@
supplAttachInfo
:
[],
supplAttachInfo
:
[],
imgViewerVisible
:
false
,
imgViewerVisible
:
false
,
imgList
:
[]
imgList
:
[],
xcxSupplAttachInfo
:
null
}
}
},
},
...
@@ -129,7 +145,8 @@
...
@@ -129,7 +145,8 @@
faceInfoResponse
,
faceInfoResponse
,
reportResponse
,
reportResponse
,
thirdPartyReport
,
thirdPartyReport
,
supplAttachInfo
supplAttachInfo
,
xcxSupplAttachInfo
}
=
this
.
info
}
=
this
.
info
this
.
data
=
this
.
info
this
.
data
=
this
.
info
...
@@ -142,6 +159,10 @@
...
@@ -142,6 +159,10 @@
this
.
supplAttachInfo
=
supplAttachInfo
// 附件信息
this
.
supplAttachInfo
=
supplAttachInfo
// 附件信息
//this.supplAttachInfo = [] // 附件信息
//this.supplAttachInfo = [] // 附件信息
if
(
xcxSupplAttachInfo
&&
xcxSupplAttachInfo
.
length
>
0
)
{
this
.
xcxSupplAttachInfo
=
xcxSupplAttachInfo
}
console
.
log
(
this
.
thirdPartyReport
,
'第三方报告'
)
console
.
log
(
this
.
thirdPartyReport
,
'第三方报告'
)
},
},
...
...
src/views/approval/detail.vue
View file @
5bb70a62
...
@@ -16,12 +16,6 @@
...
@@ -16,12 +16,6 @@
<!--其它信息-->
<!--其它信息-->
<user-other-info
:info=
'detail'
/>
<user-other-info
:info=
'detail'
/>
<!--第三方报告-->
<
template
v-if=
'detail.thirdPartyReport!==null'
></
template
>
<!--路由结果报告-->
<
template
></
template
>
<!--操作日志-->
<!--操作日志-->
<
template
v-if=
'detail.operationLogResponse!==null'
>
<
template
v-if=
'detail.operationLogResponse!==null'
>
...
...
src/views/approval/list.vue
View file @
5bb70a62
...
@@ -26,6 +26,18 @@
...
@@ -26,6 +26,18 @@
placeholder=
'请输入手机号码'
placeholder=
'请输入手机号码'
/>
/>
</el-form-item>
</el-form-item>
<template
v-if=
'searchData!==null'
>
<el-form-item
prop=
'creditType'
label=
'授信类型'
>
<el-select
v-model=
'queryForm.creditType'
clearable
placeholder=
'请选择授信类型'
>
<el-option
v-for=
'(item,index) in searchData.creditTypeResponseList'
:key=
'index'
:label=
'item.creditTypeStr'
:value=
'item.creditType'
></el-option>
</el-select>
</el-form-item>
</
template
>
<
template
v-if=
'searchData!==null'
>
<
template
v-if=
'searchData!==null'
>
<el-form-item
prop=
'creditStatus'
label=
'审批状态'
>
<el-form-item
prop=
'creditStatus'
label=
'审批状态'
>
<el-select
v-model=
'queryForm.creditStatus'
clearable
placeholder=
'请选择审批状态'
>
<el-select
v-model=
'queryForm.creditStatus'
clearable
placeholder=
'请选择审批状态'
>
...
...
src/views/credit/approval.vue
View file @
5bb70a62
...
@@ -46,6 +46,18 @@
...
@@ -46,6 +46,18 @@
</el-select>
</el-select>
</el-form-item>
</el-form-item>
<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
>
</template>
</template>
<el-form-item
prop=
'time'
label=
'申请时间'
>
<el-form-item
prop=
'time'
label=
'申请时间'
>
...
@@ -92,7 +104,7 @@
...
@@ -92,7 +104,7 @@
<span
v-if=
'item.label==="申请金额(元)"'
>
<span
v-if=
'item.label==="申请金额(元)"'
>
{{
money
(
row
.
applyAmount
)
}}
{{
money
(
row
.
applyAmount
)
}}
</span>
</span>
<span
v-else-if=
'item.label==="
审核结果
(元)"'
>
<span
v-else-if=
'item.label==="
授信金额
(元)"'
>
{{
money
(
row
.
manualAmount
)
}}
{{
money
(
row
.
manualAmount
)
}}
</span>
</span>
<span
v-else-if=
'item.label==="客户信息"'
>
<span
v-else-if=
'item.label==="客户信息"'
>
...
@@ -125,7 +137,7 @@
...
@@ -125,7 +137,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.creditResult==="REJECT"'
>
<template
v-if=
'row.creditResult==="REJECT"'
>
<el-button
type=
'text'
@
click=
'handlePlead(row)'
>
申
述
</el-button>
<el-button
type=
'text'
@
click=
'handlePlead(row)'
>
申
诉
</el-button>
</
template
>
</
template
>
</template>
</template>
</el-table-column>
</el-table-column>
...
@@ -166,7 +178,7 @@
...
@@ -166,7 +178,7 @@
item
:
null
,
item
:
null
,
checkList
:
[
'授信编号'
,
'授信类型'
,
'客户信息'
,
'对应BD'
,
'商户区域'
,
'申请金额(元)'
,
'
审核结果
(元)'
,
'审批状态'
,
'审批结果'
,
'创建时间'
],
checkList
:
[
'授信编号'
,
'授信类型'
,
'客户信息'
,
'对应BD'
,
'商户区域'
,
'申请金额(元)'
,
'
授信金额
(元)'
,
'审批状态'
,
'审批结果'
,
'创建时间'
],
columns
:
[
columns
:
[
{
{
order
:
1
,
order
:
1
,
...
@@ -203,7 +215,7 @@
...
@@ -203,7 +215,7 @@
},
},
{
{
order
:
7
,
order
:
7
,
label
:
'
审核结果
(元)'
,
label
:
'
授信金额
(元)'
,
prop
:
'manualAmount'
prop
:
'manualAmount'
},
},
{
{
...
@@ -238,6 +250,7 @@
...
@@ -238,6 +250,7 @@
bdNo
:
''
,
bdNo
:
''
,
creditNo
:
''
,
creditNo
:
''
,
creditStatus
:
''
,
creditStatus
:
''
,
creditResult
:
''
,
realName
:
''
,
realName
:
''
,
time
:
''
,
time
:
''
,
startTime
:
''
,
startTime
:
''
,
...
...
src/views/credit/list.vue
View file @
5bb70a62
...
@@ -25,6 +25,18 @@
...
@@ -25,6 +25,18 @@
placeholder=
'请输入客户手机号码'
placeholder=
'请输入客户手机号码'
/>
/>
</el-form-item>
</el-form-item>
<template
v-if=
'searchData!==null'
>
<el-form-item
prop=
'creditType'
label=
'授信类型'
>
<el-select
v-model=
'queryForm.creditType'
clearable
placeholder=
'请选择授信类型'
>
<el-option
v-for=
'(item,index) in searchData.creditTypeResponseList'
:key=
'index'
:label=
'item.creditTypeStr'
:value=
'item.creditType'
></el-option>
</el-select>
</el-form-item>
</
template
>
<
template
v-if=
'searchData!==null'
>
<
template
v-if=
'searchData!==null'
>
<el-form-item
prop=
'creditStatus'
label=
'授信状态'
>
<el-form-item
prop=
'creditStatus'
label=
'授信状态'
>
<el-select
v-model=
'queryForm.creditStatus'
clearable
placeholder=
'请选择授信状态'
>
<el-select
v-model=
'queryForm.creditStatus'
clearable
placeholder=
'请选择授信状态'
>
...
@@ -207,6 +219,7 @@
...
@@ -207,6 +219,7 @@
mobile
:
''
,
mobile
:
''
,
bdNo
:
''
,
bdNo
:
''
,
creditNo
:
''
,
creditNo
:
''
,
creditType
:
''
,
creditResult
:
''
,
creditResult
:
''
,
creditStatus
:
''
,
creditStatus
:
''
,
realName
:
''
,
realName
:
''
,
...
...
src/views/loan/audit.vue
View file @
5bb70a62
...
@@ -81,13 +81,12 @@
...
@@ -81,13 +81,12 @@
fixed=
'right'
fixed=
'right'
align=
'center'
align=
'center'
label=
'操作'
label=
'操作'
width=
'200'
>
>
<
template
#
default=
'{ row }'
>
<
template
#
default=
'{ row }'
>
<template
v-if=
'row.loanStatus==="SUBMITED" && row.stepsNo==="002"'
>
<template
v-if=
'row.loanStatus==="SUBMITED" && row.stepsNo==="002"'
>
<el-button
size=
'mini'
type=
'
primary
'
@
click=
'handleAudit(row)'
>
稽核审批
</el-button>
<el-button
size=
'mini'
type=
'
text
'
@
click=
'handleAudit(row)'
>
稽核审批
</el-button>
</
template
>
</
template
>
<el-button
size=
'mini'
type=
'
defaul
t'
@
click=
'handleDetail(row)'
>
详情
</el-button>
<el-button
size=
'mini'
type=
'
tex
t'
@
click=
'handleDetail(row)'
>
详情
</el-button>
</template>
</template>
</el-table-column>
</el-table-column>
</el-table>
</el-table>
...
...
src/views/loan/detail.vue
View file @
5bb70a62
...
@@ -11,9 +11,9 @@
...
@@ -11,9 +11,9 @@
<el-descriptions-item
project
label=
'申请时间'
>
{{
project
.
loanApplyDate
}}
</el-descriptions-item>
<el-descriptions-item
project
label=
'申请时间'
>
{{
project
.
loanApplyDate
}}
</el-descriptions-item>
<el-descriptions-item
project
label=
'借款状态'
>
<el-descriptions-item
project
label=
'借款状态'
>
<span>
{{
project
.
loanStatusStr
}}
</span>
<span>
{{
project
.
loanStatusStr
}}
</span>
<
template
v-if=
'project.loanStatus==="SUBMITED" && project.stepsNo==="002"'
>
<
!--
<template
v-if=
'project.loanStatus==="SUBMITED" && project.stepsNo==="002"'
>
--
>
<el-button
style=
'margin-left: 10px'
type=
'primary'
size=
'mini'
@
click=
'handleAudit(project)'
>
稽核
</el-button
>
<!--
<el-button
style=
'margin-left: 10px'
type=
'primary'
size=
'mini'
@
click=
'handleAudit(project)'
>
稽核
</el-button>
--
>
<
/
template
>
<
!--
</
template
>
--
>
</el-descriptions-item>
</el-descriptions-item>
<el-descriptions-item
project
label=
'医院名称'
>
{{ project.regName }}
</el-descriptions-item>
<el-descriptions-item
project
label=
'医院名称'
>
{{ project.regName }}
</el-descriptions-item>
...
...
src/views/loan/list.vue
View file @
5bb70a62
...
@@ -295,7 +295,13 @@
...
@@ -295,7 +295,13 @@
this
.
fetchData
()
this
.
fetchData
()
},
},
methods
:
{
methods
:
{
onReset
(
formName
)
{
if
(
formName
)
{
this
.
queryForm
.
capitalCode
=
''
this
.
queryForm
.
loanSign
=
''
this
.
$refs
[
formName
].
resetFields
()
}
},
// 资金方选择下拉
// 资金方选择下拉
handleCapitalChange
(
item
)
{
handleCapitalChange
(
item
)
{
if
(
item
)
{
if
(
item
)
{
...
...
src/views/login/index.vue
View file @
5bb70a62
...
@@ -179,8 +179,8 @@ export default {
...
@@ -179,8 +179,8 @@ export default {
verifyTxt
:
"验证码"
,
verifyTxt
:
"验证码"
,
verifyTime
:
60
,
verifyTime
:
60
,
form
:
{
form
:
{
username
:
"
caimm
"
,
username
:
""
,
password
:
"
123456
"
,
password
:
""
,
vcode
:
""
vcode
:
""
},
},
rules
:
{
rules
:
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment