Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
loan-manager-customer
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
zhanhai
loan-manager-customer
Commits
ed183d4c
Commit
ed183d4c
authored
Apr 25, 2024
by
caimeng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2024-4-25 17:14
parent
5759d9c5
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
4 deletions
+14
-4
ByhService.vue
src/components/byh/ByhService.vue
+2
-0
LoanInfo.vue
src/components/byh/componments/LoanInfo.vue
+5
-1
CreateCredit.vue
src/views/recheck/com/CreateCredit.vue
+4
-2
index.vue
src/views/recheck/index.vue
+3
-1
No files found.
src/components/byh/ByhService.vue
View file @
ed183d4c
...
...
@@ -43,6 +43,8 @@
<!-- 列表 -->
<div
v-show=
"isShow"
>
<block-header
title=
"客户列表"
/>
<mc-table
:data=
"list"
></mc-table>
<el-table
border
size=
"small"
...
...
src/components/byh/componments/LoanInfo.vue
View file @
ed183d4c
...
...
@@ -40,7 +40,7 @@
<el-table-column
align=
"center"
label=
"查看详情"
>
<
template
slot-scope=
"scope"
>
<el-button
type=
"text"
size=
"small"
@
click=
"handleClick(scope.row)"
>
详情
</el-button>
<template
v-if=
"scope.row.status==='SETTLED' && scope.row.capitalCode !== 'OWNBUSINESS' && scope.row.capitalCode !== 'FENGSHENGBUSINESSJQ' && scope.row.capitalCode !== 'FENGSHENGBUSINESSDR' && scope.row.capitalCode !== 'FENGSHENGBUSINESSZY'"
>
<template
v-if=
"scope.row.status==='SETTLED' && scope.row.capitalCode !== 'OWNBUSINESS' && scope.row.capitalCode !== 'FENGSHENGBUSINESSJQ' && scope.row.capitalCode !== '
YUANFENGBUSINESS' && scope.row.capitalCode !== '
FENGSHENGBUSINESSDR' && scope.row.capitalCode !== 'FENGSHENGBUSINESSZY'"
>
<el-button
type=
"text"
size=
"small"
@
click=
"handleShow(scope.row,'SettleReport','结清报告')"
>
结清报告
</el-button>
</
template
>
...
...
@@ -62,6 +62,10 @@
<el-button
type=
"text"
size=
"small"
@
click=
"handleShow(scope.row,'GenerateSettleReport','结清报告')"
>
结清报告
</el-button>
</
template
>
<
template
v-if=
"scope.row.status==='SETTLED' && scope.row.capitalCode === 'YUANFENGBUSINESS' && zyItem"
>
<el-button
type=
"text"
size=
"small"
@
click=
"handleShow(scope.row,'GenerateSettleReport','结清报告')"
>
结清报告
</el-button>
</
template
>
</template>
</el-table-column>
...
...
src/views/recheck/com/CreateCredit.vue
View file @
ed183d4c
...
...
@@ -52,14 +52,14 @@
</el-upload>
</el-form-item>
<el-form-item
prop=
"alipay"
label=
"是否有支付宝账号"
>
<el-form-item
label=
"是否有支付宝账号"
>
<el-radio-group
v-model=
"form.alipay"
>
<el-radio
:label=
"0"
>
否
</el-radio>
<el-radio
:label=
"1"
>
是,本人
</el-radio>
<el-radio
:label=
"2"
>
是,非本人
</el-radio>
</el-radio-group>
</el-form-item>
<el-form-item
prop=
"qq"
label=
"是否有QQ号"
>
<el-form-item
label=
"是否有QQ号"
>
<el-radio-group
v-model=
"form.qq"
>
<el-radio
:label=
"0"
>
否
</el-radio>
<el-radio
:label=
"1"
>
是
</el-radio>
...
...
@@ -119,6 +119,7 @@ export default {
wechat
:
''
,
alipay
:
''
,
qq
:
''
,
id
:
''
,
wechatList
:
[]
},
...
...
@@ -134,6 +135,7 @@ export default {
async
created
()
{
if
(
this
.
UserInfo
)
{
this
.
form
.
orderNo
=
this
.
UserInfo
.
orderNo
;
this
.
form
.
id
=
this
.
UserInfo
.
id
;
}
console
.
log
(
this
.
UserInfo
,
'用户信息'
)
},
...
...
src/views/recheck/index.vue
View file @
ed183d4c
...
...
@@ -8,6 +8,8 @@
:highlight-current-row=
"true"
:header-row-class-name=
"headerStyle"
:data=
"data"
stripe
style=
"width: 100%;"
>
<el-table-column
align=
"center"
type=
"index"
label=
"#"
></el-table-column>
<el-table-column
align=
"center"
prop=
"id"
label=
"id"
></el-table-column>
<el-table-column
align=
"center"
prop=
"clientName"
label=
"姓名"
></el-table-column>
<el-table-column
align=
"center"
prop=
"clientCell"
label=
"手机号"
></el-table-column>
<el-table-column
align=
"center"
prop=
"withdrawalDate"
label=
"提现时间"
></el-table-column>
...
...
@@ -115,7 +117,7 @@ export default {
// 切换选项卡
handleClick
(
row
)
{
this
.
SignVisible
=
true
;
this
.
SignVisible
=
true
;
1
this
.
item
=
row
;
}
}
...
...
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