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
1fda3a11
Commit
1fda3a11
authored
Aug 16, 2021
by
ly
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加还款结果的查询方式
parent
28cc8722
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
33750 additions
and
7338 deletions
+33750
-7338
.gitignore
.gitignore
+1
-1
package-lock.json
package-lock.json
+26284
-0
index.html
public/index.html
+2
-2
ByhServiceDetail.vue
src/components/byh/ByhServiceDetail.vue
+10
-1
yarn.lock
yarn.lock
+7453
-7334
No files found.
.gitignore
View file @
1fda3a11
...
...
@@ -16,7 +16,7 @@
.env.development.local
.env.test.local
.env.production.local
.history
npm-debug.log*
yarn-debug.log*
yarn-error.log*
package-lock.json
0 → 100644
View file @
1fda3a11
This diff is collapsed.
Click to expand it.
public/index.html
View file @
1fda3a11
...
...
@@ -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 @
1fda3a11
...
...
@@ -242,7 +242,9 @@
<el-table-column
prop=
"bankAccount"
label=
"还款银行账号"
></el-table-column>
<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="还款结果" :formatter="resultBankFormat"></el-table-column> -->
<el-table-column
prop=
"resultStr"
label=
"还款结果"
width=
"150"
:formatter=
"resultBankFormat"
:filters=
"[{ text: '成功', value: '成功' }, { text: '失败', value: '失败' }]"
:filter-method=
'Inquire'
></el-table-column>
<el-table-column
prop=
"creator"
label=
"创建人"
></el-table-column>
<el-table-column
prop=
"memo"
label=
"备注"
></el-table-column>
</el-table>
...
...
@@ -659,6 +661,7 @@ export default {
this
.
addLoanDetail
(
this
.
$route
.
query
.
loanNo
);
},
methods
:
{
// 反馈弹窗
addQuestion
()
{
this
.
ui
.
addQuestion
=
{
...
...
@@ -1121,6 +1124,12 @@ export default {
resultBankFormat
:
function
(
row
,
column
)
{
return
row
.
resultStr
+
"("
+
row
.
confirmDesc
+
")"
;
},
//还款添加查询功能
Inquire
:
function
(
value
,
row
){
// console.log(value,row,2334);
// console.log(row.resultStr,99999);
return
row
.
resultStr
===
value
;
},
// 合同金额
// 计算小数
...
...
yarn.lock
View file @
1fda3a11
This diff is collapsed.
Click to expand it.
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