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