| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- <template>
- <el-menu
- :default-active="this.$store.state.currentMenuItem"
- style="width: 220px; height: 100%"
- background-color="#141B29"
- text-color="#fff"
- active-text-color="#ffd04b"
- :router="true"
- >
- <el-sub-menu v-for="(item, index) in menu" :key="item" :index="index + ''">
- <template v-slot:title>
- <i :class="item.icon"></i>
- <span>{{ item.title }}</span>
- </template>
- <el-menu-item
- v-for="son in item.items"
- :index="son.path"
- :key="son"
- @click="changeIndex(son.path)"
- >
- {{ son.name }}
- </el-menu-item>
- </el-sub-menu>
- </el-menu>
- </template>
- <script>
- import { ref } from "vue";
- export default {
- setup() {
- let defaultActive = ref();
- function changeIndex(path) {
- defaultActive.value = path;
- }
- let menu = [
- {
- icon: "el-icon-s-unfold",
- title: "货主信息",
- items: [
- {
- path: "/cargoOwnerManage/cargoOwnerCompanyList",
- name: "货主公司列表",
- },
- ],
- },
- {
- icon: "el-icon-s-unfold",
- title: "代理信息",
- items: [
- {
- path: "/agencyManage/agencyCompanyList",
- name: "代理公司列表",
- },
- ],
- },
- {
- icon: "el-icon-s-unfold",
- title: "船东信息",
- items: [
- {
- path: "/shipOwnerManage/shipOwnerList",
- name: "船东列表",
- },
- ],
- },
- {
- icon: "el-icon-s-unfold",
- title: "船舶信息",
- items: [
- {
- path: "/shipManage/shipList",
- name: "船舶列表",
- },
- ],
- },
- {
- icon: "el-icon-s-unfold",
- title: "港口信息",
- items: [
- {
- path: "/portsManage/portsList",
- name: "港口列表",
- },
- {
- path: "/portsManage/sailingSchedule",
- name: "航期维护",
- },
- ],
- },
- {
- icon: "el-icon-s-unfold",
- title: "航次区块链",
- items: [
- {
- path: "/toolManage/blockChain",
- name: "航次上链",
- },
- ],
- },
- {
- icon: "el-icon-s-unfold",
- title: "版本日志",
- items: [
- {
- path: "/toolManage/versions",
- name: "版本日志",
- },
- ],
- },
- ];
- return {
- changeIndex,
- defaultActive,
- menu,
- };
- },
- };
- </script>
|