1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057 |
- export default [
- {
- path: '/user',
- component: '../layouts/UserLayout',
- routes: [
- {
- name: 'login',
- path: '/user/login',
- component: './user/login',
- },
- ],
- },
- {
- path: '/',
- component: '../layouts/SecurityLayout',
- routes: [
- {
- path: '/',
- component: '../layouts/BasicLayout',
- routes: [
- {
- path: '/',
- redirect: '/index',
- },
- {
- path: '/index',
- name: '首页',
- component: './Index',
- },
- // {
- // path: '/',
- // redirect: '/welcome',
- // },
- // {
- // path: '/welcome',
- // name: '首页',
- // component: './Welcome',
- // },
- // {
- // path: '/building',
- // name: '项目管理',
- // component: '../layouts/BlankLayout',
- // routes: [
- // {
- // path: '/building/list',
- // name: '项目列表',
- // component: './building/list/index',
- // },
- // {
- // path: '/building/list/add',
- // name: '项目添加', // 项目添加
- // hideInMenu: true,
- // component: './building/list/add/index',
- // },
- // {
- // path: '/building/type',
- // name: '项目类型',
- // component: './building/type/index',
- // },
- // {
- // path: '/building/type/edi',
- // name: '项目类型编辑',
- // hideInMenu: true,
- // component: './building/type/edi',
- // },
- // ],
- // },
- {
- path: '/customer',
- name: '客户管理',
- component: '../layouts/BlankLayout',
- routes: [
- {
- path: '/customer/customerlist/list',
- name: '客户列表',
- component: './customer/customerlist/index',
- },
- {
- path: '/customer/customerlist/customerDetail',
- name: '私客详情',
- hideInMenu: true,
- component: './customer/customerlist/customerDetail',
- },
- {
- path: '/customer/drift/list',
- name: '游客列表',
- component: './customer/drift/index',
- },
- {
- path: '/customer/customerlist/publicCustomerDetail',
- name: '公客详情',
- hideInMenu: true,
- component: './customer/customerlist/publicCustomerDetail',
- },
- ],
- },
- {
- path: '/recommend',
- name: '推荐客户',
- component: '../layouts/BlankLayout',
- routes: [
- {
- path: '/recommend/recommendCustomer/list',
- name: '推荐记录',
- component: './recommend/recommendCustomer/index',
- },
- {
- path: '/recommend/recommendCustomer/audit',
- name: '客户审核',
- hideInMenu: true,
- component: './recommend/recommendCustomer/audit',
- },
- ],
- },
- {
- path: '/integralMall',
- name: '积分商城',
- component: '../layouts/BlankLayout',
- routes: [
- {
- path: '/integralMall/GoodsList',
- name: '商品列表',
- component: './integralMall/GoodsList',
- },
- {
- path: '/integralMall/achieve',
- name: '积分获取',
- component: './integralMall/achieve',
- },
- {
- path: '/integralMall/editAchieve',
- name: '积分编辑',
- hideInMenu: true,
- component: './integralMall/editAchieve',
- },
- {
- path: '/integralMall/editGoods',
- name: '商品编辑',
- hideInMenu: true,
- component: './integralMall/editGoods',
- },
- {
- path: '/integralMall/exchangeRecords',
- name: '兑换记录',
- component: './integralMall/exchangeRecords',
- },
- {
- path: '/integralMall/writeOff',
- name: '商品核销',
- component: './integralMall/writeOff',
- },
- {
- path: '/integralMall/verifyList',
- name: '商品核销列表',
- hideInMenu: true,
- component: './integralMall/verifyList',
- },
- ],
- },
- {
- path: '/shop',
- name: '商户管理',
- component: '../layouts/BlankLayout',
- routes: [
- {
- path: '/shop/banner',
- name: '联盟商城banner',
- component: './shop/banner',
- },
- {
- path: '/shop/type',
- name: '分类列表',
- component: './shop/type/index',
- },
- {
- path: '/shop/type/detail',
- name: '分类详情',
- hideInMenu: true,
- component: './shop/type/detail',
- },
- {
- path: '/shop/list',
- name: '商户列表',
- component: './shop/index',
- },
- {
- path: '/shop/detail',
- name: '商户详情',
- hideInMenu: true,
- component: './shop/detail',
- },
- ]
- },
- {
- path: '/channel',
- name: '渠道管理',
- component: '../layouts/BlankLayout',
- routes: [
- {
- path: '/channel/channelList',
- name: '渠道管理',
- component: './channel/channelList',
- },
- {
- path: '/channel/addChannel',
- name: '添加渠道',
- hideInMenu: true,
- component: './channel/addChannel',
- },
- {
- path: '/channel/editChannel',
- name: '编辑渠道',
- hideInMenu: true,
- component: './channel/editChannel',
- },
- {
- path: '/channel/brokerList',
- name: '经纪人',
- hideInMenu: true,
- component: './channel/brokerList',
- },
- {
- path: '/channel/recommendClients',
- name: '渠道推荐',
- hideInMenu: true,
- component: './channel/recommendClients',
- },
- {
- path: '/channel/InviteClients',
- name: '邀请经纪人',
- hideInMenu: true,
- component: './channel/InviteClients',
- },
- {
- path: '/channel/independentList',
- name: '专业经纪人',
- component: './channel/independentList/index',
- },
- {
- path: '/channel/newCustomer',
- name: '引进注册用户',
- hideInMenu: true,
- component: './channel/newCustomer',
- },
- {
- path: '/channel/newCustomer/dataRecord',
- name: '注册用户',
- hideInMenu: true,
- component: './channel/newCustomer/dataRecord',
- },
- {
- path: '/channel/newCustomer/visitNum',
- name: '访问次数',
- hideInMenu: true,
- component: './channel/newCustomer/visitNum',
- },
- {
- path: '/channel/newCustomer/personNum',
- name: '访问人数',
- hideInMenu: true,
- component: './channel/newCustomer/personNum',
- },
- ],
- },
- {
- path: '/news',
- name: '资讯管理',
- component: '../layouts/BlankLayout',
- routes: [
- {
- path: '/news/type/NewsType',
- name: '资讯类型',
- component: './news/type/NewsType',
- },
- {
- path: '/news/type/editNews',
- name: '编辑资讯类型',
- hideInMenu: true,
- component: './news/type/editNews',
- },
- {
- path: '/news/list/NewsList',
- name: '资讯列表',
- component: './news/list/NewsList',
- },
- {
- path: '/news/list/editNewsList',
- name: '编辑资讯',
- hideInMenu: true,
- component: './news/list/editNewsList',
- },
- ],
- },
- {
- path: '/activity',
- name: '活动管理',
- component: '../layouts/BlankLayout',
- routes: [
- {
- path: '/activity/ActivityList',
- name: '报名活动',
- component: './activity/ActivityList',
- },
- {
- path: '/activity/editActivity',
- name: '编辑活动',
- hideInMenu: true,
- component: './activity/editActivity',
- },
- {
- path: '/activity/detailActivity',
- name: '活动详情',
- hideInMenu: true,
- component: './activity/detailActivity',
- },
- {
- path: '/activity/SignList',
- name: '报名列表',
- hideInMenu: true,
- component: './activity/SignList',
- },
- {
- path: '/activity/activityRecord',
- name: '数据记录',
- hideInMenu: true,
- component: './activity/activityRecord',
- },
- {
- path: '/activity/helpActivity/list',
- name: '助力活动',
- component: './activity/helpActivity/list',
- },
- {
- path: '/activity/helpActivity/helpRecord',
- name: '助力记录',
- hideInMenu: true,
- component: './activity/helpActivity/helpRecord',
- },
- {
- path: '/activity/helpActivity/edithelpActivity',
- name: '编辑',
- hideInMenu: true,
- component: './activity/helpActivity/edithelpActivity',
- },
- {
- path: '/activity/helpActivity/signList',
- name: '助力记录',
- hideInMenu: true,
- component: './activity/helpActivity/signList',
- },
- {
- path: '/activity/helpActivity/helpActivityRecord',
- name: '数据记录',
- hideInMenu: true,
- component: './activity/helpActivity/helpActivityRecord',
- },
- {
- path: '/activity/groupActivity/list',
- name: '拼团活动',
- component: './activity/groupActivity/list',
- },
- {
- path: '/activity/groupActivity/helpRecord',
- name: '拼团记录',
- hideInMenu: true,
- component: './activity/groupActivity/helpRecord',
- },
- {
- path: '/activity/groupActivity/editgroupActivity',
- name: '新增',
- hideInMenu: true,
- component: './activity/groupActivity/editgroupActivity',
- },
- {
- path: '/activity/groupActivity/detailActivity',
- name: '活动详情',
- hideInMenu: true,
- component: './activity/groupActivity/detailActivity',
- },
- {
- path: '/activity/groupActivity/groupActivityRecord',
- name: '数据记录',
- hideInMenu: true,
- component: './activity/groupActivity/groupActivityRecord',
- },
- {
- path: '/activity/drainage/DrainageList',
- name: 'H5活动',
- component: './activity/drainage/DrainageList',
- },
- {
- path: '/activity/drainage/Detail',
- name: '查看详情',
- hideInMenu: true,
- component: './activity/drainage/Detail',
- },
- {
- path: '/activity/drainage/DetailDrainage',
- name: 'H5详情',
- hideInMenu: true,
- component: './activity/drainage/DetailDrainage',
- },
- {
- path: '/activity/drainage/h5edit',
- name: 'H5详情',
- hideInMenu: true,
- component: './activity/drainage/h5edit',
- },
- {
- path: '/activity/helpActivity/detailActivity',
- name: '活动详情',
- hideInMenu: true,
- component: './activity/helpActivity/detailActivity',
- },
- {
- path: '/activity/drainage/drainageRecord',
- name: '数据记录',
- hideInMenu: true,
- component: './activity/drainage/drainageRecord',
- },
- {
- path: '/activity/liveActivity/list/index',
- name: '直播活动',
- component: './activity/liveActivity/list/index',
- },
- {
- path: '/activity/liveActivity/add',
- name: '新增',
- hideInMenu: true,
- component: './activity/liveActivity/add',
- },
- {
- path: '/activity/liveActivity/edit',
- name: '编辑',
- hideInMenu: true,
- component: './activity/liveActivity/edit',
- },
- {
- path: '/activity/liveActivity/liveActivityRecord',
- name: '数据记录',
- hideInMenu: true,
- component: './activity/liveActivity/list/liveActivityRecord',
- },
- ],
- },
- {
- path: '/staff',
- name: '员工管理',
- component: '../layouts/BlankLayout',
- routes: [
- {
- path: '/staff/StaffList',
- name: '员工列表',
- component: './staff/list/StaffList',
- },
- {
- path: '/staff/editStaff',
- name: '编辑员工',
- hideInMenu: true,
- component: './staff/list/editStaff',
- },
-
- {
- path: '/staff/RoleList',
- name: '角色管理',
- component: './staff/list/RoleList',
- },
- {
- path: '/staff/editRole',
- name: '编辑角色',
- hideInMenu: true,
- component: './staff/list/editRole',
- },
- {
- path: '/staff/list/addRole',
- name: '添加角色',
- hideInMenu: true,
- component: './staff/list/addRole',
- },
- {
- path: '/staff/list/distribution',
- name: '分配归属',
- hideInMenu: true,
- component: './staff/list/distribution',
- },
- ],
- },
- {
- path: '/carouselFigure',
- name: '资源位管理',
- component: '../layouts/BlankLayout',
- routes: [
- {
- path: '/carouselFigure/carouselFigureList',
- name: '轮播图',
- component: './carouselFigure/carouselFigureList',
- },
- {
- path: '/carouselFigure/editCarousel',
- name: '轮播图编辑',
- hideInMenu: true,
- component: './carouselFigure/editCarousel',
- },
- {
- path: '/carouselFigure/advertisingList',
- name: '开屏广告',
- component: './carouselFigure/advertisingList',
- },
- {
- path: '/carouselFigure/editAdvertising',
- name: '开屏广告编辑',
- hideInMenu: true,
- component: './carouselFigure/editAdvertising',
- },
- {
- path: '/carouselFigure/propagandaList',
- name: '宣传位',
- component: './carouselFigure/propagandaList',
- },
- {
- path: '/carouselFigure/propaganda',
- name: '宣传位编辑',
- hideInMenu: true,
- component: './carouselFigure/propaganda',
- },
- {
- path: '/carouselFigure/customImg/list',
- name: '其他',
- component: './carouselFigure/customImg/list',
- },
- {
- path: '/carouselFigure/customImg/edit',
- name: '其他编辑',
- hideInMenu: true,
- component: './carouselFigure/customImg/edit',
- },
- ],
- },
- {
- path: '/system',
- name: '系统管理',
- component: '../layouts/BlankLayout',
- routes: [
- {
- path: '/system/person-level-setting',
- name: '用户等级',
- component: './system/personLevelSetting'
- },
- {
- path: '/system/person-level-setting/detail',
- name: '等级详情',
- component: './system/personLevelSetting/detail',
- hideInMenu: true,
- },
- {
- path: '/system/messageList',
- name: '客户留言',
- component: './system/messageList',
- },
- {
- path: '/system/report',
- name: '报表数据',
- component: './system/report',
- },
- {
- path: '/system/intention',
- name: '意向值',
- component: './system/intention',
- },
- {
- path: '/system/housingPolicy',
- name: '购房须知',
- component: './system/housingPolicy',
- },
- {
- path: '/system/editPolicy',
- name: '购房政策编辑',
- hideInMenu: true,
- component: './system/editPolicy',
- },
- {
- path: '/system/document/list',
- name: '客户资料',
- component: './system/document/list',
- },
- {
- path: '/system/document/audit',
- name: '客户资料审核',
- hideInMenu: true,
- component: './system/document/audit',
- },
- // {
- // path: '/system/MiniappTheme',
- // name: '小程序主题',
- // component: './system/MiniappTheme',
- // },
- // {
- // path: '/system/MiniappTheme/Detail',
- // name: '小程序主题编辑',
- // component: './system/MiniappTheme/Detail',
- // hideInMenu: true,
- // },
- ],
- },
- {
- path: '/record',
- name: '数据记录',
- component: '../layouts/BlankLayout',
- routes: [
- {
- path: '/record/report/list',
- name: '报备记录',
- component: './record/report/index',
- },
- {
- path: '/record/drainage/DrainageVisitRecordList',
- name: '分享记录',
- component: './record/drainage/DrainageVisitRecordList',
- },
- {
- path: '/record/share/countList',
- name: '销售分享统计',
- component: './record/share/countList',
- },
- {
- path: '/record/share/shareCountList',
- name: '分享次数列表',
- hideInMenu: true,
- component: './record/share/shareCountList',
- },
- {
- path: '/record/share/clickCountList',
- name: '点击次数列表',
- hideInMenu: true,
- component: './record/share/clickCountList',
- },
- ],
- },
- {
- path: '/statistical',
- name: '数据统计',
- component: '../layouts/BlankLayout',
- routes: [
- {
- path: '/statistical',
- redirect: '/statistical/monitor',
- },
- {
- path: '/statistical/monitor',
- name: '数据报表',
- component: './Monitor',
- },
- {
- path: '/statistical/activity',
- name: '活动统计',
- component: './statistical/activity'
- },
- {
- path: '/statistical/activity/detail',
- name: '查看详情',
- hideInMenu: true,
- component: './statistical/activity/detail'
- },
- {
- path: '/statistical/activity/sharePersonNum',
- name: '分享统计',
- hideInMenu: true,
- component: './statistical/activity/sharePersonNum',
- },
- {
- path: '/statistical/activity/shareNum',
- name: '分享统计',
- hideInMenu: true,
- component: './statistical/activity/shareNum',
- },
- {
- path: '/statistical/activity/addRegistNum',
- name: '分享统计',
- hideInMenu: true,
- component: './statistical/activity/addRegistNum',
- },
- {
- path: '/statistical/activity/visitNum',
- name: '访问统计',
- hideInMenu: true,
- component: './statistical/activity/visitNum',
- },
- {
- path: '/statistical/activity/visitPersonNum',
- name: '访问统计',
- hideInMenu: true,
- component: './statistical/activity/visitPersonNum',
- },
- {
- path: '/statistical/building',
- name: '项目统计',
- component: './statistical/building',
- },
- {
- path: '/statistical/consultant',
- name: '置业顾问KPI',
- component: './statistical/consultant',
- },
-
- {
- path: '/statistical/userSource',
- name: '用户来源',
- component: './indexEcharts/userSource',
- hideInMenu: true,
- },
- {
- path: '/statistical/newUsers',
- name: '新增用户',
- component: './indexEcharts/newUsers',
- hideInMenu: true,
- },
- {
- path: '/statistical/userBehavior',
- name: '用户行为',
- component: './indexEcharts/userBehavior',
- hideInMenu: true,
- },
- {
- path: '/statistical/building/detail',
- name: '项目统计详情',
- component: './statistical/building/detail',
- hideInMenu: true,
- },
- {
- path: '/statistical/consultant/table',
- name: '客户总计',
- hideInMenu: true,
- component: './statistical/consultant/table',
- },
- {
- path: '/statistical/consultant/newPersons',
- name: '新增客户',
- hideInMenu: true,
- component: './statistical/consultant/table',
- },
- {
- path: '/statistical/consultant/sharetable',
- name: '分享次数',
- hideInMenu: true,
- component: './statistical/consultant/sharetable',
- },
- {
- path: '/statistical/consultant/visitPersons',
- name: '分享访问人数',
- hideInMenu: true,
- component: './statistical/consultant/visitPersons',
- },
- {
- path: '/statistical/consultant/visitNum',
- name: '分享访问次数',
- hideInMenu: true,
- component: './statistical/consultant/visitNum',
- },
- {
- path: '/statistical/consultant/sharePersons',
- name: '分享拓客',
- hideInMenu: true,
- component: './statistical/consultant/table',
- },
- {
- path: '/statistical/consultant/homePagePersons',
- name: '主页访问人数',
- hideInMenu: true,
- component: './statistical/consultant/homePagePersons',
- },
- {
- path: '/statistical/consultant/homepageNum',
- name: '主页访问次数',
- hideInMenu: true,
- component: './statistical/consultant/table',
- },
- {
- path: '/statistical/consultant/chatPersons',
- name: '咨询数',
- hideInMenu: true,
- component: './statistical/consultant/table',
- },
- {
- path: '/statistical/consultant/favorNum',
- name: '点赞数',
- hideInMenu: true,
- component: './statistical/consultant/table',
- },
- ],
- },
- {
- path: '/house',
- name: '在线选房',
- component: '../layouts/BlankLayout',
- routes: [
- {
- path: '/house/house/list',
- name: '房源管理',
- component: './house/house/list/index',
- },
- {
- path: '/house/house/add',
- name: '新增',
- hideInMenu: true,
- component: './house/house/add/index',
- },
- {
- path: '/house/house/batch',
- name: '批量上传',
- hideInMenu: true,
- component: './house/house/add/HouseBatchAdd',
- },
- {
- path: '/house/house/edit',
- name: '编辑',
- hideInMenu: true,
- component: './house/house/edit/index',
- },
- {
- path: '/house/preSelect/list',
- name: '预选管理',
- component: './house/preSelect/list/index',
- },
- {
- path: '/house/preSelect/add',
- name: '新增',
- hideInMenu: true,
- component: './house/preSelect/add/index',
- },
- {
- path: '/house/preSelect/batch',
- name: '批量上传',
- hideInMenu: true,
- component: './house/preSelect/add/HouseBatchAdd',
- },
- {
- path: '/house/preSelect/edit',
- name: '编辑',
- hideInMenu: true,
- component: './house/preSelect/edit/index',
- },
- {
- path: '/house/raise/list',
- name: '认筹管理',
- component: './house/raise/list/index',
- },
- {
- path: '/house/raise/add',
- name: '新增',
- hideInMenu: true,
- component: './house/raise/add/index',
- },
- {
- path: '/house/raise/batch',
- name: '批量上传',
- hideInMenu: true,
- component: './house/raise/add/HouseBatchAdd',
- },
- {
- path: '/house/raise/edit',
- name: '编辑',
- hideInMenu: true,
- component: './house/raise/edit/index',
- },
- ],
- },
- {
- path: '/h5SampleManager',
- name: 'H5样例管理',
- component: '../layouts/BlankLayout',
- routes: [
- {
- path: '/h5SampleManager/h5Sample/list',
- name: 'H5样例',
- component: './h5SampleManager/h5Sample/list',
- },
- {
- path: '/h5SampleManager/h5Sample/detail',
- name: '详情',
- hideInMenu: true,
- component: './h5SampleManager/h5Sample/detail',
- },
- {
- path: '/h5SampleManager/h5Sample/add',
- name: '提交需求',
- hideInMenu: true,
- component: './h5SampleManager/h5Sample/add',
- },
- {
- path: '/h5SampleManager/h5Sample/addH5',
- name: '创建H5活动',
- hideInMenu: true,
- component: './h5SampleManager/h5Sample/addH5',
- },
- {
- path: '/h5SampleManager/h5Demand/list',
- name: 'H5需求单',
- component: './h5SampleManager/h5Demand/list',
- },
- // {
- // path: '/drainageSampleManager/drainageDemand/add',
- // name: '新增需求单',
- // component: './drainageSampleManager/drainageDemand/add',
- // },
- {
- path: '/h5SampleManager/h5Demand/detail',
- name: '详情',
- hideInMenu: true,
- component: './h5SampleManager/h5Demand/detail',
- },
- {
- path: '/h5SampleManager/h5Demand/edit',
- name: '修改需求',
- hideInMenu: true,
- component: './h5SampleManager/h5Demand/edit',
- },
- ],
- },
- {
- path: '/eContract',
- name: '电子合同',
- component: '../layouts/BlankLayout',
- routes: [
- {
- path: '/eContract/template/list',
- name: '合同模板',
- component: './eContract/template/list',
- },
- {
- path: '/eContract/businessConfig/list',
- name: '业务配置',
- component: './eContract/businessConfig/list',
- },
- {
- path: '/eContract/businessConfig/add',
- name: '新增业务配置',
- hideInMenu: true,
- component: './eContract/businessConfig/add',
- },
- {
- path: '/eContract/businessConfig/detail',
- name: '业务配置详情',
- hideInMenu: true,
- component: './eContract/businessConfig/detail',
- },
- {
- path: '/eContract/manage/list',
- name: '合同管理',
- component: './eContract/manage/list',
- },
- {
- path: '/eContract/manage/edit',
- name: '查看详情',
- hideInMenu: true,
- component: './eContract/manage/edit',
- },
- {
- path: '/eContract/template/add',
- name: '新增合同模板',
- hideInMenu: true,
- component: './eContract/template/add',
- },
- {
- path: '/eContract/template/detail',
- name: '合同模板详情',
- hideInMenu: true,
- component: './eContract/template/detail',
- }
- ],
- },
- {
- path: '/qrcode',
- name: '二维码管理',
- component: '../layouts/BlankLayout',
- routes: [
- {
- path: '/qrcode/qrcodelist',
- name: '二维码列表',
- component: './qrcode/qrcodelist/index',
- },
-
- {
- path: '/qrcode/qrcodelist/add',
- name: '新增',
- hideInMenu: true,
- component: './qrcode/qrcodelist/add',
- },
- {
- path: '/qrcode/qrcodelist/dataRecord',
- name: '数据记录',
- hideInMenu: true,
- component: './qrcode/qrcodelist/dataRecord',
- },
- ],
- },
- {
- path: '/funds',
- name: '资金管理',
- component: '../layouts/BlankLayout',
- routes: [
- {
- path: '/funds/accountfunds',
- name: '账户资金',
- component: './funds/accountfunds/index',
- },
-
- // {
- // path: '/fund/qrcodelist/add',
- // name: '新增',
- // hideInMenu: true,
- // component: './fund/qrcodelist/add',
- // },
- {
- path: '/funds/financialContact',
- name: '财务联系人',
- component: './funds/financialContact/index',
- },
- ],
- },
- // {
- // path: '/miniapp',
- // name: '小程序管理',
- // component: '../layouts/BlankLayout',
- // routes: [
- // {
- // path: '/miniapp/menuList',
- // name: '首页菜单管理',
- // component: './miniapp/menuList',
- // },
- // {
- // path: '/miniapp/editIcons',
- // name: '首页菜单编辑',
- // hideInMenu: true,
- // component: './miniapp/editIcons',
- // },
- // ],
- // },
- {
- name: '403',
- path: '/403',
- component: './403',
- hideInMenu: true,
- },
- {
- component: './404',
- },
- ],
- },
- {
- component: './404',
- },
- ],
- },
- {
- component: './404',
- },
- ];
|