123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356 |
-
- import system from './index' // 系统首页
-
- import systemSet from './systemSet/index' // 系统设置
- import userManager from './systemSet/userManager/index' // 用户管理
- import addUser from './systemSet/userManager/add' // 添加用户
- import editUser from './systemSet/userManager/edit' // 编辑用户
- import roleManager from './systemSet/roleManager/index' // 角色管理
- import editRole from './systemSet/roleManager/add' // 编辑角色
-
- import caseManager from './caseManager/index' // 案场管理
- import caseInfo from './caseManager/caseInfo/index' // 案场信息
- import addCase from './caseManager/caseInfo/addCase/index' // 新增案场
- import editCase from './caseManager/caseInfo/editCase/index' // 新增案场
- import pplConcerned from './caseManager/caseInfo/pplConcerned/index' // 相关人员
- import editPPLConcerned from './caseManager/caseInfo/pplConcerned/editPPLConcerned/index' // 编辑相关人员
- import keyManager from './caseManager/keyManager/index' // 钥匙管理
- import addKey from './caseManager/keyManager/add' // 新增钥匙
- import caseAreaManager from './caseManager/caseAreaManager/index' // 案场区域管理
- import addCaseArea from './caseManager/caseAreaManager/add' // 新增案场区域
- import editCaseArea from './caseManager/caseAreaManager/edit' // 编辑案场区域
- import caseTableManager from './caseManager/caseTableManager/index' // 案场桌位管理
- import addCaseTable from './caseManager/caseTableManager/add' // 新增案场桌位
- import editCaseTable from './caseManager/caseTableManager/edit' // 编辑案场桌位
- import tagManager from './caseManager/tagManager/index' // 标签管理
- import addTag from './caseManager/tagManager/add' // 添加标签
- import editTag from './caseManager/tagManager/edit' // 编辑标签
-
- import goodsManager from './goodsManager/index' // 商品管理
- import goodsTypeManager from './goodsManager/goodsTypeManager/index' // 商品类型管理
- import addGoodsType from './goodsManager/goodsTypeManager/add' // 新增商品类型
- import editGoodsType from './goodsManager/goodsTypeManager/edit' // 编辑商品类型
- import goodsSpecManager from './goodsManager/goodsSpecManager/index' // 商品规格管理
- import addGoodsSpec from './goodsManager/goodsSpecManager/add' // 新增商品规格
- import editGoodsSpec from './goodsManager/goodsSpecManager/edit' // 编辑商品规格管理
-
- import cmsManager from './cmsManager/index' // cms管理
- import bannerManager from './cmsManager/bannerManager/index' // 轮播图管理
- import addBanner from './cmsManager/bannerManager/add' // 添加轮播图
- import editBanner from './cmsManager/bannerManager/edit' // 编辑轮播图
- import indexCase from './cmsManager/majorProjects/index' // 售楼处项目专题
- import addIndexCase from './cmsManager/majorProjects/add' // 新增售楼处项目专题
- import editIndexCase from './cmsManager/majorProjects/edit' // 编辑售楼处项目专题
- import indexMsg from './cmsManager/indexMsg/index' // 首页消息
- import addIndexMsg from './cmsManager/indexMsg/add' // 新增首页消息
- import editIndexMsg from './cmsManager/indexMsg/edit' // 新增首页消息
- import newsManager from './cmsManager/newsManager/index' // 资讯管理
- import addNews from './cmsManager/newsManager/add' // 资讯管理
- import editNews from './cmsManager/newsManager/edit' // 资讯管理
-
- import channelManager from './channelManager/index' // 渠道管理
- import channelList from './channelManager/channelList/index' // 渠道列表
- import addChannel from './channelManager/channelList/add' // 新增渠道
- import editChannel from './channelManager/channelList/edit' // 编辑渠道
-
- import courseManager from './courseManager/index' // 课程管理
- import fiveA from './courseManager/fiveA/index' // 全龄生活5A
- import addFiveA from './courseManager/fiveA/add' // 全龄生活5A添加
- import editFiveA from './courseManager/fiveA/edit' // 全龄生活5A编辑
- import courseTag from './courseManager/courseTag/index' // 课程标签
- import addCourseTag from './courseManager/courseTag/add' // 新增课程标签
- import editCourseTag from './courseManager/courseTag/edit' // 编辑课程标签
-
- import dataStatistics from './dataStatistics/index' // 数据统计
- import frontEndUserList from './dataStatistics/frontEndUserList/index' // 课程管理
-
- export default {
- router: [
- {
- path: '/system',
- name: 'system',
- component: system,
- children: [{ // 系统设置
- path: 'systemSet',
- name: 'systemSet',
- component: systemSet,
- children: [{ // 用户管理
- path: 'userManager',
- name: 'userManager',
- component: userManager,
- children: [{ // 添加用户
- path: 'addUser',
- name: 'addUser',
- component: addUser,
- children: []
- }, { // 编辑用户
- path: 'editUser',
- name: 'editUser',
- component: editUser,
- children: []
- }]
- }, { // 角色管理
- path: 'roleManager',
- name: 'roleManager',
- component: roleManager,
- children: [{ // 编辑角色
- path: 'editRole',
- name: 'editRole',
- component: editRole,
- children: []
- }]
- }],
- }, { // 案场管理
- path: 'caseManager',
- name: 'caseManager',
- component: caseManager,
- children: [{ // 案场信息
- path: 'caseInfo',
- name: 'caseInfo',
- component: caseInfo,
- children: [{ // 新增案场
- path: 'addCase',
- name: 'addCase',
- component: addCase,
- children: []
- }, { // 编辑案场
- path: 'editCase',
- name: 'editCase',
- component: editCase,
- children: []
- }, { // 相关人员
- path: 'pplConcerned',
- name: 'pplConcerned',
- component: pplConcerned,
- children: [{ // 编辑相关人员
- path: 'editPPLConcerned',
- name: 'editPPLConcerned',
- component: editPPLConcerned,
- children: []
- }]
- }]
- }, { // 钥匙管理
- path: 'keyManager',
- name: 'keyManager',
- component: keyManager,
- children: [{ // 新增钥匙
- path: 'addKey',
- name: 'addKey',
- component: addKey,
- children: []
- }]
- }, { // 案场区域管理
- path: 'caseAreaManager',
- name: 'caseAreaManager',
- component: caseAreaManager,
- children: [{ // 新增案场区域
- path: 'addCaseArea',
- name: 'addCaseArea',
- component: addCaseArea,
- children: []
- }, { // 编辑案场区域
- path: 'editCaseArea',
- name: 'editCaseArea',
- component: editCaseArea,
- children: []
- }]
- }, { // 案场桌位管理
- path: 'caseTableManager',
- name: 'caseTableManager',
- component: caseTableManager,
- children: [{ // 新增案场桌位
- path: 'addCaseTable',
- name: 'addCaseTable',
- component: addCaseTable,
- children: []
- }, { // 编辑案场桌位
- path: 'editCaseTable',
- name: 'editCaseTable',
- component: editCaseTable,
- children: []
- }]
- }, { // 标签管理
- path: 'tagManager',
- name: 'tagManager',
- component: tagManager,
- children: [{ // 添加标签
- path: 'addTag',
- name: 'addTag',
- component: addTag,
- children: []
- }, { // 编辑标签
- path: 'editTag',
- name: 'editTag',
- component: editTag,
- children: []
- }]
- }],
- }, { // 商品管理
- path: 'goodsManager',
- name: 'goodsManager',
- component: goodsManager,
- children: [{ // 商品类型管理
- path: 'goodsTypeManager',
- name: 'goodsTypeManager',
- component: goodsTypeManager,
- children: [{ // 新增商品类型
- path: 'addGoodsType',
- name: 'addGoodsType',
- component: addGoodsType,
- children: []
- }, { // 编辑商品类型
- path: 'editGoodsType',
- name: 'editGoodsType',
- component: editGoodsType,
- children: []
- }]
- }, { // 商品规格管理
- path: 'goodsSpecManager',
- name: 'goodsSpecManager',
- component: goodsSpecManager,
- children: [{ // 新增商品规格
- path: 'addGoodsSpec',
- name: 'addGoodsSpec',
- component: addGoodsSpec,
- children: []
- }, { // 编辑商品规格
- path: 'editGoodsSpec',
- name: 'editGoodsSpec',
- component: editGoodsSpec,
- children: []
- }]
- }],
- }, { // cms管理
- path: 'cmsManager',
- name: 'cmsManager',
- component: cmsManager,
- children: [{ // 轮播图管理
- path: 'bannerManager',
- name: 'bannerManager',
- component: bannerManager,
- children: [{ // 新增轮播图
- path: 'addBanner',
- name: 'addBanner',
- component: addBanner,
- children: []
- }, { // 编辑轮播图
- path: 'editBanner',
- name: 'editBanner',
- component: editBanner,
- children: []
- }]
- }, { // 售楼处项目专题
- path: 'indexCase',
- name: 'indexCase',
- component: indexCase,
- children: [{ // 新增售楼处项目专题
- path: 'addIndexCase',
- name: 'addIndexCase',
- component: addIndexCase,
- children: []
- }, { // 编辑售楼处项目专题
- path: 'editIndexCase',
- name: 'editIndexCase',
- component: editIndexCase,
- children: []
- }]
- }, { // 首页消息
- path: 'indexMsg',
- name: 'indexMsg',
- component: indexMsg,
- children: [{ // 新增首页消息
- path: 'addIndexMsg',
- name: 'addIndexMsg',
- component: addIndexMsg,
- children: []
- }, { // 编辑首页消息
- path: 'editIndexMsg',
- name: 'editIndexMsg',
- component: editIndexMsg,
- children: []
- }]
- }, { // 资讯管理
- path: 'newsManager',
- name: 'newsManager',
- component: newsManager,
- children: [{ // 新增资讯
- path: 'addNews',
- name: 'addNews',
- component: addNews,
- children: []
- }, { // 编辑资讯
- path: 'editNews',
- name: 'editNews',
- component: editNews,
- children: []
- }]
- }],
- }, { // 渠道管理
- path: 'channelManager',
- name: 'channelManager',
- component: channelManager,
- children: [{ // 渠道列表
- path: 'channelList',
- name: 'channelList',
- component: channelList,
- children: [{ // 新增渠道
- path: 'addChannel',
- name: 'addChannel',
- component: addChannel,
- children: []
- }, { // 编辑渠道
- path: 'editChannel',
- name: 'editChannel',
- component: editChannel,
- children: []
- }]
- }],
- }, { // 课程管理
- path: 'courseManager',
- name: 'courseManager',
- component: courseManager,
- children: [{ // 全龄生活5A
- path: 'fiveA',
- name: 'fiveA',
- component: fiveA,
- children: [{ // 全龄生活5A添加
- path: 'addFiveA',
- name: 'addFiveA',
- component: addFiveA,
- children: []
- }, { // 全龄生活5A编辑
- path: 'editFiveA',
- name: 'editFiveA',
- component: editFiveA,
- children: []
- }]
- }, { // 课程标签
- path: 'courseTag',
- name: 'courseTag',
- component: courseTag,
- children: [{ // 新增课程标签
- path: 'addCourseTag',
- name: 'addCourseTag',
- component: addCourseTag,
- children: []
- }, { // 编辑课程标签
- path: 'editCourseTag',
- name: 'editCourseTag',
- component: editCourseTag,
- children: []
- }]
- }],
- }, { // 数据统计
- path: 'dataStatistics',
- name: 'dataStatistics',
- component: dataStatistics,
- children: [{ // 前台用户列表
- path: 'frontEndUserList',
- name: 'frontEndUserList',
- component: frontEndUserList,
- children: []
- }]
- }]
- },
- ],
- }
|