|
@@ -83,24 +83,29 @@ import IndexType11 from './components/IndexType11.vue';
|
|
import * as approveInfoApi from '@/api/approveinfo'
|
|
import * as approveInfoApi from '@/api/approveinfo'
|
|
import * as approveApi from '@/api/approve'
|
|
import * as approveApi from '@/api/approve'
|
|
|
|
|
|
|
|
+import store from '@/store';
|
|
|
|
+
|
|
export default {
|
|
export default {
|
|
|
|
+ // NOTE: 只有退出applyfor/xxx页面时才清除缓存
|
|
beforeRouteEnter(to, from, next) {
|
|
beforeRouteEnter(to, from, next) {
|
|
- // if (to.name === 'Applyfor') {
|
|
|
|
- // if (!to.meta.keepAlive) {
|
|
|
|
- // to.meta.keepAlive = true
|
|
|
|
- // }
|
|
|
|
- // }
|
|
|
|
- console.log(' beforeRouteEnter >>>', to.name, to.meta, from.name);
|
|
|
|
|
|
+ store.commit({
|
|
|
|
+ type: "app/ROUTE_ADD",
|
|
|
|
+ value: 'Applyfor'
|
|
|
|
+ })
|
|
next()
|
|
next()
|
|
},
|
|
},
|
|
- // NOTE: 只有退出applyfor/xxx页面时才清除缓存
|
|
|
|
beforeRouteLeave(to, from, next) {
|
|
beforeRouteLeave(to, from, next) {
|
|
if (!to.path.includes('applyfor')) {
|
|
if (!to.path.includes('applyfor')) {
|
|
- from.meta.keepAlive = false
|
|
|
|
|
|
+ store.commit({
|
|
|
|
+ type: 'app/ROUTE_REMOVE',
|
|
|
|
+ value: 'Applyfor'
|
|
|
|
+ })
|
|
} else {
|
|
} else {
|
|
- from.meta.keepAlive = true
|
|
|
|
|
|
+ store.commit({
|
|
|
|
+ type: "app/ROUTE_ADD",
|
|
|
|
+ value: 'Applyfor'
|
|
|
|
+ })
|
|
}
|
|
}
|
|
- console.log('%c beforeRouteLeave >>>', 'background: blue; color: #fff', to, from);
|
|
|
|
next()
|
|
next()
|
|
},
|
|
},
|
|
name: 'Applyfor',
|
|
name: 'Applyfor',
|