更换导航菜单组件

UI_2022-02-10
yujialong 3 years ago
parent 79b65eff16
commit 7a487b6072
  1. 10
      package-lock.json
  2. 65
      src/layouts/navbar/index.vue
  3. 4
      src/setting.js
  4. 9
      src/store/modules/user.js

10
package-lock.json generated

@ -2023,7 +2023,7 @@
}, },
"babel-plugin-syntax-dynamic-import": { "babel-plugin-syntax-dynamic-import": {
"version": "6.18.0", "version": "6.18.0",
"resolved": "https://registry.npm.taobao.org/babel-plugin-syntax-dynamic-import/download/babel-plugin-syntax-dynamic-import-6.18.0.tgz", "resolved": "https://registry.npmjs.org/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz",
"integrity": "sha1-jWomIpyDdFqZgqRBBRVyyqF5sdo=" "integrity": "sha1-jWomIpyDdFqZgqRBBRVyyqF5sdo="
}, },
"babel-polyfill": { "babel-polyfill": {
@ -3650,7 +3650,7 @@
}, },
"de-indent": { "de-indent": {
"version": "1.0.2", "version": "1.0.2",
"resolved": "https://registry.npm.taobao.org/de-indent/download/de-indent-1.0.2.tgz", "resolved": "https://registry.npmjs.org/de-indent/-/de-indent-1.0.2.tgz",
"integrity": "sha1-sgOOhG3DO6pXlhKNCAS0VbjB4h0=", "integrity": "sha1-sgOOhG3DO6pXlhKNCAS0VbjB4h0=",
"dev": true "dev": true
}, },
@ -6702,7 +6702,7 @@
}, },
"highlight.js-async-webpack": { "highlight.js-async-webpack": {
"version": "1.0.4", "version": "1.0.4",
"resolved": "https://registry.npm.taobao.org/highlight.js-async-webpack/download/highlight.js-async-webpack-1.0.4.tgz", "resolved": "https://registry.npmjs.org/highlight.js-async-webpack/-/highlight.js-async-webpack-1.0.4.tgz",
"integrity": "sha1-wGtnv5nwSQRdYrdW5YVbCRLsYWw=" "integrity": "sha1-wGtnv5nwSQRdYrdW5YVbCRLsYWw="
}, },
"hmac-drbg": { "hmac-drbg": {
@ -8740,7 +8740,7 @@
}, },
"normalize-wheel": { "normalize-wheel": {
"version": "1.0.1", "version": "1.0.1",
"resolved": "https://registry.npm.taobao.org/normalize-wheel/download/normalize-wheel-1.0.1.tgz", "resolved": "https://registry.npmjs.org/normalize-wheel/-/normalize-wheel-1.0.1.tgz",
"integrity": "sha1-rsiGr/2wRQcNhWRH32Ls+GFG7EU=" "integrity": "sha1-rsiGr/2wRQcNhWRH32Ls+GFG7EU="
}, },
"npm-run-path": { "npm-run-path": {
@ -10923,7 +10923,7 @@
}, },
"rgbcolor": { "rgbcolor": {
"version": "1.0.1", "version": "1.0.1",
"resolved": "https://registry.npm.taobao.org/rgbcolor/download/rgbcolor-1.0.1.tgz", "resolved": "https://registry.npmjs.org/rgbcolor/-/rgbcolor-1.0.1.tgz",
"integrity": "sha1-1lBezbMEplldom+ktDMHMGd1lF0=", "integrity": "sha1-1lBezbMEplldom+ktDMHMGd1lF0=",
"optional": true "optional": true
}, },

