routes.js 28KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856
  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. authority: ['admin', 'user'],
  21. routes: [
  22. {
  23. path: '/',
  24. redirect: '/welcome',
  25. },
  26. {
  27. path: '/welcome',
  28. name: 'welcome',
  29. icon: 'smile',
  30. component: './Welcome',
  31. },
  32. {
  33. path: '/admin',
  34. name: 'admin',
  35. icon: 'crown',
  36. component: './Admin',
  37. authority: ['admin'],
  38. routes: [
  39. {
  40. path: '/admin/sub-page',
  41. name: 'sub-page',
  42. icon: 'smile',
  43. component: './Welcome',
  44. authority: ['admin'],
  45. },
  46. ],
  47. },
  48. {
  49. path: '/building',
  50. name: '项目管理',
  51. icon: 'control',
  52. component: '../layouts/BlankLayout',
  53. routes: [
  54. {
  55. path: '/building/list',
  56. name: '项目列表',
  57. component: './building/List',
  58. },
  59. {
  60. path: '/building/add',
  61. name: '项目维护',
  62. component: './building/Edit',
  63. hideInMenu: true,
  64. },
  65. {
  66. path: '/building/type',
  67. name: '项目类型',
  68. component: './building/type/index',
  69. },
  70. {
  71. path: '/building/type/edi',
  72. name: '项目类型编辑',
  73. hideInMenu: true,
  74. component: './building/type/edi',
  75. },
  76. {
  77. path: '/building/Developers',
  78. name: '品牌开发商',
  79. component: './building/Developers',
  80. },
  81. {
  82. path: '/building/Developers/Edit',
  83. name: '品牌开发商编辑',
  84. hideInMenu: true,
  85. component: './building/Developers/Edit',
  86. },
  87. ],
  88. },
  89. {
  90. path: '/customer',
  91. name: '客户管理',
  92. component: '../layouts/BlankLayout',
  93. routes: [
  94. {
  95. path: '/customer/customer/list',
  96. name: '客户列表',
  97. component: './customer/Customer/index',
  98. },
  99. {
  100. path: '/customer/customerlist/privateCustomerDetail',
  101. name: '私客详情',
  102. hideInMenu: true,
  103. component: './customer/Customer/PrivateCustomer/CustomerDetail',
  104. },
  105. // {
  106. // path: '/customer/customerlist/list',
  107. // name: '客户列表old',
  108. // component: './customer/customerlist/index copy.jsx',
  109. // },
  110. {
  111. path: '/customer/customerlist/customerDetail',
  112. name: '私客详情',
  113. hideInMenu: true,
  114. component: './customer/customerlist/customerDetail',
  115. },
  116. {
  117. path: '/customer/drift/list',
  118. name: '游客列表',
  119. component: './customer/drift/index',
  120. },
  121. {
  122. path: '/customer/customerlist/publicCustomerDetail',
  123. name: '公客详情',
  124. hideInMenu: true,
  125. component: './customer/customerlist/publicCustomerDetail',
  126. },
  127. {
  128. path: '/customer/recommend/list',
  129. name: '推荐记录',
  130. component: './customer/Recommend',
  131. },
  132. {
  133. path: '/customer/recommend/audit',
  134. name: '客户审核',
  135. hideInMenu: true,
  136. component: './customer/Recommend/audit',
  137. },
  138. ],
  139. },
  140. {
  141. path: '/staff',
  142. name: '员工管理',
  143. component: '../layouts/BlankLayout',
  144. routes: [
  145. {
  146. path: '/staff/Staff/List',
  147. name: '员工列表',
  148. component: './staff/Staff/List',
  149. },
  150. {
  151. path: '/staff/Staff/Edit',
  152. name: '编辑员工',
  153. hideInMenu: true,
  154. component: './staff/Staff/Edit',
  155. },
  156. {
  157. path: '/staff/Role/List',
  158. name: '角色管理',
  159. component: './staff/Role/List',
  160. },
  161. {
  162. path: '/staff/Role/Edit',
  163. name: '编辑角色',
  164. hideInMenu: true,
  165. component: './staff/Role/Edit',
  166. },
  167. {
  168. path: '/staff/Organization/List',
  169. name: '组织架构',
  170. component: './staff/Organization',
  171. },
  172. // {
  173. // path: '/staff/list/distribution',
  174. // name: '分配归属',
  175. // hideInMenu: true,
  176. // component: './staff/list/distribution',
  177. // },
  178. ],
  179. },
  180. {
  181. path: '/Live',
  182. name: '视频直播',
  183. component: '../layouts/BlankLayout',
  184. routes: [
  185. {
  186. path: '/Live/LiveActivity/List',
  187. name: '直播活动',
  188. component: './Live/LiveActivity/List',
  189. },
  190. {
  191. path: '/Live/LiveActivity/Edit',
  192. name: '直播活动',
  193. hideInMenu: true,
  194. component: './Live/LiveActivity/Edit',
  195. },
  196. // {
  197. // path: '/staff/Staff/Edit',
  198. // name: '编辑员工',
  199. // hideInMenu: true,
  200. // component: './staff/Staff/Edit',
  201. // },
  202. // {
  203. // path: '/staff/Role/List',
  204. // name: '角色管理',
  205. // component: './staff/Role/List',
  206. // },
  207. // {
  208. // path: '/staff/Role/Edit',
  209. // name: '编辑角色',
  210. // hideInMenu: true,
  211. // component: './staff/Role/Edit',
  212. // },
  213. // {
  214. // path: '/staff/Organization/List',
  215. // name: '组织架构',
  216. // component: './staff/Organization',
  217. // },
  218. // {
  219. // path: '/staff/list/distribution',
  220. // name: '分配归属',
  221. // hideInMenu: true,
  222. // component: './staff/list/distribution',
  223. // },
  224. ],
  225. },
  226. {
  227. path: '/activity',
  228. name: '活动管理',
  229. component: '../layouts/BlankLayout',
  230. routes: [
  231. {
  232. path: '/activity/ActivityList',
  233. name: '报名活动',
  234. component: './activity/ActivityList',
  235. },
  236. {
  237. path: '/activity/editActivity',
  238. name: '编辑活动',
  239. hideInMenu: true,
  240. component: './activity/editActivity',
  241. },
  242. {
  243. path: '/activity/detailActivity',
  244. name: '活动详情',
  245. hideInMenu: true,
  246. component: './activity/detailActivity',
  247. },
  248. {
  249. path: '/activity/SignList',
  250. name: '报名列表',
  251. hideInMenu: true,
  252. component: './activity/SignList',
  253. },
  254. {
  255. path: '/activity/activityRecord',
  256. name: '数据记录',
  257. hideInMenu: true,
  258. component: './activity/activityRecord',
  259. },
  260. {
  261. path: '/activity/helpActivity/list',
  262. name: '助力活动',
  263. component: './activity/helpActivity/list',
  264. },
  265. {
  266. path: '/activity/helpActivity/helpRecord',
  267. name: '助力记录',
  268. hideInMenu: true,
  269. component: './activity/helpActivity/helpRecord',
  270. },
  271. {
  272. path: '/activity/helpActivity/edithelpActivity',
  273. name: '编辑',
  274. hideInMenu: true,
  275. component: './activity/helpActivity/edithelpActivity',
  276. },
  277. {
  278. path: '/activity/helpActivity/signList',
  279. name: '助力记录',
  280. hideInMenu: true,
  281. component: './activity/helpActivity/signList',
  282. },
  283. {
  284. path: '/activity/helpActivity/helpActivityRecord',
  285. name: '数据记录',
  286. hideInMenu: true,
  287. component: './activity/helpActivity/helpActivityRecord',
  288. },
  289. {
  290. path: '/activity/groupActivity/list',
  291. name: '拼团活动',
  292. component: './activity/groupActivity/list',
  293. },
  294. {
  295. path: '/activity/groupActivity/helpRecord',
  296. name: '拼团记录',
  297. hideInMenu: true,
  298. component: './activity/groupActivity/helpRecord',
  299. },
  300. {
  301. path: '/activity/groupActivity/editgroupActivity',
  302. name: '新增',
  303. hideInMenu: true,
  304. component: './activity/groupActivity/editgroupActivity',
  305. },
  306. {
  307. path: '/activity/groupActivity/detailActivity',
  308. name: '活动详情',
  309. hideInMenu: true,
  310. component: './activity/groupActivity/detailActivity',
  311. },
  312. {
  313. path: '/activity/groupActivity/groupActivityRecord',
  314. name: '数据记录',
  315. hideInMenu: true,
  316. component: './activity/groupActivity/groupActivityRecord',
  317. },
  318. {
  319. path: '/activity/drainage/DrainageList',
  320. name: 'H5活动',
  321. component: './activity/drainage/DrainageList',
  322. },
  323. {
  324. path: '/activity/drainage/Detail',
  325. name: '查看详情',
  326. hideInMenu: true,
  327. component: './activity/drainage/Detail',
  328. },
  329. {
  330. path: '/activity/drainage/DetailDrainage',
  331. name: 'H5详情',
  332. hideInMenu: true,
  333. component: './activity/drainage/DetailDrainage',
  334. },
  335. {
  336. path: '/activity/drainage/h5edit',
  337. name: 'H5详情',
  338. hideInMenu: true,
  339. component: './activity/drainage/h5edit',
  340. },
  341. {
  342. path: '/activity/helpActivity/detailActivity',
  343. name: '活动详情',
  344. hideInMenu: true,
  345. component: './activity/helpActivity/detailActivity',
  346. },
  347. {
  348. path: '/activity/drainage/drainageRecord',
  349. name: '数据记录',
  350. hideInMenu: true,
  351. component: './activity/drainage/drainageRecord',
  352. },
  353. {
  354. path: '/activity/liveActivity/list/index',
  355. name: '直播活动',
  356. component: './activity/liveActivity/list/index',
  357. },
  358. {
  359. path: '/activity/liveActivity/add',
  360. name: '新增',
  361. hideInMenu: true,
  362. component: './activity/liveActivity/add',
  363. },
  364. {
  365. path: '/activity/liveActivity/edit',
  366. name: '编辑',
  367. hideInMenu: true,
  368. component: './activity/liveActivity/edit',
  369. },
  370. {
  371. path: '/activity/liveActivity/liveActivityRecord',
  372. name: '数据记录',
  373. hideInMenu: true,
  374. component: './activity/liveActivity/list/liveActivityRecord',
  375. },
  376. ],
  377. },
  378. {
  379. path: '/news',
  380. name: '资讯管理',
  381. component: '../layouts/BlankLayout',
  382. routes: [
  383. {
  384. path: '/news/type/NewsType',
  385. name: '资讯类型',
  386. component: './news/type/NewsType',
  387. },
  388. {
  389. path: '/news/type/editNews',
  390. name: '编辑资讯类型',
  391. hideInMenu: true,
  392. component: './news/type/editNews',
  393. },
  394. {
  395. path: '/news/list/List',
  396. name: '资讯列表',
  397. component: './news/list/List',
  398. },
  399. {
  400. path: '/news/list/Edit',
  401. name: '编辑资讯',
  402. hideInMenu: true,
  403. component: './news/list/Edit',
  404. },
  405. // {
  406. // path: '/news/list/NewsList',
  407. // name: '资讯列表',
  408. // component: './news/list/NewsList',
  409. // },
  410. // {
  411. // path: '/news/list/editNewsList',
  412. // name: '编辑资讯',
  413. // hideInMenu: true,
  414. // component: './news/list/editNewsList',
  415. // },
  416. ],
  417. },
  418. {
  419. path: '/channel',
  420. name: '渠道管理',
  421. component: '../layouts/BlankLayout',
  422. routes: [
  423. {
  424. path: '/channel/Channel/List',
  425. name: '渠道管理',
  426. component: './channel/Channel/List',
  427. },
  428. {
  429. path: '/channel/Channel/Edit',
  430. name: '编辑渠道',
  431. hideInMenu: true,
  432. component: './channel/Channel/Edit',
  433. },
  434. {
  435. path: '/channel/Agent/List',
  436. name: '经纪人',
  437. hideInMenu: true,
  438. component: './channel/Agent/List',
  439. },
  440. // {
  441. // path: '/channel/channelList',
  442. // name: '渠道管理',
  443. // component: './channel/channelList',
  444. // },
  445. {
  446. path: '/channel/addChannel',
  447. name: '添加渠道',
  448. hideInMenu: true,
  449. component: './channel/addChannel',
  450. },
  451. {
  452. path: '/channel/editChannel',
  453. name: '编辑渠道',
  454. hideInMenu: true,
  455. component: './channel/editChannel',
  456. },
  457. {
  458. path: '/channel/brokerList',
  459. name: '经纪人',
  460. hideInMenu: true,
  461. component: './channel/brokerList',
  462. },
  463. {
  464. path: '/channel/recommendClients',
  465. name: '渠道推荐',
  466. hideInMenu: true,
  467. component: './channel/recommendClients',
  468. },
  469. {
  470. path: '/channel/InviteClients',
  471. name: '邀请经纪人',
  472. hideInMenu: true,
  473. component: './channel/InviteClients',
  474. },
  475. {
  476. path: '/channel/independentList',
  477. name: '专业经纪人',
  478. component: './channel/independentList/index',
  479. },
  480. {
  481. path: '/channel/newCustomer',
  482. name: '引进注册用户',
  483. hideInMenu: true,
  484. component: './channel/newCustomer',
  485. },
  486. {
  487. path: '/channel/newCustomer/dataRecord',
  488. name: '注册用户',
  489. hideInMenu: true,
  490. component: './channel/newCustomer/dataRecord',
  491. },
  492. {
  493. path: '/channel/newCustomer/visitNum',
  494. name: '访问次数',
  495. hideInMenu: true,
  496. component: './channel/newCustomer/visitNum',
  497. },
  498. {
  499. path: '/channel/newCustomer/personNum',
  500. name: '访问人数',
  501. hideInMenu: true,
  502. component: './channel/newCustomer/personNum',
  503. },
  504. ],
  505. },
  506. {
  507. //帮我找房页面+
  508. path: '/home',
  509. name: '帮我找房',
  510. component: '../layouts/BlankLayout',
  511. routes: [
  512. {
  513. path: '/home/recommend/home',
  514. name: '找房需求',
  515. component: './home/recommend/index',
  516. },
  517. {
  518. path: '/home/recommend/audit',
  519. name: '回访确认',
  520. hideInMenu: true,
  521. component: './home/Recommend/audit',
  522. },
  523. {
  524. path: '/home/recommend/auditcopy',
  525. name: '回访确认',
  526. hideInMenu: true,
  527. component: './home/Recommend/auditCopy',
  528. },
  529. ],
  530. },
  531. {
  532. //我的课堂+
  533. path: '/course',
  534. name: '我的课堂',
  535. component: '../layouts/BlankLayout',
  536. routes: [
  537. {
  538. path: '/course/List',
  539. name: '课程管理',
  540. component: './course/List',
  541. },
  542. {
  543. path: '/course/Edit',
  544. name: '课程编辑',
  545. hideInMenu: true,
  546. component: './course/Edit',
  547. },
  548. ],
  549. },
  550. {
  551. path: '/carouselFigure',
  552. name: '资源位管理',
  553. component: '../layouts/BlankLayout',
  554. routes: [
  555. {
  556. path: '/carouselFigure/carouselFigureList',
  557. name: '轮播图',
  558. component: './carouselFigure/carouselFigureList',
  559. },
  560. {
  561. path: '/carouselFigure/editCarousel',
  562. name: '轮播图编辑',
  563. hideInMenu: true,
  564. component: './carouselFigure/editCarousel',
  565. },
  566. {
  567. path: '/carouselFigure/advertisingList',
  568. name: '开屏广告',
  569. component: './carouselFigure/advertisingList',
  570. },
  571. {
  572. path: '/carouselFigure/editAdvertising',
  573. name: '开屏广告编辑',
  574. hideInMenu: true,
  575. component: './carouselFigure/editAdvertising',
  576. },
  577. {
  578. path: '/carouselFigure/propagandaList',
  579. name: '宣传位',
  580. component: './carouselFigure/propagandaList',
  581. },
  582. {
  583. path: '/carouselFigure/propaganda',
  584. name: '宣传位编辑',
  585. hideInMenu: true,
  586. component: './carouselFigure/propaganda',
  587. },
  588. {
  589. path: '/carouselFigure/customImg/list',
  590. name: '其他',
  591. component: './carouselFigure/customImg/list',
  592. },
  593. {
  594. path: '/carouselFigure/customImg/edit',
  595. name: '其他编辑',
  596. hideInMenu: true,
  597. component: './carouselFigure/customImg/edit',
  598. },
  599. ],
  600. },
  601. {
  602. path: '/system',
  603. name: '系统管理',
  604. component: '../layouts/BlankLayout',
  605. routes: [
  606. {
  607. path: '/system/messageList',
  608. name: '客户留言',
  609. component: './system/messageList',
  610. },
  611. {
  612. path: '/system/report',
  613. name: '报表数据',
  614. component: './system/report',
  615. },
  616. {
  617. path: '/system/intention',
  618. name: '意向值',
  619. component: './system/intention',
  620. },
  621. //+购房百科
  622. {
  623. path: '/system/Sellhouse/index',
  624. name: '购房百科',
  625. component: './system/Sellhouse/index',
  626. },
  627. {
  628. path: '/system/houseTypes/index',
  629. name: '购房百科类型',
  630. component: './system/Sellhouse/houseTypes/index',
  631. },
  632. {
  633. path: '/system/Sellhouse/Edit',
  634. name: '新增/编辑购房百科',
  635. hideInMenu: true,
  636. component: './system/Sellhouse/Edit',
  637. },
  638. {
  639. path: '/system/Sellhouse/houseTypes/Newindex',
  640. name: '新增',
  641. hideInMenu: true,
  642. component: './system/Sellhouse/houseTypes/Newindex',
  643. },
  644. {
  645. path: '/system/housingPolicy/list',
  646. name: '购房百科',
  647. component: './system/housingPolicy/List',
  648. },
  649. {
  650. path: '/system/housingPolicy/edit',
  651. name: '购房百科编辑',
  652. hideInMenu: true,
  653. component: './system/housingPolicy/Edit',
  654. },
  655. // {
  656. // path: '/system/editPolicy',
  657. // name: '购房政策编辑',
  658. // hideInMenu: true,
  659. // component: './system/editPolicy',
  660. // },
  661. // {
  662. // path: '/system/document/list',
  663. // name: '客户资料',
  664. // component: './system/document/list',
  665. // },
  666. // {
  667. // path: '/system/document/audit',
  668. // name: '客户资料审核',
  669. // hideInMenu: true,
  670. // component: './system/document/audit',
  671. // },
  672. // {
  673. // path: '/system/MiniappTheme',
  674. // name: '小程序主题',
  675. // component: './system/MiniappTheme',
  676. // },
  677. // {
  678. // path: '/system/MiniappTheme/Detail',
  679. // name: '小程序主题编辑',
  680. // component: './system/MiniappTheme/Detail',
  681. // hideInMenu: true,
  682. // },
  683. ],
  684. },
  685. {
  686. path: '/statistical',
  687. name: '数据统计',
  688. component: '../layouts/BlankLayout',
  689. routes: [
  690. {
  691. path: '/statistical',
  692. redirect: '/statistical/monitor',
  693. },
  694. // {
  695. // path: '/statistical/monitor',
  696. // name: '数据报表',
  697. // component: './Monitor',
  698. // },
  699. {
  700. path: '/statistical/activity',
  701. name: '活动统计',
  702. component: './statistical/activity',
  703. },
  704. {
  705. path: '/statistical/activity/detail',
  706. name: '查看详情',
  707. hideInMenu: true,
  708. component: './statistical/activity/detail',
  709. },
  710. {
  711. path: '/statistical/activity/sharePersonNum',
  712. name: '分享统计',
  713. hideInMenu: true,
  714. component: './statistical/activity/sharePersonNum',
  715. },
  716. {
  717. path: '/statistical/activity/shareNum',
  718. name: '分享统计',
  719. hideInMenu: true,
  720. component: './statistical/activity/shareNum',
  721. },
  722. {
  723. path: '/statistical/activity/addRegistNum',
  724. name: '分享统计',
  725. hideInMenu: true,
  726. component: './statistical/activity/addRegistNum',
  727. },
  728. {
  729. path: '/statistical/activity/visitNum',
  730. name: '访问统计',
  731. hideInMenu: true,
  732. component: './statistical/activity/visitNum',
  733. },
  734. {
  735. path: '/statistical/activity/visitPersonNum',
  736. name: '访问统计',
  737. hideInMenu: true,
  738. component: './statistical/activity/visitPersonNum',
  739. },
  740. {
  741. path: '/statistical/building',
  742. name: '项目统计',
  743. component: './statistical/building',
  744. },
  745. {
  746. path: '/statistical/consultant',
  747. name: '置业顾问KPI',
  748. component: './statistical/consultant',
  749. },
  750. {
  751. path: '/statistical/userSource',
  752. name: '用户来源',
  753. component: './indexEcharts/userSource',
  754. hideInMenu: true,
  755. },
  756. {
  757. path: '/statistical/newUsers',
  758. name: '新增用户',
  759. component: './indexEcharts/newUsers',
  760. hideInMenu: true,
  761. },
  762. {
  763. path: '/statistical/userBehavior',
  764. name: '用户行为',
  765. component: './indexEcharts/userBehavior',
  766. hideInMenu: true,
  767. },
  768. {
  769. path: '/statistical/building/detail',
  770. name: '项目统计详情',
  771. component: './statistical/building/detail',
  772. hideInMenu: true,
  773. },
  774. {
  775. path: '/statistical/consultant/table',
  776. name: '客户总计',
  777. hideInMenu: true,
  778. component: './statistical/consultant/table',
  779. },
  780. {
  781. path: '/statistical/consultant/newPersons',
  782. name: '新增客户',
  783. hideInMenu: true,
  784. component: './statistical/consultant/table',
  785. },
  786. {
  787. path: '/statistical/consultant/sharetable',
  788. name: '分享次数',
  789. hideInMenu: true,
  790. component: './statistical/consultant/sharetable',
  791. },
  792. {
  793. path: '/statistical/consultant/visitPersons',
  794. name: '分享访问人数',
  795. hideInMenu: true,
  796. component: './statistical/consultant/visitPersons',
  797. },
  798. {
  799. path: '/statistical/consultant/visitNum',
  800. name: '分享访问次数',
  801. hideInMenu: true,
  802. component: './statistical/consultant/visitNum',
  803. },
  804. {
  805. path: '/statistical/consultant/sharePersons',
  806. name: '分享拓客',
  807. hideInMenu: true,
  808. component: './statistical/consultant/table',
  809. },
  810. {
  811. path: '/statistical/consultant/homePagePersons',
  812. name: '主页访问人数',
  813. hideInMenu: true,
  814. component: './statistical/consultant/homePagePersons',
  815. },
  816. {
  817. path: '/statistical/consultant/homepageNum',
  818. name: '主页访问次数',
  819. hideInMenu: true,
  820. component: './statistical/consultant/table',
  821. },
  822. {
  823. path: '/statistical/consultant/chatPersons',
  824. name: '咨询数',
  825. hideInMenu: true,
  826. component: './statistical/consultant/table',
  827. },
  828. {
  829. path: '/statistical/consultant/favorNum',
  830. name: '点赞数',
  831. hideInMenu: true,
  832. component: './statistical/consultant/table',
  833. },
  834. ],
  835. },
  836. {
  837. component: './404',
  838. },
  839. ],
  840. },
  841. {
  842. component: './404',
  843. },
  844. ],
  845. },
  846. {
  847. component: './404',
  848. },
  849. ];