routes.js 41KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225
  1. export default [
  2. {
  3. path: '/user',
  4. component: '../layouts/UserLayout',
  5. routes: [
  6. {
  7. name: 'login',
  8. path: '/user/login',
  9. component: './user/login',
  10. },
  11. ],
  12. },
  13. {
  14. path: '/',
  15. component: '../layouts/SecurityLayout',
  16. routes: [
  17. {
  18. path: '/',
  19. component: '../layouts/BasicLayout',
  20. routes: [
  21. {
  22. path: '/',
  23. redirect: '/index',
  24. },
  25. {
  26. path: '/index',
  27. name: '首页',
  28. component: './Index',
  29. },
  30. // {
  31. // path: '/',
  32. // redirect: '/welcome',
  33. // },
  34. // {
  35. // path: '/welcome',
  36. // name: '首页',
  37. // component: './Welcome',
  38. // },
  39. // {
  40. // path: '/building',
  41. // name: '项目管理',
  42. // component: '../layouts/BlankLayout',
  43. // routes: [
  44. // {
  45. // path: '/building/list',
  46. // name: '项目列表',
  47. // component: './building/list/index',
  48. // },
  49. // {
  50. // path: '/building/list/add',
  51. // name: '项目添加', // 项目添加
  52. // hideInMenu: true,
  53. // component: './building/list/add/index',
  54. // },
  55. // {
  56. // path: '/building/type',
  57. // name: '项目类型',
  58. // component: './building/type/index',
  59. // },
  60. // {
  61. // path: '/building/type/edi',
  62. // name: '项目类型编辑',
  63. // hideInMenu: true,
  64. // component: './building/type/edi',
  65. // },
  66. // ],
  67. // },
  68. {
  69. path: '/property',
  70. name: '物业管理',
  71. component: '../layouts/BlankLayout',
  72. routes: [
  73. {
  74. path: 'buildingInfo',
  75. name: '楼栋管理',
  76. component: './property/building'
  77. },
  78. {
  79. path: 'buildingInfo/importExcel',
  80. name: '楼栋导入',
  81. component: './property/building/BatchImport',
  82. hideInMenu: true,
  83. },
  84. {
  85. path: 'proprietor',
  86. name: '业主管理',
  87. component: './property/proprietor'
  88. },
  89. {
  90. path: 'proprietor/add',
  91. name: '增加业主',
  92. component: './property/proprietor/Add',
  93. hideInMenu: true,
  94. },
  95. {
  96. path: 'proprietor/detail',
  97. name: '业主详情',
  98. component: './property/proprietor/Detail',
  99. hideInMenu: true,
  100. },
  101. {
  102. path: 'proprietor/audit',
  103. name: '资料审核',
  104. component: './property/proprietor/Audit',
  105. },
  106. {
  107. path: 'proprietor/batch',
  108. name: '业主导入',
  109. component: './property/proprietor/BatchImport',
  110. hideInMenu: true,
  111. },
  112. {
  113. path: 'notice',
  114. name: '公告管理',
  115. component: './property/notice'
  116. },
  117. {
  118. path: 'notice/edit',
  119. name: '公告管理详情',
  120. component: './property/notice/Edit',
  121. hideInMenu: true,
  122. },
  123. {
  124. path: 'news-type',
  125. name: '服务分类',
  126. component: './property/news/type/NewsType'
  127. },
  128. {
  129. path: 'news-type/edit',
  130. name: '服务内容详情',
  131. component: './property/news/type/editNews',
  132. hideInMenu: true,
  133. },
  134. {
  135. path: 'news',
  136. name: '服务内容',
  137. component: './property/news'
  138. },
  139. {
  140. path: 'news/edit',
  141. name: '服务内容详情',
  142. component: './property/news/Edit',
  143. hideInMenu: true,
  144. },
  145. {
  146. path: 'bill/management',
  147. name: '收费组管理',
  148. component: './property/bill/list',
  149. },
  150. {
  151. path: 'bill/management/add',
  152. name: '新增收费组',
  153. component: './property/bill/edit',
  154. hideInMenu: true,
  155. },
  156. {
  157. path: 'bill/management/info',
  158. name: '收费组详情',
  159. component: './property/bill/info',
  160. hideInMenu: true,
  161. },
  162. {
  163. path: 'bill/management/info/add',
  164. name: '新增收费',
  165. component: './property/bill/info/Add',
  166. hideInMenu: true,
  167. },
  168. {
  169. path: 'bill/order',
  170. name: '订单管理',
  171. component: './property/bill/order',
  172. },
  173. {
  174. path: 'bill/order/info',
  175. name: '订单信息',
  176. component: './property/bill/order/Info',
  177. hideInMenu: true,
  178. },
  179. {
  180. path: 'repair-type',
  181. name: '工单分类',
  182. component: './property/ticket/type',
  183. },
  184. {
  185. path: 'repair-type/edit',
  186. name: '分类详情',
  187. component: './property/ticket/type/Editor',
  188. hideInMenu: true,
  189. },
  190. {
  191. path: 'ticket',
  192. name: '工单管理',
  193. component: './property/ticket',
  194. },
  195. {
  196. path: 'ticket/detail',
  197. name: '工单详情',
  198. component: './property/ticket/Detail',
  199. hideInMenu: true,
  200. },
  201. {
  202. path: 'contact',
  203. name: '联系方式',
  204. component: './property/contact'
  205. },
  206. {
  207. path: 'life-consultant',
  208. name: '管家评分',
  209. component: './property/lifeConsultant'
  210. },
  211. {
  212. path: 'life-consultant/score',
  213. name: '打分详情',
  214. component: './property/lifeConsultant/Score',
  215. hideInMenu: true,
  216. },
  217. {
  218. path: 'message-event',
  219. name: '消息推送',
  220. component: './property/message/event'
  221. },
  222. ]
  223. },
  224. {
  225. path: '/customer',
  226. name: '会员管理',
  227. component: '../layouts/BlankLayout',
  228. routes: [
  229. {
  230. path: '/customer/personlist',
  231. name: '会员列表',
  232. component: './customer/personlist/index',
  233. },
  234. {
  235. path: '/customer/customerlist/customerDetail',
  236. name: '私客详情',
  237. hideInMenu: true,
  238. component: './customer/customerlist/customerDetail',
  239. },
  240. // {
  241. // path: '/customer/drift/list',
  242. // name: '游客列表',
  243. // component: './customer/drift/index',
  244. // },
  245. {
  246. path: '/customer/customerlist/publicCustomerDetail',
  247. name: '公客详情',
  248. hideInMenu: true,
  249. component: './customer/customerlist/publicCustomerDetail',
  250. },
  251. ],
  252. },
  253. // {
  254. // path: '/recommend',
  255. // name: '推荐客户',
  256. // component: '../layouts/BlankLayout',
  257. // routes: [
  258. // {
  259. // path: '/recommend/recommendCustomer/list',
  260. // name: '推荐记录',
  261. // component: './recommend/recommendCustomer/index',
  262. // },
  263. // {
  264. // path: '/recommend/recommendCustomer/audit',
  265. // name: '客户审核',
  266. // hideInMenu: true,
  267. // component: './recommend/recommendCustomer/audit',
  268. // },
  269. // ],
  270. // },
  271. {
  272. path: '/integralMall',
  273. name: '积分商城',
  274. component: '../layouts/BlankLayout',
  275. routes: [
  276. {
  277. path: '/integralMall/GoodsList',
  278. name: '商品列表',
  279. component: './integralMall/GoodsList',
  280. },
  281. {
  282. path: '/integralMall/achieve',
  283. name: '积分获取',
  284. component: './integralMall/achieve',
  285. },
  286. {
  287. path: '/integralMall/editAchieve',
  288. name: '积分编辑',
  289. hideInMenu: true,
  290. component: './integralMall/editAchieve',
  291. },
  292. {
  293. path: '/integralMall/editGoods',
  294. name: '商品编辑',
  295. hideInMenu: true,
  296. component: './integralMall/editGoods',
  297. },
  298. {
  299. path: '/integralMall/exchangeRecords',
  300. name: '兑换记录',
  301. component: './integralMall/exchangeRecords',
  302. },
  303. {
  304. path: '/integralMall/writeOff',
  305. name: '商品核销',
  306. component: './integralMall/writeOff',
  307. },
  308. {
  309. path: '/integralMall/verifyList',
  310. name: '商品核销列表',
  311. hideInMenu: true,
  312. component: './integralMall/verifyList',
  313. },
  314. ],
  315. },
  316. // {
  317. // path: '/shop',
  318. // name: '商户管理',
  319. // component: '../layouts/BlankLayout',
  320. // routes: [
  321. // {
  322. // path: '/shop/banner',
  323. // name: '联盟商城banner',
  324. // component: './shop/banner',
  325. // },
  326. // {
  327. // path: '/shop/type',
  328. // name: '分类列表',
  329. // component: './shop/type/index',
  330. // },
  331. // {
  332. // path: '/shop/type/detail',
  333. // name: '分类详情',
  334. // hideInMenu: true,
  335. // component: './shop/type/detail',
  336. // },
  337. // {
  338. // path: '/shop/list',
  339. // name: '商户列表',
  340. // component: './shop/index',
  341. // },
  342. // {
  343. // path: '/shop/detail',
  344. // name: '商户详情',
  345. // hideInMenu: true,
  346. // component: './shop/detail',
  347. // },
  348. // ]
  349. // },
  350. {
  351. path: '/channel',
  352. name: '渠道管理',
  353. component: '../layouts/BlankLayout',
  354. routes: [
  355. {
  356. path: '/channel/channelList',
  357. name: '渠道管理',
  358. component: './channel/channelList',
  359. },
  360. {
  361. path: '/channel/addChannel',
  362. name: '添加渠道',
  363. hideInMenu: true,
  364. component: './channel/addChannel',
  365. },
  366. {
  367. path: '/channel/editChannel',
  368. name: '编辑渠道',
  369. hideInMenu: true,
  370. component: './channel/editChannel',
  371. },
  372. {
  373. path: '/channel/brokerList',
  374. name: '经纪人',
  375. hideInMenu: true,
  376. component: './channel/brokerList',
  377. },
  378. {
  379. path: '/channel/recommendClients',
  380. name: '渠道推荐',
  381. hideInMenu: true,
  382. component: './channel/recommendClients',
  383. },
  384. {
  385. path: '/channel/InviteClients',
  386. name: '邀请经纪人',
  387. hideInMenu: true,
  388. component: './channel/InviteClients',
  389. },
  390. {
  391. path: '/channel/independentList',
  392. name: '专业经纪人',
  393. component: './channel/independentList/index',
  394. },
  395. {
  396. path: '/channel/newCustomer',
  397. name: '引进注册用户',
  398. hideInMenu: true,
  399. component: './channel/newCustomer',
  400. },
  401. {
  402. path: '/channel/newCustomer/dataRecord',
  403. name: '注册用户',
  404. hideInMenu: true,
  405. component: './channel/newCustomer/dataRecord',
  406. },
  407. {
  408. path: '/channel/newCustomer/visitNum',
  409. name: '访问次数',
  410. hideInMenu: true,
  411. component: './channel/newCustomer/visitNum',
  412. },
  413. {
  414. path: '/channel/newCustomer/personNum',
  415. name: '访问人数',
  416. hideInMenu: true,
  417. component: './channel/newCustomer/personNum',
  418. },
  419. ],
  420. },
  421. {
  422. path: '/news',
  423. name: '资讯管理',
  424. component: '../layouts/BlankLayout',
  425. routes: [
  426. {
  427. path: '/news/type/NewsType',
  428. name: '资讯类型',
  429. component: './news/type/NewsType',
  430. },
  431. {
  432. path: '/news/type/editNews',
  433. name: '编辑资讯类型',
  434. hideInMenu: true,
  435. component: './news/type/editNews',
  436. },
  437. {
  438. path: '/news/list/NewsList',
  439. name: '资讯列表',
  440. component: './news/list/NewsList',
  441. },
  442. {
  443. path: '/news/list/editNewsList',
  444. name: '编辑资讯',
  445. hideInMenu: true,
  446. component: './news/list/editNewsList',
  447. },
  448. ],
  449. },
  450. {
  451. path: '/activity',
  452. name: '活动管理',
  453. component: '../layouts/BlankLayout',
  454. routes: [
  455. {
  456. path: '/activity/ActivityList',
  457. name: '报名活动',
  458. component: './activity/ActivityList',
  459. },
  460. {
  461. path: '/activity/ActivityTypeList',
  462. name: '活动类型',
  463. component: './activity/type/ActivityTypeList',
  464. },
  465. {
  466. path: '/activity/editActivityType',
  467. name: '编辑活动',
  468. hideInMenu: true,
  469. component: './activity/type/editActivityType',
  470. },
  471. {
  472. path: '/activity/editActivity',
  473. name: '编辑活动',
  474. hideInMenu: true,
  475. component: './activity/editActivity',
  476. },
  477. {
  478. path: '/activity/detailActivity',
  479. name: '活动详情',
  480. hideInMenu: true,
  481. component: './activity/detailActivity',
  482. },
  483. {
  484. path: '/activity/SignList',
  485. name: '报名列表',
  486. hideInMenu: true,
  487. component: './activity/SignList',
  488. },
  489. {
  490. path: '/activity/activityRecord',
  491. name: '数据记录',
  492. hideInMenu: true,
  493. component: './activity/activityRecord',
  494. },
  495. // {
  496. // path: '/activity/helpActivity/list',
  497. // name: '助力活动',
  498. // component: './activity/helpActivity/list',
  499. // },
  500. {
  501. path: '/activity/helpActivity/helpRecord',
  502. name: '助力记录',
  503. hideInMenu: true,
  504. component: './activity/helpActivity/helpRecord',
  505. },
  506. {
  507. path: '/activity/helpActivity/edithelpActivity',
  508. name: '编辑',
  509. hideInMenu: true,
  510. component: './activity/helpActivity/edithelpActivity',
  511. },
  512. {
  513. path: '/activity/helpActivity/signList',
  514. name: '助力记录',
  515. hideInMenu: true,
  516. component: './activity/helpActivity/signList',
  517. },
  518. {
  519. path: '/activity/helpActivity/helpActivityRecord',
  520. name: '数据记录',
  521. hideInMenu: true,
  522. component: './activity/helpActivity/helpActivityRecord',
  523. },
  524. // {
  525. // path: '/activity/groupActivity/list',
  526. // name: '拼团活动',
  527. // component: './activity/groupActivity/list',
  528. // },
  529. {
  530. path: '/activity/groupActivity/helpRecord',
  531. name: '拼团记录',
  532. hideInMenu: true,
  533. component: './activity/groupActivity/helpRecord',
  534. },
  535. {
  536. path: '/activity/groupActivity/editgroupActivity',
  537. name: '新增',
  538. hideInMenu: true,
  539. component: './activity/groupActivity/editgroupActivity',
  540. },
  541. {
  542. path: '/activity/groupActivity/detailActivity',
  543. name: '活动详情',
  544. hideInMenu: true,
  545. component: './activity/groupActivity/detailActivity',
  546. },
  547. {
  548. path: '/activity/groupActivity/groupActivityRecord',
  549. name: '数据记录',
  550. hideInMenu: true,
  551. component: './activity/groupActivity/groupActivityRecord',
  552. },
  553. // {
  554. // path: '/activity/drainage/DrainageList',
  555. // name: 'H5活动',
  556. // component: './activity/drainage/DrainageList',
  557. // },
  558. {
  559. path: '/activity/drainage/Detail',
  560. name: '查看详情',
  561. hideInMenu: true,
  562. component: './activity/drainage/Detail',
  563. },
  564. {
  565. path: '/activity/drainage/DetailDrainage',
  566. name: 'H5详情',
  567. hideInMenu: true,
  568. component: './activity/drainage/DetailDrainage',
  569. },
  570. {
  571. path: '/activity/drainage/h5edit',
  572. name: 'H5详情',
  573. hideInMenu: true,
  574. component: './activity/drainage/h5edit',
  575. },
  576. {
  577. path: '/activity/helpActivity/detailActivity',
  578. name: '活动详情',
  579. hideInMenu: true,
  580. component: './activity/helpActivity/detailActivity',
  581. },
  582. {
  583. path: '/activity/drainage/drainageRecord',
  584. name: '数据记录',
  585. hideInMenu: true,
  586. component: './activity/drainage/drainageRecord',
  587. },
  588. {
  589. path: '/activity/liveActivity/list/index',
  590. name: '直播活动',
  591. component: './activity/liveActivity/list/index',
  592. },
  593. {
  594. path: '/activity/liveActivity/add',
  595. name: '新增',
  596. hideInMenu: true,
  597. component: './activity/liveActivity/add',
  598. },
  599. {
  600. path: '/activity/liveActivity/edit',
  601. name: '编辑',
  602. hideInMenu: true,
  603. component: './activity/liveActivity/edit',
  604. },
  605. {
  606. path: '/activity/liveActivity/liveActivityRecord',
  607. name: '数据记录',
  608. hideInMenu: true,
  609. component: './activity/liveActivity/list/liveActivityRecord',
  610. },
  611. ],
  612. },
  613. {
  614. path: '/staff',
  615. name: '员工管理',
  616. component: '../layouts/BlankLayout',
  617. routes: [
  618. {
  619. path: '/staff/StaffList',
  620. name: '员工列表',
  621. component: './staff/list/StaffList',
  622. },
  623. {
  624. path: '/staff/editStaff',
  625. name: '编辑员工',
  626. hideInMenu: true,
  627. component: './staff/list/editStaff',
  628. },
  629. {
  630. path: '/staff/RoleList',
  631. name: '角色管理',
  632. component: './staff/list/RoleList',
  633. },
  634. {
  635. path: '/staff/editRole',
  636. name: '编辑角色',
  637. hideInMenu: true,
  638. component: './staff/list/editRole',
  639. },
  640. {
  641. path: '/staff/list/addRole',
  642. name: '添加角色',
  643. hideInMenu: true,
  644. component: './staff/list/addRole',
  645. },
  646. {
  647. path: '/staff/list/distribution',
  648. name: '分配归属',
  649. hideInMenu: true,
  650. component: './staff/list/distribution',
  651. },
  652. ],
  653. },
  654. {
  655. path: '/carouselFigure',
  656. name: '资源位管理',
  657. component: '../layouts/BlankLayout',
  658. routes: [
  659. {
  660. path: '/carouselFigure/carouselFigureList',
  661. name: '轮播图',
  662. component: './carouselFigure/carouselFigureList',
  663. },
  664. {
  665. path: '/carouselFigure/editCarousel',
  666. name: '轮播图编辑',
  667. hideInMenu: true,
  668. component: './carouselFigure/editCarousel',
  669. },
  670. {
  671. path: '/carouselFigure/advertisingList',
  672. name: '开屏广告',
  673. component: './carouselFigure/advertisingList',
  674. },
  675. {
  676. path: '/carouselFigure/editAdvertising',
  677. name: '开屏广告编辑',
  678. hideInMenu: true,
  679. component: './carouselFigure/editAdvertising',
  680. },
  681. {
  682. path: '/carouselFigure/propagandaList',
  683. name: '宣传位',
  684. component: './carouselFigure/propagandaList',
  685. },
  686. {
  687. path: '/carouselFigure/propaganda',
  688. name: '宣传位编辑',
  689. hideInMenu: true,
  690. component: './carouselFigure/propaganda',
  691. },
  692. // {
  693. // path: '/carouselFigure/customImg/list',
  694. // name: '其他',
  695. // component: './carouselFigure/customImg/list',
  696. // },
  697. {
  698. path: '/carouselFigure/customImg/edit',
  699. name: '其他编辑',
  700. hideInMenu: true,
  701. component: './carouselFigure/customImg/edit',
  702. },
  703. ],
  704. },
  705. // {
  706. // path: '/system',
  707. // name: '系统管理',
  708. // component: '../layouts/BlankLayout',
  709. // routes: [
  710. // {
  711. // path: '/system/person-level-setting',
  712. // name: '用户等级',
  713. // component: './system/personLevelSetting'
  714. // },
  715. // {
  716. // path: '/system/person-level-setting/detail',
  717. // name: '等级详情',
  718. // component: './system/personLevelSetting/detail',
  719. // hideInMenu: true,
  720. // },
  721. // {
  722. // path: '/system/messageList',
  723. // name: '客户留言',
  724. // component: './system/messageList',
  725. // },
  726. // {
  727. // path: '/system/report',
  728. // name: '报表数据',
  729. // component: './system/report',
  730. // },
  731. // {
  732. // path: '/system/intention',
  733. // name: '意向值',
  734. // component: './system/intention',
  735. // },
  736. // {
  737. // path: '/system/housingPolicy',
  738. // name: '购房须知',
  739. // component: './system/housingPolicy',
  740. // },
  741. // {
  742. // path: '/system/editPolicy',
  743. // name: '购房政策编辑',
  744. // hideInMenu: true,
  745. // component: './system/editPolicy',
  746. // },
  747. // {
  748. // path: '/system/document/list',
  749. // name: '客户资料',
  750. // component: './system/document/list',
  751. // },
  752. // {
  753. // path: '/system/document/audit',
  754. // name: '客户资料审核',
  755. // hideInMenu: true,
  756. // component: './system/document/audit',
  757. // },
  758. // // {
  759. // // path: '/system/MiniappTheme',
  760. // // name: '小程序主题',
  761. // // component: './system/MiniappTheme',
  762. // // },
  763. // // {
  764. // // path: '/system/MiniappTheme/Detail',
  765. // // name: '小程序主题编辑',
  766. // // component: './system/MiniappTheme/Detail',
  767. // // hideInMenu: true,
  768. // // },
  769. // ],
  770. // },
  771. {
  772. path: '/record',
  773. name: '数据记录',
  774. component: '../layouts/BlankLayout',
  775. routes: [
  776. {
  777. path: '/record/report/list',
  778. name: '报备记录',
  779. component: './record/report/index',
  780. },
  781. {
  782. path: '/record/drainage/DrainageVisitRecordList',
  783. name: '分享记录',
  784. component: './record/drainage/DrainageVisitRecordList',
  785. },
  786. {
  787. path: '/record/share/countList',
  788. name: '销售分享统计',
  789. component: './record/share/countList',
  790. },
  791. {
  792. path: '/record/share/shareCountList',
  793. name: '分享次数列表',
  794. hideInMenu: true,
  795. component: './record/share/shareCountList',
  796. },
  797. {
  798. path: '/record/share/clickCountList',
  799. name: '点击次数列表',
  800. hideInMenu: true,
  801. component: './record/share/clickCountList',
  802. },
  803. ],
  804. },
  805. {
  806. path: '/statistical',
  807. name: '数据统计',
  808. component: '../layouts/BlankLayout',
  809. routes: [
  810. {
  811. path: '/statistical',
  812. redirect: '/statistical/monitor',
  813. },
  814. {
  815. path: '/statistical/monitor',
  816. name: '数据报表',
  817. component: './Monitor',
  818. },
  819. {
  820. path: '/statistical/activity',
  821. name: '活动统计',
  822. component: './statistical/activity'
  823. },
  824. {
  825. path: '/statistical/activity/detail',
  826. name: '查看详情',
  827. hideInMenu: true,
  828. component: './statistical/activity/detail'
  829. },
  830. {
  831. path: '/statistical/activity/sharePersonNum',
  832. name: '分享统计',
  833. hideInMenu: true,
  834. component: './statistical/activity/sharePersonNum',
  835. },
  836. {
  837. path: '/statistical/activity/shareNum',
  838. name: '分享统计',
  839. hideInMenu: true,
  840. component: './statistical/activity/shareNum',
  841. },
  842. {
  843. path: '/statistical/activity/addRegistNum',
  844. name: '分享统计',
  845. hideInMenu: true,
  846. component: './statistical/activity/addRegistNum',
  847. },
  848. {
  849. path: '/statistical/activity/visitNum',
  850. name: '访问统计',
  851. hideInMenu: true,
  852. component: './statistical/activity/visitNum',
  853. },
  854. {
  855. path: '/statistical/activity/visitPersonNum',
  856. name: '访问统计',
  857. hideInMenu: true,
  858. component: './statistical/activity/visitPersonNum',
  859. },
  860. {
  861. path: '/statistical/building',
  862. name: '项目统计',
  863. component: './statistical/building',
  864. },
  865. {
  866. path: '/statistical/consultant',
  867. name: '置业顾问KPI',
  868. component: './statistical/consultant',
  869. },
  870. {
  871. path: '/statistical/userSource',
  872. name: '用户来源',
  873. component: './indexEcharts/userSource',
  874. hideInMenu: true,
  875. },
  876. {
  877. path: '/statistical/newUsers',
  878. name: '新增用户',
  879. component: './indexEcharts/newUsers',
  880. hideInMenu: true,
  881. },
  882. {
  883. path: '/statistical/userBehavior',
  884. name: '用户行为',
  885. component: './indexEcharts/userBehavior',
  886. hideInMenu: true,
  887. },
  888. {
  889. path: '/statistical/building/detail',
  890. name: '项目统计详情',
  891. component: './statistical/building/detail',
  892. hideInMenu: true,
  893. },
  894. {
  895. path: '/statistical/consultant/table',
  896. name: '客户总计',
  897. hideInMenu: true,
  898. component: './statistical/consultant/table',
  899. },
  900. {
  901. path: '/statistical/consultant/newPersons',
  902. name: '新增客户',
  903. hideInMenu: true,
  904. component: './statistical/consultant/table',
  905. },
  906. {
  907. path: '/statistical/consultant/sharetable',
  908. name: '分享次数',
  909. hideInMenu: true,
  910. component: './statistical/consultant/sharetable',
  911. },
  912. {
  913. path: '/statistical/consultant/visitPersons',
  914. name: '分享访问人数',
  915. hideInMenu: true,
  916. component: './statistical/consultant/visitPersons',
  917. },
  918. {
  919. path: '/statistical/consultant/visitNum',
  920. name: '分享访问次数',
  921. hideInMenu: true,
  922. component: './statistical/consultant/visitNum',
  923. },
  924. {
  925. path: '/statistical/consultant/sharePersons',
  926. name: '分享拓客',
  927. hideInMenu: true,
  928. component: './statistical/consultant/table',
  929. },
  930. {
  931. path: '/statistical/consultant/homePagePersons',
  932. name: '主页访问人数',
  933. hideInMenu: true,
  934. component: './statistical/consultant/homePagePersons',
  935. },
  936. {
  937. path: '/statistical/consultant/homepageNum',
  938. name: '主页访问次数',
  939. hideInMenu: true,
  940. component: './statistical/consultant/table',
  941. },
  942. {
  943. path: '/statistical/consultant/chatPersons',
  944. name: '咨询数',
  945. hideInMenu: true,
  946. component: './statistical/consultant/table',
  947. },
  948. {
  949. path: '/statistical/consultant/favorNum',
  950. name: '点赞数',
  951. hideInMenu: true,
  952. component: './statistical/consultant/table',
  953. },
  954. ],
  955. },
  956. // {
  957. // path: '/house',
  958. // name: '在线选房',
  959. // component: '../layouts/BlankLayout',
  960. // routes: [
  961. // {
  962. // path: '/house/house/list',
  963. // name: '房源管理',
  964. // component: './house/house/list/index',
  965. // },
  966. // {
  967. // path: '/house/house/add',
  968. // name: '新增',
  969. // hideInMenu: true,
  970. // component: './house/house/add/index',
  971. // },
  972. // {
  973. // path: '/house/house/batch',
  974. // name: '批量上传',
  975. // hideInMenu: true,
  976. // component: './house/house/add/HouseBatchAdd',
  977. // },
  978. // {
  979. // path: '/house/house/edit',
  980. // name: '编辑',
  981. // hideInMenu: true,
  982. // component: './house/house/edit/index',
  983. // },
  984. // {
  985. // path: '/house/preSelect/list',
  986. // name: '预选管理',
  987. // component: './house/preSelect/list/index',
  988. // },
  989. // {
  990. // path: '/house/preSelect/add',
  991. // name: '新增',
  992. // hideInMenu: true,
  993. // component: './house/preSelect/add/index',
  994. // },
  995. // {
  996. // path: '/house/preSelect/batch',
  997. // name: '批量上传',
  998. // hideInMenu: true,
  999. // component: './house/preSelect/add/HouseBatchAdd',
  1000. // },
  1001. // {
  1002. // path: '/house/preSelect/edit',
  1003. // name: '编辑',
  1004. // hideInMenu: true,
  1005. // component: './house/preSelect/edit/index',
  1006. // },
  1007. // {
  1008. // path: '/house/raise/list',
  1009. // name: '认筹管理',
  1010. // component: './house/raise/list/index',
  1011. // },
  1012. // {
  1013. // path: '/house/raise/add',
  1014. // name: '新增',
  1015. // hideInMenu: true,
  1016. // component: './house/raise/add/index',
  1017. // },
  1018. // {
  1019. // path: '/house/raise/batch',
  1020. // name: '批量上传',
  1021. // hideInMenu: true,
  1022. // component: './house/raise/add/HouseBatchAdd',
  1023. // },
  1024. // {
  1025. // path: '/house/raise/edit',
  1026. // name: '编辑',
  1027. // hideInMenu: true,
  1028. // component: './house/raise/edit/index',
  1029. // },
  1030. // ],
  1031. // },
  1032. // {
  1033. // path: '/h5SampleManager',
  1034. // name: 'H5样例管理',
  1035. // component: '../layouts/BlankLayout',
  1036. // routes: [
  1037. // {
  1038. // path: '/h5SampleManager/h5Sample/list',
  1039. // name: 'H5样例',
  1040. // component: './h5SampleManager/h5Sample/list',
  1041. // },
  1042. // {
  1043. // path: '/h5SampleManager/h5Sample/detail',
  1044. // name: '详情',
  1045. // hideInMenu: true,
  1046. // component: './h5SampleManager/h5Sample/detail',
  1047. // },
  1048. // {
  1049. // path: '/h5SampleManager/h5Sample/add',
  1050. // name: '提交需求',
  1051. // hideInMenu: true,
  1052. // component: './h5SampleManager/h5Sample/add',
  1053. // },
  1054. // {
  1055. // path: '/h5SampleManager/h5Sample/addH5',
  1056. // name: '创建H5活动',
  1057. // hideInMenu: true,
  1058. // component: './h5SampleManager/h5Sample/addH5',
  1059. // },
  1060. // {
  1061. // path: '/h5SampleManager/h5Demand/list',
  1062. // name: 'H5需求单',
  1063. // component: './h5SampleManager/h5Demand/list',
  1064. // },
  1065. // // {
  1066. // // path: '/drainageSampleManager/drainageDemand/add',
  1067. // // name: '新增需求单',
  1068. // // component: './drainageSampleManager/drainageDemand/add',
  1069. // // },
  1070. // {
  1071. // path: '/h5SampleManager/h5Demand/detail',
  1072. // name: '详情',
  1073. // hideInMenu: true,
  1074. // component: './h5SampleManager/h5Demand/detail',
  1075. // },
  1076. // {
  1077. // path: '/h5SampleManager/h5Demand/edit',
  1078. // name: '修改需求',
  1079. // hideInMenu: true,
  1080. // component: './h5SampleManager/h5Demand/edit',
  1081. // },
  1082. // ],
  1083. // },
  1084. // {
  1085. // path: '/eContract',
  1086. // name: '电子合同',
  1087. // component: '../layouts/BlankLayout',
  1088. // routes: [
  1089. // {
  1090. // path: '/eContract/template/list',
  1091. // name: '合同模板',
  1092. // component: './eContract/template/list',
  1093. // },
  1094. // {
  1095. // path: '/eContract/businessConfig/list',
  1096. // name: '业务配置',
  1097. // component: './eContract/businessConfig/list',
  1098. // },
  1099. // {
  1100. // path: '/eContract/businessConfig/add',
  1101. // name: '新增业务配置',
  1102. // hideInMenu: true,
  1103. // component: './eContract/businessConfig/add',
  1104. // },
  1105. // {
  1106. // path: '/eContract/businessConfig/detail',
  1107. // name: '业务配置详情',
  1108. // hideInMenu: true,
  1109. // component: './eContract/businessConfig/detail',
  1110. // },
  1111. // {
  1112. // path: '/eContract/manage/list',
  1113. // name: '合同管理',
  1114. // component: './eContract/manage/list',
  1115. // },
  1116. // {
  1117. // path: '/eContract/manage/edit',
  1118. // name: '查看详情',
  1119. // hideInMenu: true,
  1120. // component: './eContract/manage/edit',
  1121. // },
  1122. // {
  1123. // path: '/eContract/template/add',
  1124. // name: '新增合同模板',
  1125. // hideInMenu: true,
  1126. // component: './eContract/template/add',
  1127. // },
  1128. // {
  1129. // path: '/eContract/template/detail',
  1130. // name: '合同模板详情',
  1131. // hideInMenu: true,
  1132. // component: './eContract/template/detail',
  1133. // }
  1134. // ],
  1135. // },
  1136. // {
  1137. // path: '/qrcode',
  1138. // name: '二维码管理',
  1139. // component: '../layouts/BlankLayout',
  1140. // routes: [
  1141. // {
  1142. // path: '/qrcode/qrcodelist',
  1143. // name: '二维码列表',
  1144. // component: './qrcode/qrcodelist/index',
  1145. // },
  1146. // {
  1147. // path: '/qrcode/qrcodelist/add',
  1148. // name: '新增',
  1149. // hideInMenu: true,
  1150. // component: './qrcode/qrcodelist/add',
  1151. // },
  1152. // {
  1153. // path: '/qrcode/qrcodelist/dataRecord',
  1154. // name: '数据记录',
  1155. // hideInMenu: true,
  1156. // component: './qrcode/qrcodelist/dataRecord',
  1157. // },
  1158. // ],
  1159. // },
  1160. // {
  1161. // path: '/funds',
  1162. // name: '资金管理',
  1163. // component: '../layouts/BlankLayout',
  1164. // routes: [
  1165. // {
  1166. // path: '/funds/accountfunds',
  1167. // name: '账户资金',
  1168. // component: './funds/accountfunds/index',
  1169. // },
  1170. // // {
  1171. // // path: '/fund/qrcodelist/add',
  1172. // // name: '新增',
  1173. // // hideInMenu: true,
  1174. // // component: './fund/qrcodelist/add',
  1175. // // },
  1176. // {
  1177. // path: '/funds/financialContact',
  1178. // name: '财务联系人',
  1179. // component: './funds/financialContact/index',
  1180. // },
  1181. // ],
  1182. // },
  1183. // {
  1184. // path: '/miniapp',
  1185. // name: '小程序管理',
  1186. // component: '../layouts/BlankLayout',
  1187. // routes: [
  1188. // {
  1189. // path: '/miniapp/menuList',
  1190. // name: '首页菜单管理',
  1191. // component: './miniapp/menuList',
  1192. // },
  1193. // {
  1194. // path: '/miniapp/editIcons',
  1195. // name: '首页菜单编辑',
  1196. // hideInMenu: true,
  1197. // component: './miniapp/editIcons',
  1198. // },
  1199. // ],
  1200. // },
  1201. {
  1202. name: '403',
  1203. path: '/403',
  1204. component: './403',
  1205. hideInMenu: true,
  1206. },
  1207. {
  1208. component: './404',
  1209. },
  1210. ],
  1211. },
  1212. {
  1213. component: './404',
  1214. },
  1215. ],
  1216. },
  1217. {
  1218. component: './404',
  1219. },
  1220. ];