main-content-crumb.vue 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <template>
  2. <div class="smp-crumb">
  3. <el-breadcrumb separator-class="el-icon-arrow-right">
  4. <el-breadcrumb-item v-for="(item,index) in menuChain" :key="index" :to="{ path: '/'+item.UUID }">{{item.name}}</el-breadcrumb-item>
  5. </el-breadcrumb>
  6. <!-- <div class="smpc-item" v-for="(item,index) in menuChain" :key="index">
  7. <i v-if="index!==0">></i>
  8. <span :class="index===menuChain.length-1">{{item.name}}</span>
  9. </div> -->
  10. <!-- <div class="smpc-item"><span>首页</span></div>
  11. <div class="smpc-item">
  12. <i>></i>
  13. <span class="on">监测预警</span>
  14. </div> -->
  15. </div>
  16. </template>
  17. <script>
  18. export default {
  19. data () {
  20. return {
  21. UUID: this.$route.meta.UUID,
  22. menuList: window.SITE_CONFIG['menuList'],
  23. menuChain: []
  24. }
  25. },
  26. watch: {
  27. $route () {
  28. this.UUID = this.$route.meta.UUID
  29. this.initCrumb()
  30. }
  31. },
  32. mounted () {
  33. this.initCrumb()
  34. },
  35. methods: {
  36. initCrumb () {
  37. let item = this.menuList.filter((e) => {
  38. return e.UUID === this.UUID
  39. })
  40. this.menuChain = item
  41. this.setParentItem(item[0].parentUUID)
  42. // let menuChain = []
  43. // this.menuChain.forEach((e, i) => {
  44. // console.log(e.url)
  45. // let obj = {
  46. // ...e,
  47. // id: e.UUID,
  48. // url: e.url ? e.url : e.path ? ('/' + e.path) : ''
  49. // }
  50. // if (i === this.menuChain.length - 1) {
  51. // obj.url = ''
  52. // }
  53. // menuChain.push(obj)
  54. // })
  55. // this.menuChain = menuChain
  56. // console.log(this.menuChain, this.menuList)
  57. },
  58. findParent (parentId) {
  59. let parent = this.menuList.filter((e) => {
  60. return e.UUID === parentId
  61. })
  62. return parent[0] ? parent[0] : ''
  63. },
  64. setParentItem (parentId) {
  65. // console.log(parentId)
  66. let _lastItem = this.findParent(parentId)
  67. if (_lastItem) {
  68. this.menuChain.unshift(_lastItem)
  69. this.setParentItem(_lastItem.parentUUID)
  70. }
  71. }
  72. }
  73. }
  74. </script>
  75. <style lang="scss">
  76. .smp-crumb{
  77. // padding: 0!important;
  78. }
  79. </style>