routes.js 30KB

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