|
@@ -1,15 +1,43 @@
|
|
|
<template>
|
|
|
- <div>
|
|
|
-
|
|
|
+ <div class="white pa-3 content">
|
|
|
+ <el-menu :default-active="activeIndex" class="el-menu-demo" mode="horizontal" @select="handleSelect">
|
|
|
+ <el-menu-item index="1">处理中心</el-menu-item>
|
|
|
+ <el-submenu index="2">
|
|
|
+ <template slot="title">薪酬核算</template>
|
|
|
+ <el-menu-item index="2-1">选项1</el-menu-item>
|
|
|
+ <el-menu-item index="2-2">选项2</el-menu-item>
|
|
|
+ <el-menu-item index="2-3">选项3</el-menu-item>
|
|
|
+ <el-submenu index="2-4">
|
|
|
+ <template slot="title">选项4</template>
|
|
|
+ <el-menu-item index="2-4-1">选项1</el-menu-item>
|
|
|
+ <el-menu-item index="2-4-2">选项2</el-menu-item>
|
|
|
+ <el-menu-item index="2-4-3">选项3</el-menu-item>
|
|
|
+ </el-submenu>
|
|
|
+ </el-submenu>
|
|
|
+ <el-menu-item index="3" disabled>消息中心</el-menu-item>
|
|
|
+ <el-menu-item index="4"><a href="https://www.ele.me" target="_blank">订单管理</a></el-menu-item>
|
|
|
+ </el-menu>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
export default {
|
|
|
- name: 'panorama-details'
|
|
|
+ name: 'panorama-details',
|
|
|
+ data () {
|
|
|
+ return {
|
|
|
+ activeName: 'first'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ created () {
|
|
|
+ console.log(this.$route.query)
|
|
|
+ }
|
|
|
}
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
-
|
|
|
+.content {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ box-sizing: border-box;
|
|
|
+}
|
|
|
</style>
|