forked from AkkomaGang/admin-fe
parent
9c03dd3514
commit
0740bb36f7
2 changed files with 9 additions and 6 deletions
|
@ -32,10 +32,12 @@ export default {
|
|||
// In order to make the cached page re-rendered
|
||||
this.$store.dispatch('delAllCachedViews', this.$route)
|
||||
|
||||
const { path } = this.$route
|
||||
const { fullPath } = this.$route
|
||||
|
||||
this.$router.replace({
|
||||
path: '/redirect' + path
|
||||
this.$nextTick(() => {
|
||||
this.$router.replace({
|
||||
path: '/redirect' + fullPath
|
||||
})
|
||||
})
|
||||
}
|
||||
}
|
||||
|
|
|
@ -89,9 +89,10 @@ export default {
|
|||
refreshSelectedTag(view) {
|
||||
this.$store.dispatch('delCachedView', view).then(() => {
|
||||
const { fullPath } = view
|
||||
|
||||
this.$router.replace({
|
||||
path: '/redirect' + fullPath
|
||||
this.$nextTick(() => {
|
||||
this.$router.replace({
|
||||
path: '/redirect' + fullPath
|
||||
})
|
||||
})
|
||||
})
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue