Commit b50f7b9f authored by yanglilong's avatar yanglilong

Merge branch 'func-ECCS-2432' into 'master'

Func eccs 2432(商保 理赔件管理/回款管理点击“返回”时显示原查询结果)

See merge request !75
parents 33d80968 0e8a02a2
<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>
......
......@@ -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",
......
......@@ -19,6 +19,9 @@ export default {
path: "collection",
name: "VerificationCollection",
component: () => import("@/views/verification/collection"),
meta:{
keepAlive:true
}
},
{
path: "collectionDetail",
......
......@@ -246,7 +246,8 @@ export default {
code: 1
}
],
ciReceiptTotalVo: {}
ciReceiptTotalVo: {},
iscreated:false
};
},
components: {
......@@ -258,9 +259,17 @@ export default {
})
},
created() {
this.iscreated = true
this._getCompanyOptions();
this._getDoctorListNoPage(); //获取医生下拉选项
},
activated(){
if(!this.iscreated){
this._getCompanyOptions();
}else{
this.iscreated = false
}
},
methods: {
moment,
// 获取未清余额合计
......
......@@ -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,
// 获取列表数据
......
......@@ -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) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment