123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <template>
- <div class="left-nav">
- <el-menu
- class="el-menu-vertical-demo"
- background-color="#324157"
- text-color="#bfcbd9"
- active-text-color="#20a0ff"
- :router=true
- :default-active="$route.path">
- <!-- <el-menu-item index="/channel/index" route="/channel/index">
- <span slot="title">渠道管理</span>
- </el-menu-item>
- <el-menu-item index="/course/index" route="/course/index">
- <span slot="title">课程管理</span>
- </el-menu-item>
- <el-menu-item index="/relation/index" route="/relation/index">
- <span slot="title">渠道课程管理</span>
- </el-menu-item> -->
- <el-menu-item index="/order/index" route="/order/index">
- <span slot="title">资源API</span>
- </el-menu-item>
- <el-menu-item index="/skill/index" route="/skill/index">
- <span slot="title">智能语音</span>
- </el-menu-item>
- <!-- <el-menu-item index="/operation/index" route="/operation/index">
- <span slot="title">操作日志</span>
- </el-menu-item> -->
- </el-menu>
- </div>
- </template>
- <style lang="less">
- .left-nav {
- width: 150px;
- height: 100%;
- position: fixed;
- background-color: #324157;
- .el-menu {
- border: none;
- }
- }
- </style>
|