12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181 |
- 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/ActivityTypeList',
- name: '活动类型',
- component: './activity/type/ActivityTypeList',
- },
- {
- path: '/activity/editActivityType',
- name: '编辑活动',
- hideInMenu: true,
- component: './activity/type/editActivityType',
- },
- {
- 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: '/property',
- name: '物业管理',
- component: '../layouts/BlankLayout',
- routes: [
- {
- path: 'buildingInfo',
- name: '楼栋管理',
- component: './property/building'
- },
- {
- path: 'buildingInfo/importExcel',
- name: '楼栋导入',
- component: './property/building/BatchImport',
- hideInMenu: true,
- },
- {
- path: 'proprietor',
- name: '业主管理',
- component: './property/proprietor'
- },
- {
- path: 'proprietor/add',
- name: '增加业主',
- component: './property/proprietor/Add',
- hideInMenu: true,
- },
- {
- path: 'proprietor/detail',
- name: '业主详情',
- component: './property/proprietor/Detail',
- hideInMenu: true,
- },
- {
- path: 'proprietor/audit',
- name: '资料审核',
- component: './property/proprietor/Audit',
- },
- {
- path: 'proprietor/batch',
- name: '业主导入',
- component: './property/proprietor/BatchImport',
- hideInMenu: true,
- },
- {
- path: 'notice',
- name: '公告管理',
- component: './property/notice'
- },
- {
- path: 'notice/edit',
- name: '公告管理详情',
- component: './property/notice/Edit',
- hideInMenu: true,
- },
- {
- path: 'news',
- name: '服务内容',
- component: './property/news'
- },
- {
- path: 'news/edit',
- name: '服务内容详情',
- component: './property/news/Edit',
- hideInMenu: true,
- },
- {
- path: 'bill/management',
- name: '收费组管理',
- component: './property/bill/list',
- },
- {
- path: 'bill/management/add',
- name: '新增收费组',
- component: './property/bill/edit',
- hideInMenu: true,
- },
- {
- path: 'bill/management/info',
- name: '收费组详情',
- component: './property/bill/info',
- hideInMenu: true,
- },
- {
- path: 'bill/management/info/add',
- name: '新增收费',
- component: './property/bill/info/Add',
- hideInMenu: true,
- },
- {
- path: 'bill/order',
- name: '订单管理',
- component: './property/bill/order',
- },
- {
- path: 'bill/order/info',
- name: '订单信息',
- component: './property/bill/order/Info',
- hideInMenu: true,
- },
- {
- path: 'bill/ticket',
- name: '工单管理',
- component: './property/ticket',
- },
- {
- path: 'bill/ticket/detail',
- name: '工单详情',
- component: './property/ticket/Detail',
- hideInMenu: true,
- },
- ]
- },
- // {
- // 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',
- },
- ];
|