123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870
  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/SignupActivity',
  233. name: '报名活动',
  234. component: './activity/SignupActivity',
  235. },
  236. {
  237. path: '/activity/SignupActivity/detail',
  238. name: '活动详情',
  239. hideInMenu: true,
  240. component: './activity/SignupActivity/detail',
  241. },
  242. // /activity/SignupActivity/detail
  243. {
  244. path: '/activity/Activity',
  245. name: '报名活动(old)',
  246. component: './activity/Activity',
  247. },
  248. {
  249. path: '/activity/editActivity',
  250. name: '编辑活动',
  251. hideInMenu: true,
  252. component: './activity/editActivity',
  253. },
  254. {
  255. path: '/activity/detailActivity',
  256. name: '活动详情',
  257. hideInMenu: true,
  258. component: './activity/detailActivity',
  259. },
  260. {
  261. path: '/activity/SignList',
  262. name: '报名列表',
  263. hideInMenu: true,
  264. component: './activity/SignList',
  265. },
  266. {
  267. path: '/activity/activityRecord',
  268. name: '数据记录',
  269. hideInMenu: true,
  270. component: './activity/activityRecord',
  271. },
  272. {
  273. path: '/activity/helpActivity/list',
  274. name: '助力活动',
  275. component: './activity/helpActivity/list',
  276. },
  277. {
  278. path: '/activity/helpActivity/helpRecord',
  279. name: '助力记录',
  280. hideInMenu: true,
  281. component: './activity/helpActivity/helpRecord',
  282. },
  283. {
  284. path: '/activity/helpActivity/edithelpActivity',
  285. name: '编辑',
  286. hideInMenu: true,
  287. component: './activity/helpActivity/edithelpActivity',
  288. },
  289. {
  290. path: '/activity/helpActivity/signList',
  291. name: '助力记录',
  292. hideInMenu: true,
  293. component: './activity/helpActivity/signList',
  294. },
  295. {
  296. path: '/activity/helpActivity/helpActivityRecord',
  297. name: '数据记录',
  298. hideInMenu: true,
  299. component: './activity/helpActivity/helpActivityRecord',
  300. },
  301. {
  302. path: '/activity/groupActivity/list',
  303. name: '拼团活动',
  304. component: './activity/groupActivity/list',
  305. },
  306. {
  307. path: '/activity/groupActivity/helpRecord',
  308. name: '拼团记录',
  309. hideInMenu: true,
  310. component: './activity/groupActivity/helpRecord',
  311. },
  312. {
  313. path: '/activity/groupActivity/editgroupActivity',
  314. name: '新增',
  315. hideInMenu: true,
  316. component: './activity/groupActivity/editgroupActivity',
  317. },
  318. {
  319. path: '/activity/groupActivity/detailActivity',
  320. name: '活动详情',
  321. hideInMenu: true,
  322. component: './activity/groupActivity/detailActivity',
  323. },
  324. {
  325. path: '/activity/groupActivity/groupActivityRecord',
  326. name: '数据记录',
  327. hideInMenu: true,
  328. component: './activity/groupActivity/groupActivityRecord',
  329. },
  330. {
  331. path: '/activity/drainage/DrainageList',
  332. name: 'H5活动',
  333. component: './activity/drainage/DrainageList',
  334. },
  335. {
  336. path: '/activity/drainage/Detail',
  337. name: '查看详情',
  338. hideInMenu: true,
  339. component: './activity/drainage/Detail',
  340. },
  341. {
  342. path: '/activity/drainage/DetailDrainage',
  343. name: 'H5详情',
  344. hideInMenu: true,
  345. component: './activity/drainage/DetailDrainage',
  346. },
  347. {
  348. path: '/activity/drainage/h5edit',
  349. name: 'H5详情',
  350. hideInMenu: true,
  351. component: './activity/drainage/h5edit',
  352. },
  353. {
  354. path: '/activity/helpActivity/detailActivity',
  355. name: '活动详情',
  356. hideInMenu: true,
  357. component: './activity/helpActivity/detailActivity',
  358. },
  359. {
  360. path: '/activity/drainage/drainageRecord',
  361. name: '数据记录',
  362. hideInMenu: true,
  363. component: './activity/drainage/drainageRecord',
  364. },
  365. {
  366. path: '/activity/liveActivity/list/index',
  367. name: '直播活动',
  368. component: './activity/liveActivity/list/index',
  369. },
  370. {
  371. path: '/activity/liveActivity/add',
  372. name: '新增',
  373. hideInMenu: true,
  374. component: './activity/liveActivity/add',
  375. },
  376. {
  377. path: '/activity/liveActivity/edit',
  378. name: '编辑',
  379. hideInMenu: true,
  380. component: './activity/liveActivity/edit',
  381. },
  382. {
  383. path: '/activity/liveActivity/liveActivityRecord',
  384. name: '数据记录',
  385. hideInMenu: true,
  386. component: './activity/liveActivity/list/liveActivityRecord',
  387. },
  388. ],
  389. },
  390. {
  391. path: '/news',
  392. name: '资讯管理',
  393. component: '../layouts/BlankLayout',
  394. routes: [
  395. {
  396. path: '/news/type/NewsType',
  397. name: '资讯类型',
  398. component: './news/type/NewsType',
  399. },
  400. {
  401. path: '/news/type/editNews',
  402. name: '编辑资讯类型',
  403. hideInMenu: true,
  404. component: './news/type/editNews',
  405. },
  406. {
  407. path: '/news/list/List',
  408. name: '资讯列表',
  409. component: './news/list/List',
  410. },
  411. {
  412. path: '/news/list/Edit',
  413. name: '编辑资讯',
  414. hideInMenu: true,
  415. component: './news/list/Edit',
  416. },
  417. // {
  418. // path: '/news/list/NewsList',
  419. // name: '资讯列表',
  420. // component: './news/list/NewsList',
  421. // },
  422. // {
  423. // path: '/news/list/editNewsList',
  424. // name: '编辑资讯',
  425. // hideInMenu: true,
  426. // component: './news/list/editNewsList',
  427. // },
  428. ],
  429. },
  430. {
  431. path: '/channel',
  432. name: '渠道管理',
  433. component: '../layouts/BlankLayout',
  434. routes: [
  435. {
  436. path: '/channel/Channel/List',
  437. name: '渠道管理',
  438. component: './channel/Channel/List',
  439. },
  440. {
  441. path: '/channel/Channel/Edit',
  442. name: '编辑渠道',
  443. hideInMenu: true,
  444. component: './channel/Channel/Edit',
  445. },
  446. {
  447. path: '/channel/Agent/List',
  448. name: '经纪人',
  449. hideInMenu: true,
  450. component: './channel/Agent/List',
  451. },
  452. // {
  453. // path: '/channel/channelList',
  454. // name: '渠道管理',
  455. // component: './channel/channelList',
  456. // },
  457. {
  458. path: '/channel/addChannel',
  459. name: '添加渠道',
  460. hideInMenu: true,
  461. component: './channel/addChannel',
  462. },
  463. {
  464. path: '/channel/editChannel',
  465. name: '编辑渠道',
  466. hideInMenu: true,
  467. component: './channel/editChannel',
  468. },
  469. {
  470. path: '/channel/brokerList',
  471. name: '经纪人',
  472. hideInMenu: true,
  473. component: './channel/brokerList',
  474. },
  475. {
  476. path: '/channel/recommendClients',
  477. name: '渠道推荐',
  478. hideInMenu: true,
  479. component: './channel/recommendClients',
  480. },
  481. {
  482. path: '/channel/InviteClients',
  483. name: '邀请经纪人',
  484. hideInMenu: true,
  485. component: './channel/InviteClients',
  486. },
  487. {
  488. path: '/channel/independentList',
  489. name: '专业经纪人',
  490. component: './channel/independentList/index',
  491. },
  492. {
  493. path: '/channel/newCustomer',
  494. name: '引进注册用户',
  495. hideInMenu: true,
  496. component: './channel/newCustomer',
  497. },
  498. {
  499. path: '/channel/newCustomer/dataRecord',
  500. name: '注册用户',
  501. hideInMenu: true,
  502. component: './channel/newCustomer/dataRecord',
  503. },
  504. {
  505. path: '/channel/newCustomer/visitNum',
  506. name: '访问次数',
  507. hideInMenu: true,
  508. component: './channel/newCustomer/visitNum',
  509. },
  510. {
  511. path: '/channel/newCustomer/personNum',
  512. name: '访问人数',
  513. hideInMenu: true,
  514. component: './channel/newCustomer/personNum',
  515. },
  516. ],
  517. },
  518. {
  519. //帮我找房页面+
  520. path: '/home',
  521. name: '帮我找房',
  522. component: '../layouts/BlankLayout',
  523. routes: [
  524. {
  525. path: '/home/recommend/home',
  526. name: '找房需求',
  527. component: './home/recommend/index',
  528. },
  529. {
  530. path: '/home/recommend/audit',
  531. name: '回访确认',
  532. hideInMenu: true,
  533. component: './home/Recommend/audit',
  534. },
  535. {
  536. path: '/home/recommend/auditcopy',
  537. name: '回访确认',
  538. hideInMenu: true,
  539. component: './home/Recommend/auditCopy',
  540. },
  541. ],
  542. },
  543. {
  544. //我的课堂+
  545. path: '/course',
  546. name: '我的课堂',
  547. component: '../layouts/BlankLayout',
  548. routes: [
  549. {
  550. path: '/course/List',
  551. name: '课程管理',
  552. component: './course/List',
  553. },
  554. {
  555. path: '/course/Edit',
  556. name: '课程编辑',
  557. hideInMenu: true,
  558. component: './course/Edit',
  559. },
  560. ],
  561. },
  562. {
  563. path: '/carouselFigure',
  564. name: '资源位管理',
  565. component: '../layouts/BlankLayout',
  566. routes: [
  567. {
  568. path: '/carouselFigure/carouselFigureList',
  569. name: '轮播图',
  570. component: './carouselFigure/carouselFigureList',
  571. },
  572. {
  573. path: '/carouselFigure/editCarousel',
  574. name: '轮播图编辑',
  575. hideInMenu: true,
  576. component: './carouselFigure/editCarousel',
  577. },
  578. {
  579. path: '/carouselFigure/advertisingList',
  580. name: '开屏广告',
  581. component: './carouselFigure/advertisingList',
  582. },
  583. {
  584. path: '/carouselFigure/editAdvertising',
  585. name: '开屏广告编辑',
  586. hideInMenu: true,
  587. component: './carouselFigure/editAdvertising',
  588. },
  589. {
  590. path: '/carouselFigure/propagandaList',
  591. name: '宣传位',
  592. component: './carouselFigure/propagandaList',
  593. },
  594. {
  595. path: '/carouselFigure/propaganda',
  596. name: '宣传位编辑',
  597. hideInMenu: true,
  598. component: './carouselFigure/propaganda',
  599. },
  600. {
  601. path: '/carouselFigure/customImg/list',
  602. name: '其他',
  603. component: './carouselFigure/customImg/list',
  604. },
  605. {
  606. path: '/carouselFigure/customImg/edit',
  607. name: '其他编辑',
  608. hideInMenu: true,
  609. component: './carouselFigure/customImg/edit',
  610. },
  611. ],
  612. },
  613. {
  614. path: '/system',
  615. name: '系统管理',
  616. component: '../layouts/BlankLayout',
  617. routes: [
  618. {
  619. path: '/system/messageList',
  620. name: '客户留言',
  621. component: './system/messageList',
  622. },
  623. {
  624. path: '/system/report',
  625. name: '报表数据',
  626. component: './system/report',
  627. },
  628. {
  629. path: '/system/intention',
  630. name: '意向值',
  631. component: './system/intention',
  632. },
  633. //+购房百科
  634. {
  635. path: '/system/Sellhouse/index',
  636. name: '购房百科',
  637. component: './system/Sellhouse/index',
  638. },
  639. {
  640. path: '/system/houseTypes/index',
  641. name: '购房百科类型',
  642. component: './system/Sellhouse/houseTypes/index',
  643. },
  644. {
  645. path: '/system/Sellhouse/Edit',
  646. name: '新增/编辑购房百科',
  647. hideInMenu: true,
  648. component: './system/Sellhouse/Edit',
  649. },
  650. {
  651. path: '/system/Sellhouse/houseTypes/Newindex',
  652. name: '新增',
  653. hideInMenu: true,
  654. component: './system/Sellhouse/houseTypes/Newindex',
  655. },
  656. {
  657. path: '/system/housingPolicy/list',
  658. name: '购房百科',
  659. component: './system/housingPolicy/List',
  660. },
  661. {
  662. path: '/system/housingPolicy/edit',
  663. name: '购房百科编辑',
  664. hideInMenu: true,
  665. component: './system/housingPolicy/Edit',
  666. },
  667. // {
  668. // path: '/system/editPolicy',
  669. // name: '购房政策编辑',
  670. // hideInMenu: true,
  671. // component: './system/editPolicy',
  672. // },
  673. // {
  674. // path: '/system/document/list',
  675. // name: '客户资料',
  676. // component: './system/document/list',
  677. // },
  678. // {
  679. // path: '/system/document/audit',
  680. // name: '客户资料审核',
  681. // hideInMenu: true,
  682. // component: './system/document/audit',
  683. // },
  684. // {
  685. // path: '/system/MiniappTheme',
  686. // name: '小程序主题',
  687. // component: './system/MiniappTheme',
  688. // },
  689. // {
  690. // path: '/system/MiniappTheme/Detail',
  691. // name: '小程序主题编辑',
  692. // component: './system/MiniappTheme/Detail',
  693. // hideInMenu: true,
  694. // },
  695. ],
  696. },
  697. {
  698. path: '/statistical',
  699. name: '数据统计',
  700. component: '../layouts/BlankLayout',
  701. routes: [
  702. {
  703. path: '/statistical',
  704. redirect: '/statistical/monitor',
  705. },
  706. // {
  707. // path: '/statistical/monitor',
  708. // name: '数据报表',
  709. // component: './Monitor',
  710. // },
  711. {
  712. path: '/statistical/activity',
  713. name: '活动统计',
  714. component: './statistical/activity',
  715. },
  716. {
  717. path: '/statistical/activity/detail',
  718. name: '查看详情',
  719. hideInMenu: true,
  720. component: './statistical/activity/detail',
  721. },
  722. {
  723. path: '/statistical/activity/sharePersonNum',
  724. name: '分享统计',
  725. hideInMenu: true,
  726. component: './statistical/activity/sharePersonNum',
  727. },
  728. {
  729. path: '/statistical/activity/shareNum',
  730. name: '分享统计',
  731. hideInMenu: true,
  732. component: './statistical/activity/shareNum',
  733. },
  734. {
  735. path: '/statistical/activity/addRegistNum',
  736. name: '分享统计',
  737. hideInMenu: true,
  738. component: './statistical/activity/addRegistNum',
  739. },
  740. {
  741. path: '/statistical/activity/visitNum',
  742. name: '访问统计',
  743. hideInMenu: true,
  744. component: './statistical/activity/visitNum',
  745. },
  746. {
  747. path: '/statistical/activity/visitPersonNum',
  748. name: '访问统计',
  749. hideInMenu: true,
  750. component: './statistical/activity/visitPersonNum',
  751. },
  752. {
  753. path: '/statistical/building',
  754. name: '项目统计',
  755. component: './statistical/building',
  756. },
  757. {
  758. path: '/statistical/consultant',
  759. name: '置业顾问KPI',
  760. component: './statistical/consultant',
  761. },
  762. {
  763. path: '/statistical/userSource',
  764. name: '用户来源',
  765. component: './indexEcharts/userSource',
  766. hideInMenu: true,
  767. },
  768. {
  769. path: '/statistical/newUsers',
  770. name: '新增用户',
  771. component: './indexEcharts/newUsers',
  772. hideInMenu: true,
  773. },
  774. {
  775. path: '/statistical/userBehavior',
  776. name: '用户行为',
  777. component: './indexEcharts/userBehavior',
  778. hideInMenu: true,
  779. },
  780. {
  781. path: '/statistical/building/detail',
  782. name: '项目统计详情',
  783. component: './statistical/building/detail',
  784. hideInMenu: true,
  785. },
  786. {
  787. path: '/statistical/consultant/table',
  788. name: '客户总计',
  789. hideInMenu: true,
  790. component: './statistical/consultant/table',
  791. },
  792. {
  793. path: '/statistical/consultant/newPersons',
  794. name: '新增客户',
  795. hideInMenu: true,
  796. component: './statistical/consultant/table',
  797. },
  798. {
  799. path: '/statistical/consultant/sharetable',
  800. name: '分享次数',
  801. hideInMenu: true,
  802. component: './statistical/consultant/sharetable',
  803. },
  804. {
  805. path: '/statistical/consultant/visitPersons',
  806. name: '分享访问人数',
  807. hideInMenu: true,
  808. component: './statistical/consultant/visitPersons',
  809. },
  810. {
  811. path: '/statistical/consultant/visitNum',
  812. name: '分享访问次数',
  813. hideInMenu: true,
  814. component: './statistical/consultant/visitNum',
  815. },
  816. {
  817. path: '/statistical/consultant/sharePersons',
  818. name: '分享拓客',
  819. hideInMenu: true,
  820. component: './statistical/consultant/table',
  821. },
  822. {
  823. path: '/statistical/consultant/homePagePersons',
  824. name: '主页访问人数',
  825. hideInMenu: true,
  826. component: './statistical/consultant/homePagePersons',
  827. },
  828. {
  829. path: '/statistical/consultant/homepageNum',
  830. name: '主页访问次数',
  831. hideInMenu: true,
  832. component: './statistical/consultant/table',
  833. },
  834. {
  835. path: '/statistical/consultant/chatPersons',
  836. name: '咨询数',
  837. hideInMenu: true,
  838. component: './statistical/consultant/table',
  839. },
  840. {
  841. path: '/statistical/consultant/favorNum',
  842. name: '点赞数',
  843. hideInMenu: true,
  844. component: './statistical/consultant/table',
  845. },
  846. ],
  847. },
  848. {
  849. component: './404',
  850. },
  851. ],
  852. },
  853. {
  854. component: './404',
  855. },
  856. ],
  857. },
  858. {
  859. component: './404',
  860. },
  861. ];