main-content-crumb.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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" class="el-icon-arrow-right"></i>
  8. <span :class="{canClick:canClick(item,index)}" @click="gotoPage(item)">{{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. canClick (item, index) {
  59. // if (index === this.menuChain.length - 1) {
  60. // return false
  61. // }
  62. if (!item.url) {
  63. return false
  64. }
  65. return true
  66. },
  67. gotoPage (item) {
  68. if (item.url) {
  69. this.$router.push({ path: '/' + item.UUID })
  70. }
  71. },
  72. findParent (parentId) {
  73. let parent = this.menuList.filter((e) => {
  74. return e.UUID === parentId
  75. })
  76. return parent[0] ? parent[0] : ''
  77. },
  78. setParentItem (parentId) {
  79. // console.log(parentId)
  80. let _lastItem = this.findParent(parentId)
  81. if (_lastItem) {
  82. this.menuChain.unshift(_lastItem)
  83. this.setParentItem(_lastItem.parentUUID)
  84. }
  85. }
  86. }
  87. }
  88. </script>
  89. <style lang="scss">
  90. .smp-crumb{
  91. // padding: 0!important;
  92. }
  93. </style>