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
1d5ed7fe
Commit
1d5ed7fe
authored
Jun 09, 2022
by
caimeng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
明天调稽核和放款
parent
88b80ade
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
36 additions
and
19 deletions
+36
-19
common.scss
src/assets/common.scss
+2
-2
approval-result.vue
src/components/approval-result.vue
+3
-4
approval.vue
src/components/approval.vue
+11
-1
audit-result.vue
src/components/audit-result.vue
+0
-2
user-other-info.vue
src/components/user-other-info.vue
+4
-0
list.vue
src/views/approval/list.vue
+11
-8
approval.vue
src/views/credit/approval.vue
+5
-2
No files found.
src/assets/common.scss
View file @
1d5ed7fe
...
@@ -22,6 +22,6 @@
...
@@ -22,6 +22,6 @@
.el-dialog__header
{
.el-dialog__header
{
border-bottom
:
1px
solid
#ebeef5
;
border-bottom
:
1px
solid
#ebeef5
;
}
}
.el-descriptions-row
.el-descriptions-item__cell
{
.el-descriptions
__table
.el-descriptions
-row
.el-descriptions-item__cell
{
text-align
:
center
!
important
;
//
text-align: center !important;
}
}
src/components/approval-result.vue
View file @
1d5ed7fe
<!-- 操作日志 -->
<!-- 操作日志 -->
<
template
>
<
template
>
<div
class=
'com'
>
<div
class=
'com'
>
<block-header
title=
'审批结果'
/>
<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=
'剩余未还本金'
>
{{
creditAmount
}}
元
</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=
'人审额度'
>
{{
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>
</el-descriptions>
</div>
</div>
...
@@ -40,7 +39,7 @@
...
@@ -40,7 +39,7 @@
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
=
money
(
partnerGrade
)
this
.
partnerGrade
=
partnerGrade
}
}
}
}
}
}
...
...
src/components/approval.vue
View file @
1d5ed7fe
...
@@ -17,6 +17,14 @@
...
@@ -17,6 +17,14 @@
</el-row>
</el-row>
</el-form-item>
</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-form-item
prop=
'perAllotAmount'
label=
'人审额度(元)'
>
<el-row>
<el-row>
<el-col
:span=
'14'
>
<el-col
:span=
'14'
>
...
@@ -150,6 +158,7 @@
...
@@ -150,6 +158,7 @@
hasRisk
:
false
,
hasRisk
:
false
,
riskResult
:
''
,
riskResult
:
''
,
form
:
{
form
:
{
creditAmount
:
''
,
applyAmount
:
''
,
applyAmount
:
''
,
approveStatus
:
''
,
approveStatus
:
''
,
capitalCode
:
''
,
capitalCode
:
''
,
...
@@ -167,8 +176,9 @@
...
@@ -167,8 +176,9 @@
async
mounted
()
{
async
mounted
()
{
console
.
log
(
this
.
item
,
'nash '
)
console
.
log
(
this
.
item
,
'nash '
)
if
(
this
.
item
!==
null
)
{
if
(
this
.
item
!==
null
)
{
const
{
applyAmount
,
creditNo
}
=
this
.
item
const
{
applyAmount
,
creditAmount
,
creditNo
}
=
this
.
item
this
.
form
.
applyAmount
=
this
.
money
(
applyAmount
)
this
.
form
.
applyAmount
=
this
.
money
(
applyAmount
)
this
.
form
.
creditAmount
=
this
.
money
(
creditAmount
)
this
.
form
.
creditNo
=
creditNo
this
.
form
.
creditNo
=
creditNo
// 初始化丰盛查询结果
// 初始化丰盛查询结果
...
...
src/components/audit-result.vue
View file @
1d5ed7fe
<!-- 操作日志 -->
<!-- 操作日志 -->
<
template
>
<
template
>
<div
class=
'com'
>
<div
class=
'com'
>
<block-header
title=
'机审报告'
/>
<el-table
<el-table
ref=
"tableSort"
ref=
"tableSort"
v-loading=
"listLoading"
v-loading=
"listLoading"
...
@@ -43,7 +42,6 @@
...
@@ -43,7 +42,6 @@
</el-descriptions-item>
</el-descriptions-item>
</el-descriptions>
</el-descriptions>
</div>
</div>
</template>
</template>
...
...
src/components/user-other-info.vue
View file @
1d5ed7fe
...
@@ -67,11 +67,13 @@
...
@@ -67,11 +67,13 @@
</
template
>
</
template
>
<!--机审报告-->
<!--机审报告-->
<block-header
title=
'机审报告'
/>
<
template
v-if=
'reportResponse!==null'
>
<
template
v-if=
'reportResponse!==null'
>
<audit-result
/>
<audit-result
/>
</
template
>
</
template
>
<!--审批结果-->
<!--审批结果-->
<block-header
title=
'审批结果'
/>
<
template
v-if=
'approvalResultResponse!==null'
>
<
template
v-if=
'approvalResultResponse!==null'
>
<approval-result
:result=
'approvalResultResponse'
/>
<approval-result
:result=
'approvalResultResponse'
/>
</
template
>
</
template
>
...
@@ -127,6 +129,8 @@
...
@@ -127,6 +129,8 @@
this
.
reportResponse
=
reportResponse
this
.
reportResponse
=
reportResponse
this
.
thirdPartyReport
=
thirdPartyReport
this
.
thirdPartyReport
=
thirdPartyReport
this
.
supplAttachInfo
=
supplAttachInfo
// 附件信息
this
.
supplAttachInfo
=
supplAttachInfo
// 附件信息
this
.
supplAttachInfo
=
[]
// 附件信息
},
},
methods
:
{
methods
:
{
...
...
src/views/approval/list.vue
View file @
1d5ed7fe
...
@@ -77,9 +77,12 @@
...
@@ -77,9 +77,12 @@
:show-overflow-tooltip=
'!!item.overflow'
:show-overflow-tooltip=
'!!item.overflow'
>
>
<template
#
default=
'
{ row }'>
<template
#
default=
'
{ row }'>
<span
v-if=
'item.label==="申请金额(元)" || item.label==="
审核
金额(元)"'
>
<span
v-if=
'item.label==="申请金额(元)" || item.label==="
授信
金额(元)"'
>
{{
money
(
row
[
item
.
prop
])
}}
{{
money
(
row
[
item
.
prop
])
}}
</span>
</span>
<span
v-else-if=
'item.label==="客户信息"'
>
{{
row
.
realName
}}
<br
/>
{{
row
.
mobile
}}
</span>
<span
v-else-if=
'item.label==="授信状态"'
>
<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==="CREATED"'
size=
'mini'
>
{{
row
.
creditStatusStr
}}
</el-tag>
<el-tag
v-if=
'row.creditStatus==="CREDIT_ING"'
type=
'warning'
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 @@
...
@@ -160,7 +163,7 @@
ApprovalVisible
:
false
,
ApprovalVisible
:
false
,
ApprovalItem
:
null
,
ApprovalItem
:
null
,
checkList
:
[
'授信编号'
,
'客户
姓名'
,
'手机号码'
,
'对应BD'
,
'商户区域'
,
'申请
金额(元)'
,
'授信状态'
,
'创建时间'
],
checkList
:
[
'授信编号'
,
'客户
信息'
,
'对应BD'
,
'商户区域'
,
'申请金额(元)'
,
'授信
金额(元)'
,
'授信状态'
,
'创建时间'
],
columns
:
[
columns
:
[
{
{
order
:
1
,
order
:
1
,
...
@@ -169,14 +172,9 @@
...
@@ -169,14 +172,9 @@
},
},
{
{
order
:
2
,
order
:
2
,
label
:
'客户
姓名
'
,
label
:
'客户
信息
'
,
prop
:
'realName'
prop
:
'realName'
},
},
{
order
:
3
,
label
:
'手机号码'
,
prop
:
'mobile'
},
{
{
order
:
3
,
order
:
3
,
label
:
'对应BD'
,
label
:
'对应BD'
,
...
@@ -190,6 +188,11 @@
...
@@ -190,6 +188,11 @@
{
{
order
:
5
,
order
:
5
,
label
:
'申请金额(元)'
,
label
:
'申请金额(元)'
,
prop
:
'applyAmount'
},
{
order
:
6
,
label
:
'授信金额(元)'
,
prop
:
'creditAmount'
prop
:
'creditAmount'
},
},
{
{
...
...
src/views/credit/approval.vue
View file @
1d5ed7fe
...
@@ -89,8 +89,11 @@
...
@@ -89,8 +89,11 @@
:show-overflow-tooltip=
'!!item.overflow'
:show-overflow-tooltip=
'!!item.overflow'
>
>
<
template
#
default=
'{ row }'
>
<
template
#
default=
'{ row }'
>
<span
v-if=
'item.label==="申请金额(元)" || item.label==="审核结果(元)"'
>
<span
v-if=
'item.label==="申请金额(元)"'
>
{{
money
(
row
.
availableAmount
)
}}
{{
money
(
row
.
applyAmount
)
}}
</span>
<span
v-else-if=
'item.label==="审核结果(元)"'
>
{{
money
(
row
.
manualAmount
)
}}
</span>
</span>
<span
v-else-if=
'item.label==="客户信息"'
>
<span
v-else-if=
'item.label==="客户信息"'
>
{{
row
.
realName
}}
<br
/>
{{
row
.
mobile
}}
{{
row
.
realName
}}
<br
/>
{{
row
.
mobile
}}
...
...
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