左侧菜单选中设置

master
mabo 2021-07-07 16:03:48 +08:00
parent 1246810c01
commit 872a5d1982
3 changed files with 15 additions and 16 deletions

View File

@ -1,5 +1,3 @@
<template> <template>
<div class="ivu-shrinkable-menu"> <div class="ivu-shrinkable-menu">
<!-- 一级菜单 --> <!-- 一级菜单 -->
@ -38,6 +36,9 @@ export default {
navList() { navList() {
return this.$store.state.app.navList; return this.$store.state.app.navList;
}, },
currNav() {
return this.$store.state.app.currNav;
}
}, },
watch: { watch: {
// //
@ -45,15 +46,10 @@ export default {
handler: function (val, oldVal) { handler: function (val, oldVal) {
console.log(val); console.log(val);
} }
},
menuList: {
handler: function (val, oldVal) {
}
} }
}, },
methods: { methods: {
changeMenu(name) { // changeMenu(name) { //
console.log(name)
this.$router.push({ this.$router.push({
name: name name: name
}); });

View File

@ -18,14 +18,14 @@ export default {
* @description api请求基础路径 * @description api请求基础路径
*/ */
api_dev: { api_dev: {
// common: 'https://common-api.pickmall.cn', common: 'https://common-api.pickmall.cn',
// buyer: 'https://buyer-api.pickmall.cn', buyer: 'https://buyer-api.pickmall.cn',
// seller: 'https://store-api.pickmall.cn', seller: 'https://store-api.pickmall.cn',
// manager: 'https://admin-api.pickmall.cn', manager: 'https://admin-api.pickmall.cn',
common: 'http://192.168.0.106:8890', // common: 'http://192.168.0.106:8890',
buyer: 'http://192.168.0.106:8888', // buyer: 'http://192.168.0.106:8888',
seller: 'http://192.168.0.106:8889', // seller: 'http://192.168.0.106:8889',
manager: 'http://192.168.0.106:8887' // manager: 'http://192.168.0.106:8887'
}, },
api_prod: { api_prod: {

View File

@ -40,6 +40,9 @@ export default {
navList() { navList() {
return this.$store.state.app.navList; return this.$store.state.app.navList;
}, },
currNav() {
return this.$store.state.app.currNav;
}
}, },
methods: { methods: {
changeMenu(name) { // changeMenu(name) { //