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
566093f0
Commit
566093f0
authored
Jul 04, 2022
by
caimeng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
7月4日修改bug
parent
6b22ae9a
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
29 additions
and
22 deletions
+29
-22
approval.vue
src/components/approval.vue
+7
-2
list.vue
src/views/approval/list.vue
+0
-13
approval-detail.vue
src/views/credit/approval-detail.vue
+5
-1
approval.vue
src/views/credit/approval.vue
+5
-2
detail.vue
src/views/credit/detail.vue
+5
-1
increase.vue
src/views/credit/increase.vue
+2
-1
list.vue
src/views/credit/list.vue
+5
-2
No files found.
src/components/approval.vue
View file @
566093f0
...
...
@@ -28,7 +28,7 @@
<el-row>
<el-col
:span=
'10'
>
<template
v-if=
'
manualAmount && form.capitalCode==="FENGSHENGBUSINESS"
'
>
<template
v-if=
'
riskResult!==null && form.capitalCode==="FENGSHENGBUSINESS"
'
>
<el-form-item
prop=
'perAllotAmount'
label=
'人审额度'
>
<el-row>
<el-col
:span=
'14'
>
...
...
@@ -218,13 +218,18 @@
this
.
manualAmount
=
manualAmount
this
.
form
.
perAllotAmount
=
manualAmount
this
.
form
.
creditNo
=
creditNo
this
.
form
.
creditType
=
creditType
// 那啥
if
(
this
.
searchData
!==
null
)
{
const
opinionEnum
=
this
.
searchData
.
opinionEnumResponses
const
opinionArr
=
[]
opinionEnum
.
forEach
(
item
=>
{
if
(
creditType
===
'ADD_CREDIT'
&&
item
.
code
!==
'BACK'
)
{
if
(
creditType
===
'ADD_CREDIT'
)
{
if
(
item
.
code
!==
'BACK'
)
{
opinionArr
.
push
(
item
)
}
}
else
{
opinionArr
.
push
(
item
)
}
})
...
...
src/views/approval/list.vue
View file @
566093f0
...
...
@@ -39,19 +39,6 @@
</el-form-item>
</
template
>
<
template
v-if=
'searchData!==null'
>
<el-form-item
prop=
'creditType'
label=
'授信类型'
>
<el-select
v-model=
'queryForm.creditType'
:popper-append-to-body=
'false'
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'>-->
<!-- <el-form-item prop='creditStatus' label='审批状态'>-->
<!-- <el-select v-model='queryForm.creditStatus' clearable placeholder='请选择审批状态'>-->
...
...
src/views/credit/approval-detail.vue
View file @
566093f0
...
...
@@ -36,6 +36,7 @@
data
()
{
return
{
creditNo
:
''
,
creditType
:
''
,
detail
:
null
}
},
...
...
@@ -43,6 +44,7 @@
const
{
query
}
=
this
.
$route
if
(
query
&&
query
.
creditNo
)
{
this
.
creditNo
=
query
.
creditNo
this
.
creditType
=
query
.
creditType
await
this
.
init
()
}
...
...
@@ -50,8 +52,10 @@
methods
:
{
async
init
()
{
const
creditNo
=
this
.
creditNo
const
creditType
=
this
.
creditType
const
result
=
await
API
.
creditDetail
({
creditNo
creditNo
,
creditType
})
this
.
detail
=
result
.
result
}
...
...
src/views/credit/approval.vue
View file @
566093f0
...
...
@@ -293,10 +293,13 @@
},
// 预授信详情
handleDetail
(
row
)
{
const
{
creditNo
}
=
row
const
{
creditNo
,
creditType
}
=
row
this
.
$router
.
push
({
path
:
'/credit/approvalDetail'
,
query
:
{
creditNo
}
query
:
{
creditNo
,
creditType
}
})
},
handleCurrentChange
(
val
)
{
...
...
src/views/credit/detail.vue
View file @
566093f0
...
...
@@ -39,6 +39,7 @@
return
{
isIncrease
:
false
,
creditNo
:
''
,
creditType
:
''
,
detail
:
null
}
},
...
...
@@ -46,6 +47,7 @@
const
{
query
}
=
this
.
$route
if
(
query
&&
query
.
creditNo
)
{
this
.
creditNo
=
query
.
creditNo
this
.
creditType
=
query
.
creditType
await
this
.
init
()
...
...
@@ -54,8 +56,10 @@
methods
:
{
async
init
()
{
const
creditNo
=
this
.
creditNo
const
creditType
=
this
.
creditType
const
result
=
await
API
.
creditDetail
({
creditNo
creditNo
,
creditType
})
this
.
detail
=
result
.
result
;
...
...
src/views/credit/increase.vue
View file @
566093f0
...
...
@@ -249,11 +249,12 @@
},
// 预授信详情
handleDetail
(
row
)
{
const
{
creditNo
}
=
row
const
{
creditNo
,
creditType
}
=
row
this
.
$router
.
push
({
path
:
'/credit/detail'
,
query
:
{
creditNo
,
creditType
,
increase
:
true
}
})
...
...
src/views/credit/list.vue
View file @
566093f0
...
...
@@ -260,10 +260,13 @@
},
// 预授信详情
handleDetail
(
row
)
{
const
{
creditNo
}
=
row
const
{
creditNo
,
creditType
}
=
row
this
.
$router
.
push
({
path
:
'/credit/detail'
,
query
:
{
creditNo
}
query
:
{
creditNo
,
creditType
}
})
},
handleCurrentChange
(
val
)
{
...
...
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