Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
bims
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
孙海亮
bims
Commits
6b03d121
Commit
6b03d121
authored
Nov 23, 2022
by
WindyWTH
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
理赔件管理、EOB管理、回款管理详情页表格分页问题处理
parent
4ebc260d
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
50 additions
and
9 deletions
+50
-9
lpjManageDetail.vue
src/views/charge-query/lpjManageDetail.vue
+19
-2
collectionDetail.vue
src/views/verification/collectionDetail.vue
+14
-5
indexDetail.vue
src/views/verification/indexDetail.vue
+17
-2
No files found.
src/views/charge-query/lpjManageDetail.vue
View file @
6b03d121
...
@@ -106,7 +106,7 @@
...
@@ -106,7 +106,7 @@
</
template
>
</
template
>
</a-table>
</a-table>
<!--分页-->
<!--分页-->
<BurtPagination
:pagination=
"pagination"
@
pageChange=
"getData"
/>
<BurtPagination
:pagination=
"pagination"
@
pageChange=
"get
Page
Data"
/>
<a-modal
title=
"编辑"
:visible=
"dialogShow"
width=
"700px"
:maskClosable=
"false"
<a-modal
title=
"编辑"
:visible=
"dialogShow"
width=
"700px"
:maskClosable=
"false"
okText=
"确定"
cancelText=
"取消"
okText=
"确定"
cancelText=
"取消"
...
@@ -243,6 +243,20 @@ export default {
...
@@ -243,6 +243,20 @@ export default {
}
}
this
.
selectedRowKeys
=
arr
;
this
.
selectedRowKeys
=
arr
;
},
},
// 分页回调
getPageData
(
pager
)
{
if
(
pager
){
this
.
pagination
=
{
...
this
.
pagination
,
...
pager
}
}
if
(
this
.
isEditNewBill
)
{
// 新增时添加了账单信息 那分页也应该是调账单信息接口
this
.
_getNewBillList
()
}
else
{
this
.
getData
()
}
},
// 获取列表数据
// 获取列表数据
getData
()
{
getData
()
{
this
.
selectedRowKeys
=
[];
this
.
selectedRowKeys
=
[];
...
@@ -378,6 +392,10 @@ export default {
...
@@ -378,6 +392,10 @@ export default {
})
})
}
else
{
//查询所有未加入的账单
}
else
{
//查询所有未加入的账单
this
.
pagination
.
pageNum
=
1
;
this
.
pagination
.
pageNum
=
1
;
this
.
_getNewBillList
()
}
},
_getNewBillList
()
{
this
.
$apis
.
QUERYNOSENDRECEIPLIST
({
this
.
$apis
.
QUERYNOSENDRECEIPLIST
({
pageNum
:
this
.
pagination
.
pageNum
,
pageNum
:
this
.
pagination
.
pageNum
,
pageSize
:
this
.
pagination
.
pageSize
,
pageSize
:
this
.
pagination
.
pageSize
,
...
@@ -393,7 +411,6 @@ export default {
...
@@ -393,7 +411,6 @@ export default {
this
.
$message
.
error
(
res
.
returnMsg
);
this
.
$message
.
error
(
res
.
returnMsg
);
}
}
});
});
}
},
},
//新建/保存寄送
//新建/保存寄送
addNewCharge
(){
addNewCharge
(){
...
...
src/views/verification/collectionDetail.vue
View file @
6b03d121
...
@@ -66,7 +66,7 @@
...
@@ -66,7 +66,7 @@
<!--
<a-button
v-if=
"record.backMoneyNo"
type=
"link"
class=
"danger"
@
click.stop=
"delRecord(index)"
>
删除
</a-button>
-->
<!--
<a-button
v-if=
"record.backMoneyNo"
type=
"link"
class=
"danger"
@
click.stop=
"delRecord(index)"
>
删除
</a-button>
-->
</
template
>
</
template
>
</a-table>
</a-table>
<BurtPagination
:pagination=
"pagination"
@
pageChange=
"
getData
"
/>
<BurtPagination
:pagination=
"pagination"
@
pageChange=
"
pageChange
"
/>
<a-modal
title=
"编辑"
:visible=
"dialogShow"
width=
"700px"
:maskClosable=
"false"
<a-modal
title=
"编辑"
:visible=
"dialogShow"
width=
"700px"
:maskClosable=
"false"
okText=
"确定"
cancelText=
"取消"
okText=
"确定"
cancelText=
"取消"
...
@@ -194,8 +194,14 @@ export default {
...
@@ -194,8 +194,14 @@ export default {
this
.
selectedRowKeys
=
arr
;
this
.
selectedRowKeys
=
arr
;
},
},
pageChange
(
pager
)
{
pageChange
(
pager
)
{
const
{
current
}
=
pager
;
this
.
pagination
=
{
this
.
pagination
.
pageNum
=
current
;
...
this
.
pagination
,
...
pager
}
if
(
this
.
isEditNewEOB
)
{
// 点击添加EOB之后 分页数据查询就应该调EOB数据
this
.
_getNewEOBList
()
return
true
;
}
this
.
getData
();
this
.
getData
();
},
},
// 获取保险公司下拉选项
// 获取保险公司下拉选项
...
@@ -234,6 +240,10 @@ export default {
...
@@ -234,6 +240,10 @@ export default {
})
})
}
else
{
//查询所有未加入的账单
}
else
{
//查询所有未加入的账单
this
.
pagination
.
pageNum
=
1
;
this
.
pagination
.
pageNum
=
1
;
this
.
_getNewEOBList
()
}
},
_getNewEOBList
(){
this
.
$apis
.
QUERYEOBINFOLIST
({
this
.
$apis
.
QUERYEOBINFOLIST
({
pageNum
:
this
.
pagination
.
pageNum
,
pageNum
:
this
.
pagination
.
pageNum
,
pageSize
:
this
.
pagination
.
pageSize
pageSize
:
this
.
pagination
.
pageSize
...
@@ -248,7 +258,6 @@ export default {
...
@@ -248,7 +258,6 @@ export default {
this
.
$message
.
error
(
res
.
returnMsg
);
this
.
$message
.
error
(
res
.
returnMsg
);
}
}
});
});
}
},
},
//新建/保存回款
//新建/保存回款
addNewEvt
(){
addNewEvt
(){
...
...
src/views/verification/indexDetail.vue
View file @
6b03d121
...
@@ -93,7 +93,7 @@
...
@@ -93,7 +93,7 @@
<!--
<a-button
v-if=
"record.eobNo"
type=
"link"
class=
"danger"
@
click.stop=
"delRecord(index)"
>
删除
</a-button>
-->
<!--
<a-button
v-if=
"record.eobNo"
type=
"link"
class=
"danger"
@
click.stop=
"delRecord(index)"
>
删除
</a-button>
-->
</
template
>
</
template
>
</a-table>
</a-table>
<BurtPagination
:pagination=
"pagination"
@
pageChange=
"
getData
"
/>
<BurtPagination
:pagination=
"pagination"
@
pageChange=
"
pageChange
"
/>
<a-modal
title=
"编辑"
:visible=
"dialogShow"
width=
"700px"
:maskClosable=
"false"
<a-modal
title=
"编辑"
:visible=
"dialogShow"
width=
"700px"
:maskClosable=
"false"
okText=
"确定"
cancelText=
"取消"
okText=
"确定"
cancelText=
"取消"
...
@@ -253,6 +253,18 @@ export default {
...
@@ -253,6 +253,18 @@ export default {
this
.
companyOptions
=
res
.
content
||
[];
this
.
companyOptions
=
res
.
content
||
[];
});
});
},
},
// 分页
pageChange
(
pager
)
{
this
.
pagination
=
{
...
this
.
pagination
,
...
pager
}
if
(
this
.
isEditNewEob
)
{
// 点击添加EOB之后 分页数据查询就应该调EOB数据
this
.
_getNewEOBList
()
return
true
;
}
this
.
getData
();
},
getData
()
{
getData
()
{
this
.
$apis
.
QUERYEOBRECEIPTLIST
({
this
.
$apis
.
QUERYEOBRECEIPTLIST
({
pageNum
:
this
.
pagination
.
pageNum
,
pageNum
:
this
.
pagination
.
pageNum
,
...
@@ -358,6 +370,10 @@ export default {
...
@@ -358,6 +370,10 @@ export default {
})
})
}
else
{
//查询所有未加入的账单
}
else
{
//查询所有未加入的账单
this
.
pagination
.
pageNum
=
1
;
this
.
pagination
.
pageNum
=
1
;
this
.
_getNewEOBList
();
}
},
_getNewEOBList
()
{
this
.
$apis
.
QUERYEOBNEEDRECEIPTLIST
({
this
.
$apis
.
QUERYEOBNEEDRECEIPTLIST
({
pageNum
:
this
.
pagination
.
pageNum
,
pageNum
:
this
.
pagination
.
pageNum
,
pageSize
:
this
.
pagination
.
pageSize
pageSize
:
this
.
pagination
.
pageSize
...
@@ -372,7 +388,6 @@ export default {
...
@@ -372,7 +388,6 @@ export default {
this
.
$message
.
error
(
res
.
returnMsg
);
this
.
$message
.
error
(
res
.
returnMsg
);
}
}
});
});
}
},
},
//新建/保存EOB
//新建/保存EOB
addNewEvt
(){
addNewEvt
(){
...
...
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