routes.js 29KB

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