@ -1,21 +1,28 @@
<template> <template>
<div> <div>
<el-tabs v-model="active" @tab-click="jump"> <el-menu
<el-tab-pane v-for="(item,index) in menus" :key="index" :label="item.label" :default-active="activeTab"
:name="item.index"></el-tab-pane> mode="horizontal"
</el-tabs> @select="handleSelect"
active-text-color="#9076FF"
>
<el-menu-item index="/station/list">实验台</el-menu-item>
<el-menu-item index="/appraisal/list">能力测评</el-menu-item>
<el-menu-item index="/record/list">实验记录</el-menu-item>
<el-menu-item index="/ass/list">考核列表</el-menu-item>
<el-menu-item index="/course/list">课程学习</el-menu-item>
<el-menu-item index="/info/list">资讯</el-menu-item>
<el-menu-item index="/match/list">线上赛事</el-menu-item>
</el-menu>
</div> </div>
</template> </template>
<script> <script>
import { mapState, mapActions } from "vuex"; import { mapActions } from "vuex";
import Setting from "@/setting";
import util from "@/libs/util";
export default { export default {
data() { data() {
return { return {
active: this.$route.path,
menus: [ menus: [
{ {
index: "/station/list", index: "/station/list",
@ -48,40 +55,38 @@ export default {
] ]
}; };
}, },
watch: { computed: {
"$route"(to, from) { activeTab: {
this.active = this.$route.path; get () {
return this.$store.state.user.activeTab;
},
set (newValue) {
return newValue;
}
} }
},
mounted() {
}, },
methods: { methods: {
...mapActions("user", [
"setActiveTab"
]),
// //
jump(tab) { jump(tab) {
this.active = tab.name; this.setActiveTab(tab.name);
this.$router.push(tab.name).catch(err => { this.$router.push(tab.name).catch(err => {});
}); },
handleSelect(key, keyPath) {
this.setActiveTab(key);
this.$router.push(key).catch(err => {});
console.log(key, keyPath);
} }
} }
}; };
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
/deep/ .el-tabs__header { /deep/ .el-menu.el-menu--horizontal{
z-index: 2; z-index: 2;
padding: 20px 60px 0; padding: 0 40px;
margin: 0;
box-shadow: 0px 0px 25px 2px rgba(48, 115, 248, 0.14); box-shadow: 0px 0px 25px 2px rgba(48, 115, 248, 0.14);
background-color: #fff;
.el-tabs__nav-wrap::after {
background-color: #fff;
.el-tabs__item {
padding: 0 30px;
outline: none;
}
}
} }
</style> </style>

@ -42,9 +42,9 @@ if (isHh) {
title = "职站"; title = "职站";
} else if (isDev) { } else if (isDev) {
// 本地 // 本地
host = "http://39.108.250.202:9000/"; // 中台测试服 // host = "http://39.108.250.202:9000/"; // 中台测试服
// host = "http://192.168.31.137:9000/"; // 赓 // host = "http://192.168.31.137:9000/"; // 赓
// host = "http://192.168.31.151:9000/"; // 榕 host = "http://192.168.31.151:9000/"; // 榕
// host = "http://192.168.31.125:9000/"; // 坤 // host = "http://192.168.31.125:9000/"; // 坤
systemPath = "http://192.168.31.154/"; systemPath = "http://192.168.31.154/";
defaultSubSystem = "http://39.108.250.202/pyTrials/#/"; defaultSubSystem = "http://39.108.250.202/pyTrials/#/";

@ -10,6 +10,7 @@ import addRoutes from "@/libs/route/addRoutes";
export default { export default {
namespaced: true, namespaced: true,
state: { state: {
activeTab: "/station/list", // 当前激活菜单
title: "", title: "",
logoUrl: "", logoUrl: "",
avatar: "https://cube.elemecdn.com/3/7c/3ea6beec64369c2642b92c6726f1epng.png", avatar: "https://cube.elemecdn.com/3/7c/3ea6beec64369c2642b92c6726f1epng.png",
@ -41,7 +42,10 @@ export default {
}, },
SET_USERNAME: (state, userName) => { SET_USERNAME: (state, userName) => {
state.userName = userName; state.userName = userName;
} },
SET_ACTIVE_TAB: (state, activeTab) => {
state.activeTab = activeTab;
},
}, },
actions: { actions: {
login({ state, commit }, userInfo) { login({ state, commit }, userInfo) {
@ -91,6 +95,9 @@ export default {
}, },
setUserName({ state, commit }, userName) { setUserName({ state, commit }, userName) {
commit("SET_USERNAME", userName); commit("SET_USERNAME", userName);
},
setActiveTab({ state, commit }, activeTab) {
commit("SET_ACTIVE_TAB", activeTab);
} }
} }
}; };
Loading…
Cancel
Save