123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- import Vue from 'vue'
- import Router from 'vue-router'
- Vue.use(Router)
- /* Layout */
- import Layout from '../views/layout/Layout'
- /**
- * hidden: true if `hidden:true` will not show in the sidebar(default is false)
- * alwaysShow: true if set true, will always show the root menu, whatever its child routes length
- * if not set alwaysShow, only more than one route under the children
- * it will becomes nested mode, otherwise not show the root menu
- * redirect: noredirect if `redirect:noredirect` will no redirct in the breadcrumb
- * name:'router-name' the name is used by <keep-alive> (must set!!!)
- * meta : {
- title: 'title' the name show in submenu and breadcrumb (recommend set)
- icon: 'svg-name' the icon show in the sidebar,
- }
- **/
- export const constantRouterMap = [
- {path: '/login', component: () => import('@/views/login/index'), hidden: true},
- {path: '/404', component: () => import('@/views/404'), hidden: true},
- {
- path: '',
- component: Layout,
- redirect: '/home',
- children: [{
- path: 'home',
- name: 'home',
- component: () => import('@/views/home/index'),
- meta: {title: '首页', icon: 'home'}
- }]
- },
- {
- path: '/pms',
- component: Layout,
- redirect: '/pms/product',
- name: 'pms',
- meta: {title: '商品', icon: 'product'},
- children: [{
- path: 'product',
- name: 'product',
- component: () => import('@/views/pms/product/index'),
- meta: {title: '商品列表', icon: 'product-list'}
- },
- {
- path: 'addProduct',
- name: 'addProduct',
- component: () => import('@/views/pms/product/add'),
- meta: {title: '添加商品', icon: 'product-add'}
- },
- {
- path: 'productRecycle',
- name: 'productRecycle',
- component: () => import('@/views/pms/product/index'),
- meta: {title: '商品回收站', icon: 'product-recycle'}
- },
- {
- path: 'productComment',
- name: 'productComment',
- component: () => import('@/views/pms/product/index'),
- meta: {title: '商品评价', icon: 'product-comment'}
- },
- {
- path: 'productCate',
- name: 'productCate',
- component: () => import('@/views/pms/productCate/index'),
- meta: {title: '商品分类', icon: 'product-cate'}
- },
- {
- path: 'addProductCate',
- name: 'addProductCate',
- component: () => import('@/views/pms/productCate/add'),
- meta: {title: '添加商品分类'},
- hidden:true
- },
- {
- path: 'updateProductCate',
- name: 'updateProductCate',
- component: () => import('@/views/pms/productCate/update'),
- meta: {title: '修改商品分类'},
- hidden:true
- },
- {
- path: 'productAttr',
- name: 'productAttr',
- component: () => import('@/views/pms/productAttr/index'),
- meta: {title: '商品类型', icon: 'product-attr'}
- },
- {
- path: 'productAttrList',
- name: 'productAttrList',
- component: () => import('@/views/pms/productAttr/productAttrList'),
- meta: {title: '商品属性列表'},
- hidden:true
- },
- {
- path: 'addProductAttr',
- name: 'addProductAttr',
- component: () => import('@/views/pms/productAttr/addProductAttr'),
- meta: {title: '添加商品属性'},
- hidden:true
- },
- {
- path: 'updateProductAttr',
- name: 'updateProductAttr',
- component: () => import('@/views/pms/productAttr/updateProductAttr'),
- meta: {title: '修改商品属性'},
- hidden:true
- },
- {
- path: 'brand',
- name: 'brand',
- component: () => import('@/views/pms/brand/index'),
- meta: {title: '品牌管理', icon: 'product-brand'}
- },
- {
- path: 'addBrand',
- name: 'addBrand',
- component: () => import('@/views/pms/brand/add'),
- meta: {title: '添加品牌'},
- hidden:true
- },
- {
- path: 'updateBrand',
- name: 'updateBrand',
- component: () => import('@/views/pms/brand/update'),
- meta: {title: '编辑品牌'},
- hidden:true
- }
- ]
- },
- {path: '*', redirect: '/404', hidden: true}
- ]
- export default new Router({
- // mode: 'history', //后端支持可开
- scrollBehavior: () => ({y: 0}),
- routes: constantRouterMap
- })
|