menu.vue 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <template>
  2. <el-menu v-if="menuIndex !== undefined" :default-active="menuIndex" background-color="#545c64" text-color="#fff"
  3. active-text-color="#ffd04b" class="el-menu-demo" mode="horizontal">
  4. <template v-for="(item, i) in menu">
  5. <el-menu-item :key="i" v-if="item.children.length === 0" :index="(i+1)+''" @click="menuC(item)">{{item.name}}</el-menu-item>
  6. <menuZj :key="i" v-else :obj="item" :fIndex="(i+1)+''"></menuZj>
  7. </template>
  8. </el-menu>
  9. <el-submenu v-else :index="fIndex" :popper-append-to-body="false">
  10. <template slot="title">{{obj.name}}</template>
  11. <template v-for="(item, i) in obj.children">
  12. <el-menu-item :key="i" v-if="item.children.length === 0" :index="fIndex+'-'+(i+1)" @click="menuC(item)">{{item.name}}</el-menu-item>
  13. <menuZj :key="i" v-else :obj="item" :fIndex="fIndex+'-'+(i+1)"></menuZj>
  14. </template>
  15. </el-submenu>
  16. </template>
  17. <script>
  18. export default {
  19. name: "menuZj",
  20. data () {
  21. return {
  22. }
  23. },
  24. props: {
  25. menuIndex: String, // 菜单默认选中项
  26. menu: Array, // 菜单数据
  27. obj: Object, // 菜单对象
  28. fIndex: String, // 父元素的index值
  29. },
  30. mounted () {
  31. this.init();
  32. },
  33. methods: {
  34. //初始化
  35. init () { },
  36. // 菜单点击跳转
  37. menuC (item) {
  38. if (item.type === 'changeTheme') {
  39. this.$store.commit('changeTheme', item.url);
  40. console.log(222, this.$store); return
  41. } else {
  42. this.$router.push({
  43. path: item.url
  44. });
  45. }
  46. }
  47. }
  48. }
  49. </script>