index.vue 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <template>
  2. <el-breadcrumb class="app-breadcrumb" separator="/">
  3. <transition-group name="breadcrumb">
  4. <el-breadcrumb-item v-for="(item,index) in levelList" :key="item.path">
  5. <span v-if="item.redirect==='noRedirect'||index==levelList.length-1" class="no-redirect">{{ item.meta.title }}</span>
  6. <a v-else @click.prevent="handleLink(item)">{{ item.meta.title }}</a>
  7. </el-breadcrumb-item>
  8. </transition-group>
  9. </el-breadcrumb>
  10. </template>
  11. <script>
  12. import pathToRegexp from 'path-to-regexp'
  13. export default {
  14. data() {
  15. return {
  16. levelList: null
  17. }
  18. },
  19. watch: {
  20. $route() {
  21. this.getBreadcrumb()
  22. }
  23. },
  24. created() {
  25. this.getBreadcrumb()
  26. },
  27. methods: {
  28. getBreadcrumb() {
  29. // only show routes with meta.title
  30. let matched = this.$route.matched.filter(item => item.meta && item.meta.title)
  31. const first = matched[0]
  32. if (!this.isDashboard(first)) {
  33. matched = [{ path: '/dashboard', meta: { title: '首页' }}].concat(matched)
  34. }
  35. if (matched.length > 1) {
  36. const insertPosition = matched.length - 1
  37. let parent = matched[insertPosition].meta.parent
  38. while (parent) {
  39. const route = this.$router.resolve(parent).route
  40. matched.splice(insertPosition, 0, route)
  41. parent = route.meta.parent
  42. }
  43. }
  44. this.levelList = matched.filter(item => item.meta && item.meta.title && item.meta.breadcrumb !== false)
  45. },
  46. isDashboard(route) {
  47. const name = route && route.name
  48. if (!name) {
  49. return false
  50. }
  51. return name.trim().toLocaleLowerCase() === 'Dashboard'.toLocaleLowerCase()
  52. },
  53. pathCompile(path) {
  54. // To solve this problem https://github.com/PanJiaChen/vue-element-admin/issues/561
  55. const { params } = this.$route
  56. var toPath = pathToRegexp.compile(path)
  57. return toPath(params)
  58. },
  59. handleLink(item) {
  60. const { redirect, path } = item
  61. if (redirect) {
  62. this.$router.push(redirect)
  63. return
  64. }
  65. this.$router.push(this.pathCompile(path))
  66. }
  67. }
  68. }
  69. </script>
  70. <style lang="scss" scoped>
  71. .app-breadcrumb.el-breadcrumb {
  72. display: inline-block;
  73. font-size: 14px;
  74. line-height: 50px;
  75. margin-left: 8px;
  76. .no-redirect {
  77. color: #97a8be;
  78. cursor: text;
  79. }
  80. }
  81. </style>