mirror of
https://github.com/PanJiaChen/vue-element-admin.git
synced 2025-04-06 03:57:53 +08:00
Merge 0c010d7d3d129032d103112634e999ad64957fb2 into 6858a9ad67483025f6a9432a926beb9327037be3
This commit is contained in:
commit
8fdeaeb0cc
@ -105,6 +105,10 @@ export default {
|
|||||||
addTags() {
|
addTags() {
|
||||||
const { name } = this.$route
|
const { name } = this.$route
|
||||||
if (name) {
|
if (name) {
|
||||||
|
const matchedRoutes = this.$route.matched
|
||||||
|
for (let i = 1; i < matchedRoutes.length - 1; i++) {
|
||||||
|
this.$store.dispatch('tagsView/addCachedView', matchedRoutes[i])
|
||||||
|
}
|
||||||
this.$store.dispatch('tagsView/addView', this.$route)
|
this.$store.dispatch('tagsView/addView', this.$route)
|
||||||
}
|
}
|
||||||
return false
|
return false
|
||||||
@ -135,6 +139,12 @@ export default {
|
|||||||
})
|
})
|
||||||
},
|
},
|
||||||
closeSelectedTag(view) {
|
closeSelectedTag(view) {
|
||||||
|
const matchedRoutes = view.matched
|
||||||
|
for (let i = 1; i < matchedRoutes.length - 1; i++) {
|
||||||
|
this.$store.dispatch('tagsView/delCachedView', matchedRoutes[i]).then(response => {
|
||||||
|
console.log('Deleted cached views')
|
||||||
|
})
|
||||||
|
}
|
||||||
this.$store.dispatch('tagsView/delView', view).then(({ visitedViews }) => {
|
this.$store.dispatch('tagsView/delView', view).then(({ visitedViews }) => {
|
||||||
if (this.isActive(view)) {
|
if (this.isActive(view)) {
|
||||||
this.toLastView(visitedViews, view)
|
this.toLastView(visitedViews, view)
|
||||||
|
@ -5,3 +5,14 @@
|
|||||||
</el-alert>
|
</el-alert>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'Menu1',
|
||||||
|
created() {
|
||||||
|
console.log('Menu-1 created')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
</script>
|
||||||
|
@ -5,3 +5,13 @@
|
|||||||
</el-alert>
|
</el-alert>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: 'Menu11',
|
||||||
|
created() {
|
||||||
|
console.log('Menu-1-1 created')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
</script>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user