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
b50f7b9f
Commit
b50f7b9f
authored
Oct 19, 2023
by
yanglilong
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'func-ECCS-2432' into 'master'
Func eccs 2432(商保 理赔件管理/回款管理点击“返回”时显示原查询结果) See merge request
!75
parents
33d80968
0e8a02a2
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
47 additions
and
5 deletions
+47
-5
index.vue
src/layout/index.vue
+4
-1
charge-query.js
src/router/modules/charge-query.js
+8
-2
verification.js
src/router/modules/verification.js
+3
-0
index.vue
src/views/charge-query/index.vue
+10
-1
lpjManage.vue
src/views/charge-query/lpjManage.vue
+11
-0
collection.vue
src/views/verification/collection.vue
+11
-1
No files found.
src/layout/index.vue
View file @
b50f7b9f
<
template
>
<div>
<router-view></router-view>
<keep-alive>
<router-view
v-if=
"$route.meta && $route.meta.keepAlive"
></router-view>
</keep-alive>
<router-view
v-if=
"!($route.meta && $route.meta.keepAlive)"
></router-view>
</div>
</
template
>
...
...
src/router/modules/charge-query.js
View file @
b50f7b9f
...
...
@@ -8,7 +8,10 @@ export default {
{
path
:
''
,
name
:
"
chargeQueryIndex
"
,
component
:
()
=>
import
(
/* webpackChunkName: "chargeQuery" */
"
@/views/charge-query/index.vue
"
)
component
:
()
=>
import
(
/* webpackChunkName: "chargeQuery" */
"
@/views/charge-query/index.vue
"
),
meta
:{
keepAlive
:
true
}
},
{
path
:
"
detail
"
,
...
...
@@ -18,7 +21,10 @@ export default {
{
path
:
"
lpjManage
"
,
name
:
"
chargeQueryLpjManage
"
,
component
:
()
=>
import
(
/* webpackChunkName: "chargeQuery" */
"
@/views/charge-query/lpjManage.vue
"
)
component
:
()
=>
import
(
/* webpackChunkName: "chargeQuery" */
"
@/views/charge-query/lpjManage.vue
"
),
meta
:{
keepAlive
:
true
}
},
{
path
:
"
lpjManageDetail
"
,
...
...
src/router/modules/verification.js
View file @
b50f7b9f
...
...
@@ -19,6 +19,9 @@ export default {
path
:
"
collection
"
,
name
:
"
VerificationCollection
"
,
component
:
()
=>
import
(
"
@/views/verification/collection
"
),
meta
:{
keepAlive
:
true
}
},
{
path
:
"
collectionDetail
"
,
...
...
src/views/charge-query/index.vue
View file @
b50f7b9f
...
...
@@ -246,7 +246,8 @@ export default {
code
:
1
}
],
ciReceiptTotalVo
:
{}
ciReceiptTotalVo
:
{},
iscreated
:
false
};
},
components
:
{
...
...
@@ -258,8 +259,16 @@ export default {
})
},
created
()
{
this
.
iscreated
=
true
this
.
_getCompanyOptions
();
this
.
_getDoctorListNoPage
();
//获取医生下拉选项
},
activated
(){
if
(
!
this
.
iscreated
){
this
.
_getCompanyOptions
();
}
else
{
this
.
iscreated
=
false
}
},
methods
:
{
moment
,
...
...
src/views/charge-query/lpjManage.vue
View file @
b50f7b9f
...
...
@@ -136,16 +136,27 @@ export default {
pageSize
:
10
,
total
:
0
,
},
iscreated
:
false
};
},
components
:
{
BurtPagination
,
},
created
()
{
this
.
iscreated
=
true
this
.
getData
();
this
.
_getCompanyOptions
();
this
.
getRefcdByRefgrp
();
},
activated
(){
if
(
!
this
.
iscreated
){
this
.
getData
();
this
.
_getCompanyOptions
();
this
.
getRefcdByRefgrp
();
}
else
{
this
.
iscreated
=
false
}
},
methods
:
{
moment
,
// 获取列表数据
...
...
src/views/verification/collection.vue
View file @
b50f7b9f
...
...
@@ -179,16 +179,26 @@ export default {
{
name
:
'
全部
'
,
value
:
''
},
{
name
:
'
已结案
'
,
value
:
'
1
'
},
{
name
:
'
暂存
'
,
value
:
'
0
'
}
]
],
iscreated
:
false
};
},
components
:
{
BurtPagination
,
},
created
()
{
this
.
iscreated
=
true
this
.
getData
();
this
.
_getCompanyOptions
();
},
activated
(){
if
(
!
this
.
iscreated
){
this
.
getData
();
this
.
_getCompanyOptions
();
}
else
{
this
.
iscreated
=
false
}
},
methods
:
{
moment
,
pageChange
(
pager
)
{
...
...
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