mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-04-05 07:27:06 +08:00
164 lines
3.8 KiB
JavaScript
164 lines
3.8 KiB
JavaScript
import Vue from 'vue'
|
|
import Router from 'vue-router'
|
|
import Dashboard from '@/components/dashboard/Dashboard'
|
|
import Exception from '@/components/exception/Exception'
|
|
import NotFound from '@/components/exception/404'
|
|
import NotPermit from '@/components/exception/403'
|
|
import ServerError from '@/components/exception/500'
|
|
import PageLayout from '@/components/layout/PageLayout'
|
|
import BasicForm from '@/components/form/BasicForm'
|
|
import StepForm from '@/components/form/stepForm/StepForm'
|
|
import AdvancedForm from '@/components/form/advancedForm/AdvancedForm'
|
|
import Success from '@/components/result/Success'
|
|
import Error from '@/components/result/Error'
|
|
import QueryList from '@/components/list/QueryList'
|
|
import StandardList from '@/components/list/StandardList'
|
|
import CardList from '@/components/list/CardList'
|
|
import SearchLayout from '@/components/list/SearchLayout'
|
|
import ArticleList from '@/components/list/ArticleList'
|
|
|
|
Vue.use(Router)
|
|
|
|
export default new Router({
|
|
routes: [
|
|
{
|
|
path: '/dashboard',
|
|
name: 'Dashboard',
|
|
component: Dashboard,
|
|
icon: 'dashboard'
|
|
},
|
|
{
|
|
path: '/form',
|
|
name: '表单页',
|
|
component: PageLayout,
|
|
icon: 'form',
|
|
children: [
|
|
{
|
|
path: '/form/basic',
|
|
name: '基础表单',
|
|
component: BasicForm,
|
|
icon: 'none'
|
|
},
|
|
{
|
|
path: '/form/step',
|
|
name: '分步表单',
|
|
component: StepForm,
|
|
icon: 'none'
|
|
},
|
|
{
|
|
path: '/form/advanced',
|
|
name: '高级表单',
|
|
component: AdvancedForm,
|
|
icon: 'none'
|
|
}
|
|
]
|
|
},
|
|
{
|
|
path: '/list',
|
|
name: '列表页',
|
|
component: PageLayout,
|
|
icon: 'table',
|
|
children: [
|
|
{
|
|
path: '/list/query',
|
|
name: '查询表格',
|
|
component: QueryList,
|
|
icon: 'none'
|
|
},
|
|
{
|
|
path: '/list/primary',
|
|
name: '标准表格',
|
|
component: StandardList,
|
|
icon: 'none'
|
|
},
|
|
{
|
|
path: '/list/card',
|
|
name: '卡片表格',
|
|
component: CardList,
|
|
icon: 'none'
|
|
},
|
|
{
|
|
path: '/list/search',
|
|
name: '搜索表格',
|
|
component: SearchLayout,
|
|
icon: 'none',
|
|
children: [
|
|
{
|
|
path: '/list/search/article',
|
|
name: '文章',
|
|
component: ArticleList,
|
|
icon: 'none'
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
path: '/detail',
|
|
name: '详情页',
|
|
icon: 'profile',
|
|
component: PageLayout,
|
|
children: [
|
|
{
|
|
path: '/detail/basic',
|
|
name: '基础详情页',
|
|
icon: 'none',
|
|
component: NotFound
|
|
},
|
|
{
|
|
path: '/detail/advanced',
|
|
name: '高级详情页',
|
|
icon: 'none',
|
|
component: NotFound
|
|
}
|
|
]
|
|
},
|
|
{
|
|
path: '/result',
|
|
name: '结果页',
|
|
icon: 'check-circle-o',
|
|
component: PageLayout,
|
|
children: [
|
|
{
|
|
path: '/result/success',
|
|
name: '成功',
|
|
icon: 'none',
|
|
component: Success
|
|
},
|
|
{
|
|
path: '/result/error',
|
|
name: '失败',
|
|
icon: 'none',
|
|
component: Error
|
|
}
|
|
]
|
|
},
|
|
{
|
|
path: '/exception',
|
|
name: '异常页',
|
|
icon: 'warning',
|
|
component: Exception,
|
|
children: [
|
|
{
|
|
path: '/exception/404',
|
|
name: '404',
|
|
icon: 'none',
|
|
component: NotFound
|
|
},
|
|
{
|
|
path: '/exception/403',
|
|
name: '403',
|
|
icon: 'none',
|
|
component: NotPermit
|
|
},
|
|
{
|
|
path: '/exception/500',
|
|
name: '500',
|
|
icon: 'none',
|
|
component: ServerError
|
|
}
|
|
]
|
|
}
|
|
]
|
|
})
|