VabMenuItem.vue 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <template>
  2. <el-menu-item :index="handlePath(routeChildren.path)" @click="handleLink">
  3. <vab-icon
  4. v-if="routeChildren.meta.icon"
  5. :icon="['fas', routeChildren.meta.icon]"
  6. class="vab-fas-icon"
  7. />
  8. <span>{{ routeChildren.meta.title }}</span>
  9. <el-tag
  10. v-if="routeChildren.meta && routeChildren.meta.badge"
  11. type="danger"
  12. effect="dark"
  13. >
  14. {{ routeChildren.meta.badge }}
  15. </el-tag>
  16. </el-menu-item>
  17. </template>
  18. <script>
  19. import { isExternal } from '@/utils/validate'
  20. import path from 'path'
  21. export default {
  22. name: 'VabMenuItem',
  23. props: {
  24. routeChildren: {
  25. type: Object,
  26. default() {
  27. return null
  28. },
  29. },
  30. item: {
  31. type: Object,
  32. default() {
  33. return null
  34. },
  35. },
  36. fullPath: {
  37. type: String,
  38. default: '',
  39. },
  40. },
  41. methods: {
  42. handlePath(routePath) {
  43. if (isExternal(routePath)) {
  44. return routePath
  45. }
  46. if (isExternal(this.fullPath)) {
  47. return this.fullPath
  48. }
  49. return path.resolve(this.fullPath, routePath)
  50. },
  51. handleLink() {
  52. const routePath = this.routeChildren.path
  53. const target = this.routeChildren.meta.target
  54. if (target === '_blank') {
  55. if (isExternal(routePath)) {
  56. window.open(routePath)
  57. } else if (isExternal(this.fullPath)) {
  58. window.open(this.fullPath)
  59. } else if (
  60. this.$route.path !== path.resolve(this.fullPath, routePath)
  61. ) {
  62. let routeData = this.$router.resolve(
  63. path.resolve(this.fullPath, routePath)
  64. )
  65. window.open(routeData.href)
  66. }
  67. } else {
  68. if (isExternal(routePath)) {
  69. window.location.href = routePath
  70. } else if (isExternal(this.fullPath)) {
  71. window.location.href = this.fullPath
  72. } else if (
  73. this.$route.path !== path.resolve(this.fullPath, routePath)
  74. ) {
  75. this.$router.push(path.resolve(this.fullPath, routePath))
  76. }
  77. }
  78. },
  79. },
  80. }
  81. </script>