LeftNav.vue 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <template>
  2. <div class="left-nav">
  3. <el-menu
  4. class="el-menu-vertical-demo"
  5. background-color="#324157"
  6. text-color="#bfcbd9"
  7. active-text-color="#20a0ff"
  8. :router=true
  9. :default-active="$route.path">
  10. <!-- <el-menu-item index="/channel/index" route="/channel/index">
  11. <span slot="title">渠道管理</span>
  12. </el-menu-item>
  13. <el-menu-item index="/course/index" route="/course/index">
  14. <span slot="title">课程管理</span>
  15. </el-menu-item>
  16. <el-menu-item index="/relation/index" route="/relation/index">
  17. <span slot="title">渠道课程管理</span>
  18. </el-menu-item> -->
  19. <el-menu-item index="/order/index" route="/order/index">
  20. <span slot="title">联运项目</span>
  21. </el-menu-item>
  22. <el-menu-item index="/skill/index" route="/skill/index">
  23. <span slot="title">智能语音</span>
  24. </el-menu-item>
  25. <!-- <el-menu-item index="/operation/index" route="/operation/index">
  26. <span slot="title">操作日志</span>
  27. </el-menu-item> -->
  28. </el-menu>
  29. </div>
  30. </template>
  31. <style lang="less">
  32. .left-nav {
  33. width: 120px;
  34. height: 100%;
  35. position: fixed;
  36. background-color: #324157;
  37. .el-menu {
  38. border: none;
  39. }
  40. }
  41. </style>