You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
LiaoNingDangAn/src/views/index.vue

240 lines
6.5 KiB

2 years ago
<template>
2 years ago
<div class="container">
<myHeader></myHeader>
<div class="body-container">
2 years ago
<div class="tree-menu">
<!-- <router-link
2 years ago
tag="div"
:to="{ path: item.path }"
v-for="(item, index) in myRouter"
2 years ago
:key="index"
2 years ago
active-class="routerActive"
2 years ago
>
2 years ago
<div class="view-child">
2 years ago
<img :src="item.icon" alt="" class="router-icon" />
2 years ago
{{ item.name }}
2 years ago
</div>
2 years ago
<div></div>
</router-link> -->
<el-menu
:default-active="routerIndex"
class="el-menu-vertical-demo"
:router="true"
background-color="#465970"
text-color="#fff"
>
<div
:index="item.path"
v-for="(item, index) in routerList"
:key="index"
2 years ago
>
2 years ago
<div v-if="item.children && item.children.length > 0">
<el-submenu index="">
<template slot="title">
<img :src="item.icon" alt="" class="leftIcon" />
<span>{{ item.name }}</span>
</template>
<el-menu-item-group v-if="item.children">
<el-menu-item
:index="itemb.path + '66'"
v-for="(itemb, index) in item.children"
:key="index + '3'"
:route="itemb.path"
>{{ itemb.name }}</el-menu-item
>
</el-menu-item-group>
</el-submenu>
</div>
<div v-else>
<el-menu-item
:index="item.path + '2'"
:key="index"
:route="item.path"
>
<template slot="title">
<img :src="item.icon" alt="" class="leftIcon" />
<span>{{ item.name }}</span>
</template></el-menu-item
>
</div>
2 years ago
</div>
2 years ago
</el-menu>
2 years ago
</div>
2 years ago
<div class="view-box">
2 years ago
<tags-view ref="tagsView" />
<div class="child-views">
<router-view />
</div>
2 years ago
</div>
2 years ago
</div>
</div>
</template>
<script>
2 years ago
import myHeader from "@/components/myHeader";
import TagsView from "@/layout/components/TagsView";
import router from "@/router";
2 years ago
export default {
2 years ago
components: { myHeader, TagsView },
2 years ago
data() {
2 years ago
return {
2 years ago
routerIndex: "1-1",
routerList: [
{
path: "/administrative",
name: "行政审批",
icon: require("@/assets/images/tree4.svg"),
component: () => import("@/views/administrative/index"),
meta: { title: "行政审批", icon: "netWork" },
},
{
2 years ago
path: "/A/enterpriseMsg",
2 years ago
name: "企业档案",
icon: require("@/assets/images/tree4.svg"),
component: () => import("@/views/enterpriseMsg/index"),
meta: { title: "企业档案", icon: "netWork" },
},
{
path: "/productsMsg",
name: "产品档案",
icon: require("@/assets/images/tree4.svg"),
component: () => import("@/views/index"),
redirect: "drugArchives",
isDiy: true,
2 years ago
children: [
{
path: "/productsMsg/drugArchives",
name: "药品档案",
icon: require("@/assets/images/tree4.svg"),
component: () =>
import("@/views/productsMsg/components/drugArchives.vue"),
meta: { title: "药品档案", icon: "netWork" },
},
{
path: "/productsMsg/cosmeticsArchives",
name: "化妆品档案",
icon: require("@/assets/images/tree4.svg"),
component: () =>
import("@/views/productsMsg/components/cosmeticsArchives.vue"),
meta: { title: "化妆品档案", icon: "netWork" },
},
{
path: "/productsMsg/health",
name: "医疗器械档案",
icon: require("@/assets/images/tree4.svg"),
component: () =>
import("@/views/productsMsg/components/health.vue"),
meta: { title: "医疗器械档案", icon: "netWork" },
},
],
2 years ago
},
{
2 years ago
path: "/B/logout",
2 years ago
name: "依法注销",
icon: require("@/assets/images/tree4.svg"),
component: () => import("@/views/logout/index"),
meta: { title: "依法注销", icon: "netWork" },
},
2 years ago
],
2 years ago
};
2 years ago
},
2 years ago
computed: {
//获取自定义路由
myRouter() {
2 years ago
console.log(this.$router.options.routes);
2 years ago
// let staticRouter = router.options.routes.filter(
// (item) => item.isDiy == true
// )[0].children;
// return staticRouter;
2 years ago
// return this.$store.state.myselfPermission.routerList;
2 years ago
console.log(this.$router.options.routes[6].children);
2 years ago
return this.$router.options.routes[6].children;
2 years ago
},
2 years ago
get1(e) {
console.log(e);
2 years ago
},
},
2 years ago
created() {},
2 years ago
};
</script>
<style lang="scss" scoped>
2 years ago
::v-deep .el-submenu {
margin-right: -1px;
}
.leftIcon {
display: inline-block;
height: 14px;
width: 14px;
margin-right: 10px;
}
::v-deep .el-submenu__title {
padding: 0 8px !important;
}
::v-deep .el-menu-item {
padding: 0 8px !important;
margin-right: -1px;
}
::v-deep .el-menu-item-group .el-menu-item {
padding-left: 35px !important;
}
::v-deep .el-menu-item-group__title {
padding: 0 !important;
}
2 years ago
.container {
height: 100%;
.body-container {
height: calc(100vh - 50px);
2 years ago
display: flex;
align-items: center;
2 years ago
& > div {
height: 100%;
2 years ago
}
2 years ago
.tree-menu {
2 years ago
background: #465970;
2 years ago
width: 220px;
box-sizing: border-box;
padding: 14px 10px;
& > div {
width: 200px;
height: 40px;
display: flex;
align-items: center;
font-size: 14px;
2 years ago
font-weight: 400;
color: #ffffff;
2 years ago
padding: 0 10px;
cursor: pointer;
.router-icon {
display: inline-block;
height: 14px;
width: 14px;
margin-right: 10px;
}
2 years ago
}
2 years ago
}
2 years ago
.view-box {
flex: 1;
2 years ago
height: 100%;
background: #f2f2f2;
2 years ago
overflow: hidden;
}
.child-views {
height: calc(100% - 40px);
width: 100%;
box-sizing: border-box;
padding: 10px;
2 years ago
}
2 years ago
}
2 years ago
.routerActive {
background: #1e80eb;
border-radius: 4px;
}
.view-child {
display: flex;
align-items: center;
}
2 years ago
}
2 years ago
</style>