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
9f469b61
Commit
9f469b61
authored
Aug 16, 2021
by
ly
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
还款结果筛选
parent
fe490e66
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
21 deletions
+14
-21
index.html
public/index.html
+2
-2
ByhServiceDetail.vue
src/components/byh/ByhServiceDetail.vue
+12
-19
No files found.
public/index.html
View file @
9f469b61
...
...
@@ -12,10 +12,10 @@
//window.APIHOST = "http://192.168.0.50:8202";
//测试
window
.
APIHOST
=
"http://47.99.245.36:8202"
;
//
window.APIHOST = "http://47.99.245.36:8202";
//生产环境
//
window.APIHOST = "https://water.jqtianxia.com";
window
.
APIHOST
=
"https://water.jqtianxia.com"
;
</script>
</head>
...
...
src/components/byh/ByhServiceDetail.vue
View file @
9f469b61
...
...
@@ -243,14 +243,9 @@
<el-table-column
prop=
"bankOwner"
label=
"还款银行账户"
></el-table-column>
<el-table-column
prop=
"backedDate"
label=
"还款时间"
:formatter=
"dateCompare"
></el-table-column>
<!-- <el-table-column prop="resultStr" label="还款结果" :formatter="resultBankFormat"></el-table-column> -->
<!-- <el-table-column prop="resultStr" label="还款结果" width="100" :formatter="resultBankFormat" :filters="[{ text: '成功', value: '成功' }, { text: '失败', value: '失败' }]"
:filter-method='Inquire'></el-table-column> -->
<el-table-column
prop=
"resultStr"
label=
"还款结果"
width=
"100"
:formatter=
"resultBankFormat"
:filters=
"tableStatus"
column-key=
"status"
>
<!-- <template slot-scope="scope">
{{scope.row.resultStr}}
</template> -->
</el-table-column>
<el-table-column
prop=
"creator"
label=
"创建人"
></el-table-column>
<el-table-column
prop=
"memo"
label=
"备注"
></el-table-column>
...
...
@@ -478,7 +473,7 @@ export default {
},
data
()
{
return
{
tableStatus
:[{
text
:
'成功'
,
value
:
'成功'
},
{
text
:
'失败'
,
value
:
'失败'
}],
tableStatus
:[{
text
:
'成功'
,
value
:
"SUCCESS"
},
{
text
:
'失败'
,
value
:
"FAIL"
}],
backValue
:
null
,
flag
:
false
,
isShow
:
true
,
...
...
@@ -957,12 +952,12 @@ export default {
},
//还款信息
loanBackedData
(
record
)
{
console
.
log
(
record
,
887
);
console
.
log
(
this
.
backValue
,
887
);
this
.
$$post
(
'/back/detailPageList'
,
{
bizNo
:
record
,
size
:
this
.
page
.
size
,
current
:
this
.
page
.
current
,
result
Str
:
this
.
backValue
result
:
this
.
backValue
}).
then
(
res
=>
{
if
(
res
.
data
.
code
!=
200
)
{
...
...
@@ -1139,19 +1134,17 @@ export default {
return
row
.
resultStr
+
"("
+
row
.
confirmDesc
+
")"
;
},
//还款添加查询功能
Inquire
:
function
(
value
,
row
){
console
.
log
(
value
,
2334
);
this
.
backValue
=
value
;
this
.
loanBackedData
(
this
.
loanNos
)
// return row.resultStr===value;
},
handleFilterChange
:
function
(
filters
,
value
){
console
.
log
(
filters
.
status
[
0
],
value
,
999
);
this
.
backValue
=
filters
.
status
[
0
]
console
.
log
(
filters
,
999
);
console
.
log
(
filters
.
status
.
length
);
if
(
filters
.
status
.
length
==
2
){
this
.
backValue
=
null
}
else
{
this
.
backValue
=
filters
.
status
[
0
]
}
this
.
loanBackedData
(
this
.
loanNos
)
// return row.resultStr===filters.status[0]
},
// 合同金额
...
...
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