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
d16b8a68
Commit
d16b8a68
authored
Jan 03, 2023
by
刘雅文
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
代扣修改
parent
6bde4791
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
24 additions
and
13 deletions
+24
-13
ServiceProblem.vue
src/components/byh/ServiceProblem.vue
+4
-4
BillList.vue
src/components/byh/componments/BillList.vue
+3
-0
LoanInfo.vue
src/components/byh/componments/LoanInfo.vue
+4
-4
ProtocolSettledOne.vue
src/components/byh/componments/ProtocolSettledOne.vue
+10
-3
修改日志.md
修改日志.md
+3
-2
No files found.
src/components/byh/ServiceProblem.vue
View file @
d16b8a68
...
...
@@ -4,13 +4,13 @@
<block-header
title=
"搜索"
/>
<div
class=
"b-search"
>
<el-form
size=
"small"
label-suffix=
":"
:inline=
"true"
:model=
"searchInfo"
class=
"demo-form-inline"
>
<el-form-item
label=
"编号
:
"
>
<el-form-item
label=
"编号"
>
<el-input
placeholder=
"请输入客户编号"
v-model=
"searchInfo.feedNo"
></el-input>
</el-form-item>
<el-form-item
label=
"手机号
:
"
>
<el-form-item
label=
"手机号"
>
<el-input
placeholder=
"请输入手机号"
v-model
.
trim=
"searchInfo.clientCell"
></el-input>
</el-form-item>
<el-form-item
label=
"姓名
:
"
>
<el-form-item
label=
"姓名"
>
<el-input
placeholder=
"请输入姓名"
v-model=
"searchInfo.clientName"
></el-input>
</el-form-item>
<el-form-item
label=
"解决状态"
>
...
...
@@ -27,7 +27,7 @@
</el-select>
</el-form-item>
<el-form-item
label=
"反馈时间
:
"
>
<el-form-item
label=
"反馈时间"
>
<el-date-picker
v-model=
"searchInfo.gmtStartTime"
type=
"daterange"
range-separator=
"至"
start-placeholder=
"开始日期"
end-placeholder=
"结束日期"
:clearable=
"false"
></el-date-picker>
...
...
src/components/byh/componments/BillList.vue
View file @
d16b8a68
...
...
@@ -233,6 +233,7 @@
:bizType=
"ui.protocolSettledOne.bizType"
:clientNo=
"ui.protocolSettledOne.clientNo"
:loanSign=
"ui.protocolSettledOne.loanSign"
:isCustomAmount=
"ui.protocolSettledOne.isCustomAmount"
@
callback=
"init"
:dialogVisible
.
sync=
"ui.protocolSettledOne.visible"
>
...
...
@@ -348,6 +349,7 @@ export default {
periodNo
:
""
,
remainAmt
:
""
,
planAmt
:
""
,
isCustomAmount
:
""
},
},
};
...
...
@@ -465,6 +467,7 @@ export default {
periodNo
:
record
.
planIndex
,
remainAmt
:
record
.
remainAmt
,
planAmt
:
record
.
planAmt
,
isCustomAmount
:
record
.
isCustomAmount
,
};
console
.
log
(
this
.
ui
.
protocolSettledOne
,
'数据'
);
},
...
...
src/components/byh/componments/LoanInfo.vue
View file @
d16b8a68
...
...
@@ -150,13 +150,13 @@ export default {
},
handleShow
(
row
,
com
,
title
)
{
console
.
log
(
row
,
com
,
title
,
'当前行'
)
console
.
log
(
this
.
basicInfo
,
'基础信息'
)
this
.
mcDialogVisible
=
true
;
this
.
mcItems
=
{
...
row
,
...
this
.
params
...
this
.
params
,
...
row
};
console
.
log
(
row
,
'mmmcccc'
);
console
.
log
(
this
.
params
,
'什么鬼'
);
console
.
log
(
this
.
mcItems
,
'mmmcccc'
);
this
.
mcTitle
=
title
;
this
.
ActiveCom
=
com
;
}
...
...
src/components/byh/componments/ProtocolSettledOne.vue
View file @
d16b8a68
...
...
@@ -22,7 +22,8 @@
</el-form-item>
<el-form-item
label=
"扣款金额"
prop=
"backedAmt"
>
<el-input
v-model=
"ruleForm.remainAmt"
placeholder=
"请输入转账金额"
disabled
></el-input>
<el-input
v-if=
"ruleForm.isCustomAmount"
v-model=
"ruleForm.remainAmt"
placeholder=
"请输入转账金额"
></el-input>
<el-input
v-else
v-model=
"ruleForm.remainAmt"
placeholder=
"请输入转账金额"
disabled
></el-input>
</el-form-item>
<el-form-item
label=
"选择银行卡"
prop=
"bankAccount"
>
<el-select
clearable
v-model=
"ruleForm.bankAccount"
...
...
@@ -81,6 +82,9 @@ export default {
},
loanSign
:{
type
:
String
},
isCustomAmount
:{
type
:
Boolean
,
}
},
...
...
@@ -108,6 +112,7 @@ export default {
backedAmt
:
''
,
memo
:
''
,
loanSign
:
""
,
isCustomAmount
:
null
},
rules
:
{
bankAccount
:
[{
required
:
true
,
message
:
'支付银行卡不能为空'
,
trigger
:
'blur'
}],
...
...
@@ -121,7 +126,7 @@ export default {
},
created
()
{
console
.
log
(
this
.
$props
,
'9090909090'
);
this
.
ruleForm
=
{
loanNo
:
this
.
loanNo
,
bizType
:
this
.
bizType
,
...
...
@@ -129,7 +134,8 @@ export default {
periodNo
:
this
.
periodNo
,
remainAmt
:
this
.
remainAmt
,
planAmt
:
this
.
planAmt
,
loanSign
:
this
.
loanSign
loanSign
:
this
.
loanSign
,
isCustomAmount
:
this
.
isCustomAmount
,
};
// console.log(this.$props,'hhhhhhhhhhh');
//获取银行卡列表
...
...
@@ -148,6 +154,7 @@ export default {
},
methods
:
{
/** 提交点击 */
protocolOne
()
{
this
.
$refs
[
'ruleForm'
].
validate
((
valid
)
=>
{
...
...
修改日志.md
View file @
d16b8a68
## 客服后台更新需求日志
-
2022-10-28 新增页面水印(姓名+手机号后4位),发布到线上(金钱和鼎荣)
-
2022-11-02 修改水印(登录用户名+手机号后4位),发布到线上(金钱和鼎荣)
\ No newline at end of file
-
2022-11-02 修改水印(登录用户名+手机号后4位),发布到线上(金钱和鼎荣)
-
2022-11-07 修改水印(登录用户名+手机号后4位+当天日期),发布到线上(金钱和鼎荣)
\ No newline at end of file
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