<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
描述:如圖
專案路徑如下圖所示:
程式碼實現:
首先在store.js中新增兩個狀態:
import Vue from 'vue' import Vuex from 'vuex' Vue.use(Vuex) const state = { topNavState: 'home', leftNavState: 'home' } export default new Vuex.Store({ state })
App.vue內容:
<template> <div id="app"> <router-view></router-view> </div> </template> <script> export default { name: 'app' } </script>
main.js程式碼:
import Vue from 'vue' import App from './App' import router from './router' import ElementUI from 'element-ui' import store from './store.js' import 'element-ui/lib/theme-chalk/index.css' import '@/assets/iconfont.css' import '@/assets/css/style.css' Vue.config.productionTip = false Vue.use(ElementUI) new Vue({ router, store, el: '#app', render: h => h(App) })
router/index.js檔案宣告路由:
其中:行程計劃、任務、通訊錄屬於首頁大板塊(topNavState=“home”);企業資訊、車輛資訊、部門資訊都屬於enterprise這一大板塊(topNavState=“enterprise”)
import Vue from 'vue' import Router from 'vue-router' import LeftNav from '@/components/nav/leftNav.vue' import Home from '@/views/home.vue' import Dashboard from '@/views/workbench/dashboard.vue' import Mission from '@/views/workbench/mission/mission.vue' import Plan from '@/views/workbench/plan.vue' import Maillist from '@/views/workbench/maillist.vue' import EnterpriseList from '@/views/enterprise/index.vue' import EnterpriseAdd from '@/views/enterprise/add.vue' import EnterpriseDetail from '@/views/enterprise/detail.vue' import EnterpriseValidate from '@/views/enterprise/validate.vue' import VehicleManage from '@/views/vehicle/index.vue' import DeptManager from '@/views/dept/index.vue' import NotFound from '@/components/404.vue' // 懶載入方式,當路由被存取的時候才載入對應元件 const Login = resolve => require(['@/views/login'], resolve) Vue.use(Router) let router = new Router({ routes: [ { path: '/login', type: 'login', component: Login }, { path: '*', component: NotFound }, { path: '/', type: 'home', // 根據type區分不同模組(頂部導航) name: 'home', // 根據name區分不同子模組(左側導航) redirect: '/dashboard', component: Home, menuShow: true, children: [ { path: '/dashboard', component: LeftNav, name: 'dashboard', // 當前路由的name leaf: true, // 只有一個節點 iconCls: 'iconfont icon-home', // 圖示樣式class menuShow: true, children: [ { path: '/dashboard', component: Dashboard, name: '首頁', menuShow: true } ] }, { path: '/mySet', component: LeftNav, name: '我的設定', iconCls: 'el-icon-menu', menuShow: true, children: [ { path: '/mySet/plan', component: Plan, name: '行程計劃', menuShow: true }, { path: '/mySet/mission', component: Mission, name: '我的任務', menuShow: true }, { path: '/mySet/maillist', component: Maillist, name: '通訊錄', menuShow: true } ] } ] }, { path: '/enterpriseManager', type: 'enterprise', name: 'enterprise', component: Home, redirect: '/enterprise/list', menuShow: true, children: [ { path: '/enterpriseList', component: LeftNav, name: 'enterpriseList', leaf: true, // 只有一個節點 iconCls: 'iconfont icon-home', // 圖示樣式class menuShow: true, children: [ { path: '/enterprise/list', component: EnterpriseList, name: '企業列表', menuShow: true }, { path: '/enterprise/detail', component: EnterpriseDetail, name: '企業詳情', menuShow: false } ] }, { path: '/enterpriseAdd', component: LeftNav, name: 'enterpriseAdd', leaf: true, // 只有一個節點 iconCls: 'el-icon-menu', menuShow: true, children: [ { path: '/enterprise/add', component: EnterpriseAdd, name: '企業新增', menuShow: true } ] }, { path: '/enterpriseValidate', component: LeftNav, name: 'enterpriseValidate', leaf: true, // 只有一個節點 iconCls: 'el-icon-menu', menuShow: true, children: [ { path: '/enterprise/validate', component: EnterpriseValidate, name: '企業認證', menuShow: true } ] } ] }, { path: '/vehicleManager', type: 'enterprise', name: 'vehicle', component: Home, redirect: '/vehicle/list', menuShow: true, children: [ { path: '/vehicleList', component: LeftNav, name: 'vehicleList', leaf: true, // 只有一個節點 iconCls: 'iconfont icon-home', // 圖示樣式class menuShow: true, children: [ { path: '/vehicle/list', component: VehicleManage, name: '車輛資訊', menuShow: true } ] } ] }, { path: '/deptManager', type: 'enterprise', name: 'dept', component: Home, redirect: '/dept/list', menuShow: true, children: [ { path: '/deptList', component: LeftNav, name: 'deptList', leaf: true, // 只有一個節點 iconCls: 'iconfont icon-home', // 圖示樣式class menuShow: true, children: [ { path: '/dept/list', component: DeptManager, name: '部門資訊', menuShow: true } ] } ] } ] }); router.beforeEach((to, from, next) => { // console.log('to:' + to.path) if (to.path.startsWith('/login')) { window.localStorage.removeItem('access-user') next() } else if(to.path.startsWith('/register')){ window.localStorage.removeItem('access-user') next() } else { let user = JSON.parse(window.localStorage.getItem('access-user')) if (!user) { next({path: '/login'}) } else { next() } } }); export default router
特別說明:
這裡的路由物件router ,設定的是最多三級,一級路由主要對應的是頂部導航和其他無子頁面的路由,二級和三級路由分別對應的是左側導航的一級和二級選單(比如三級路由對應的就是左側導航的二級選單),二級路由設定leaf屬性,值為true表明該路由下沒有子選單(如果該路由下的某頁面不顯示在左側導航,不運算元選單)。
leftNav.vue檔案中主要是左側導航選單載入程式碼:
<template> <el-col :span="24" class="main"> <!--左側導航--> <aside :class="{showSidebar:!collapsed}"> <!--展開摺疊開關--> <div class="menu-toggle" @click.prevent="collapse"> <i class="iconfont icon-outdent" v-show="!collapsed" title="收起"></i> <i class="iconfont icon-indent" v-show="collapsed" title="展開"></i> </div> <!--導航選單--> <el-menu :default-active="$route.path" router :collapse="collapsed" ref="leftNavigation"> <template v-for="(issue,index) in $router.options.routes"> <template v-if="issue.name === $store.state.leftNavState"><!-- 注意:這裡就是leftNavState狀態作用之處,當該值與router的根路由的name相等時載入相應選單組 --> <template v-for="(item,index) in issue.children"> <el-submenu v-if="!item.leaf" :index="index+''" v-show="item.menuShow"> <template slot="title"><i :class="item.iconCls"></i><span slot="title">{{item.name}}</span></template> <el-menu-item v-for="term in item.children" :key="term.path" :index="term.path" v-if="term.menuShow" :class="$route.path==term.path?'is-active':''"> <i :class="term.iconCls"></i><span slot="title">{{term.name}}</span> </el-menu-item> </el-submenu> <el-menu-item v-else-if="item.leaf&&item.children&&item.children.length" :index="item.children[0].path" :class="$route.path==item.children[0].path?'is-active':''" v-show="item.menuShow"> <i :class="item.iconCls"></i><span slot="title">{{item.children[0].name}}</span> </el-menu-item> </template> </template> </template> </el-menu> </aside> <!--右側內容區--> <section class="content-container"> <div class="grid-content bg-purple-light"> <el-col :span="24" class="content-wrapper"> <transition name="fade" mode="out-in"> <router-view></router-view> </transition> </el-col> </div> </section> </el-col> </template> <script> export default { name: 'leftNav', data () { return { collapsed: false } }, methods: { //摺疊導航欄 collapse: function () { this.collapsed = !this.collapsed; }, // 左側導航欄根據當前路徑預設開啟子選單(如果當前路由是三級,則父級子選單預設開啟) defaultLeftNavOpened () { let cur_path = this.$route.path; //獲取當前路由 let routers = this.$router.options.routes; // 獲取路由物件 let subMenuIndex = 0, needOpenSubmenu = false; for (let i = 0; i < routers.length; i++) { let children = routers[i].children; if(children){ for (let j = 0; j < children.length; j++) { if (children[j].path === cur_path) { break; } // 如果該選單下有子選單(個數>1且設定的leaf為false才有下拉子選單) if(children[j].children && !children[j].leaf) { let grandChildren = children[j].children; for(let z=0; z<grandChildren.length; z++) { if(grandChildren[z].path === cur_path) { subMenuIndex = j; needOpenSubmenu = true; break; } } } } } } if(this.$refs['leftNavigation'] && needOpenSubmenu) { this.$refs['leftNavigation'].open(subMenuIndex); // 開啟子選單 } }, }, mounted() { this.defaultLeftNavOpened(); } } </script>
home.vue是後臺主頁元件程式碼
<template> <el-row class="container"> <!--頭部--> <el-col :span="24" class="topbar-wrap"> <div class="topbar-logo topbar-btn"> <a href="/" rel="external nofollow" rel="external nofollow" ><img src="../assets/logo.png" style="padding-left:8px;"></a> </div> <div class="topbar-logos" v-show="!collapsed"> <a href="/" rel="external nofollow" rel="external nofollow" style="color: #fff;">車車綜合管理</a> </div> <div class="topbar-title"> <el-row v-show="$store.state.topNavState==='home'"><!-- 注意:這裡就是topNavState作用之處,根據當前路由所在根路由的type值判斷顯示不同頂部導航選單 --> <el-col :span="24"> <el-menu :default-active="defaultActiveIndex" class="el-menu-demo" mode="horizontal" @select="handleSelect" :router="true"> <el-menu-item index="/">工作臺</el-menu-item> <el-menu-item index="/enterpriseManager">企業管理</el-menu-item> <el-menu-item index="/orderManager">訂單管理</el-menu-item> <el-menu-item index="/systemManager">系統管理</el-menu-item> </el-menu> </el-col> </el-row> <el-row v-show="$store.state.topNavState==='enterprise'"> <el-col :span="24"> <el-menu :default-active="defaultActiveIndex" class="el-menu-demo" mode="horizontal" @select="handleSelect" :router="true"> <el-menu-item index="/enterpriseManager">企業資訊</el-menu-item> <el-menu-item index="/vehicleManager">車輛資訊</el-menu-item> <el-menu-item index="/deptManager">組織架構</el-menu-item> </el-menu> </el-col> </el-row> </div> <div class="topbar-account topbar-btn"> <el-dropdown trigger="click"> <span class="el-dropdown-link userinfo-inner"> <i class="iconfont icon-user"></i> {{nickname}} <i class="el-icon-caret-bottom"></i></span> <el-dropdown-menu slot="dropdown"> <el-dropdown-item> <div @click="jumpTo('/user/profile')"><span style="color: #555;font-size: 14px;">個人資訊</span></div> </el-dropdown-item> <el-dropdown-item> <div @click="jumpTo('/user/changepwd')"><span style="color: #555;font-size: 14px;">修改密碼</span></div> </el-dropdown-item> <el-dropdown-item divided @click.native="logout">退出登入</el-dropdown-item> </el-dropdown-menu> </el-dropdown> </div> </el-col> <!--中間--> <transition name="fade" mode="out-in"> <router-view></router-view> </transition> </el-row> </template> <script> export default { name: 'home', data () { return { defaultActiveIndex: "/", loading: false, nickname: '', collapsed: false } }, created() {// 元件建立完後獲取資料, // 此時 data 已經被 observed 了 this.fetchNavData(); }, methods: { handleSelect(index){ this.defaultActiveIndex = index; }, //摺疊導航欄 collapse () { this.collapsed = !this.collapsed; }, fetchNavData () { // 初始化選單啟用項 var cur_path = this.$route.path; //獲取當前路由 var routers = this.$router.options.routes; // 獲取路由物件 var nav_type = "", nav_name = ""; for (var i = 0; i < routers.length; i++) { var children = routers[i].children; if(children){ for (var j = 0; j < children.length; j++) { var grand_children = children[j].children; if(grand_children){ for (var k = 0; k < grand_children.length; k++) { if (grand_children[k].path === cur_path) { nav_type = routers[i].type; nav_name = routers[i].name; break; } // 如果該選單下還有子選單 if(children[j].children) { let grandChildren = children[j].children; for(let z=0; z<grandChildren.length; z++) { if(grandChildren[z].path === cur_path) { nav_type = routers[i].type; nav_name = routers[i].name; break; } } } } } } } } this.$store.state.topNavState = nav_type; // 改變topNavState狀態的值 this.$store.state.leftNavState = nav_name; // 改變leftNavState狀態的值 if(nav_type == "home"){ this.defaultActiveIndex = "/"; } else { this.defaultActiveIndex = "/" + nav_name + "Manager"; } }, jumpTo(url){ this.defaultActiveIndex = url; this.$router.push(url); //用go重新整理 }, logout(){ //logout let that = this; this.$confirm('確認退出嗎?', '提示', { confirmButtonClass: 'el-button--warning' }).then(() => { //確認 localStorage.removeItem('access-user'); that.$router.go('/login'); //用go重新整理 }).catch(() => {}); } }, mounted() { let user = localStorage.getItem('access-user'); if (user) { user = JSON.parse(user); this.nickname = user.nickname || ''; } }, watch: { '$route': 'fetchNavData' //監聽router值改變時,改變導航選單啟用項 } } </script>
注意fetchNavData()這個方法,主要是根據當前跳轉的路由,去找到這個路由對應的type(對應頂部導航欄的分類)和name(對應左側導航欄的分類),然後儲存type和name到$store中,這樣在頂部導航可以根據$store中的type顯示相應的選單,同樣在左側導航就可以取到這個name值並顯示相應的左側選單欄了。
之前寫的左側導航欄(leftNav.vue)的程式碼有個不足的地方——當前開啟頁面是三級路由(也就是左側導航的二級選單)時,重新整理當前頁,(在左側導航中)當前路由所屬的一級選單沒有預設開啟。
解決方案已修改,在leftNav.vue中新增defaultLeftNavOpened()方法,詳情可以回看leftNav.vue的程式碼。
對於這個專案的demo,也放到了github共用,請看github地址:https://github.com/yqrong/ccproject.git
最近這段時間把專案修改了下(將頂部導航也提取出來作為命名檢視),詳情請看下篇:
補充:
今天有位細心的網友發現了一個小問題:
左側導航當前啟用的是非第一個選單時,切換其他頂部導航再切換回來,會有兩個啟用的選單。
解決:el-menu標籤缺少default-active屬性設定,加上即可。
<el-menu :default-active="$route.path" router :collapse="collapsed" ref="leftNavigation"> <!-- ... --> </el-menu>
寫程式碼還是不夠細心,自我檢討一下。
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45