diff --git a/src/store/modules/keepAlive.js b/src/store/modules/keepAlive.js index c143cf5..a52f9c4 100644 --- a/src/store/modules/keepAlive.js +++ b/src/store/modules/keepAlive.js @@ -11,7 +11,7 @@ export default { } }, removeKeepLive(state, component){ - var index = state.keepLiveRoute.indexOf(component); + const index = state.keepLiveRoute.indexOf(component); if(index !== -1){ state.keepLiveRoute.splice(index, 1); } diff --git a/src/views/cost/feeRecords/index.vue b/src/views/cost/feeRecords/index.vue index 4a46123..4737f2c 100644 --- a/src/views/cost/feeRecords/index.vue +++ b/src/views/cost/feeRecords/index.vue @@ -80,12 +80,13 @@ - +