|
@@ -2,6 +2,8 @@ import LayoutMain from '@/framework/layout/Main'
|
|
|
import Dasboard from '@/views/dasboard'
|
|
|
//首页登录页面
|
|
|
import login from '@/framework/layout'
|
|
|
+// 品牌管理
|
|
|
+import brand from '@/views/brand'
|
|
|
//测试页面
|
|
|
import test from '@/components/test'
|
|
|
/**模型管理 */
|
|
@@ -11,7 +13,7 @@ export default [
|
|
|
// 首页
|
|
|
{
|
|
|
path: '/',
|
|
|
- name: '',
|
|
|
+ name: 'LayoutMain',
|
|
|
component: LayoutMain,
|
|
|
children: [{
|
|
|
path: '',
|
|
@@ -25,6 +27,18 @@ export default [
|
|
|
name: 'login',
|
|
|
component: login,
|
|
|
},
|
|
|
+ // 品牌管理
|
|
|
+ {
|
|
|
+ path: '/brand',
|
|
|
+ name: 'LayoutMain',
|
|
|
+ component: LayoutMain,
|
|
|
+ children: [{
|
|
|
+ path: '',
|
|
|
+ name: 'brand',
|
|
|
+ component: brand
|
|
|
+ },
|
|
|
+ ]
|
|
|
+ },
|
|
|
{
|
|
|
path: '/test',
|
|
|
name: 'test',
|