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
0e8a02a2
Commit
0e8a02a2
authored
Oct 19, 2023
by
杨芳博-DEL
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改缓存
parent
191a177a
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
39 additions
and
3 deletions
+39
-3
charge-query.js
src/router/modules/charge-query.js
+4
-1
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/router/modules/charge-query.js
View file @
0e8a02a2
...
...
@@ -21,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 @
0e8a02a2
...
...
@@ -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 @
0e8a02a2
...
...
@@ -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 @
0e8a02a2
...
...
@@ -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 @
0e8a02a2
...
...
@@ -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