routes.js 38KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129
  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. routes: [
  21. {
  22. path: '/',
  23. redirect: '/index',
  24. },
  25. {
  26. path: '/index',
  27. name: '首页',
  28. component: './Index',
  29. },
  30. // {
  31. // path: '/',
  32. // redirect: '/welcome',
  33. // },
  34. // {
  35. // path: '/welcome',
  36. // name: '首页',
  37. // component: './Welcome',
  38. // },
  39. // {
  40. // path: '/building',
  41. // name: '项目管理',
  42. // component: '../layouts/BlankLayout',
  43. // routes: [
  44. // {
  45. // path: '/building/list',
  46. // name: '项目列表',
  47. // component: './building/list/index',
  48. // },
  49. // {
  50. // path: '/building/list/add',
  51. // name: '项目添加', // 项目添加
  52. // hideInMenu: true,
  53. // component: './building/list/add/index',
  54. // },
  55. // {
  56. // path: '/building/type',
  57. // name: '项目类型',
  58. // component: './building/type/index',
  59. // },
  60. // {
  61. // path: '/building/type/edi',
  62. // name: '项目类型编辑',
  63. // hideInMenu: true,
  64. // component: './building/type/edi',
  65. // },
  66. // ],
  67. // },
  68. {
  69. path: '/customer',
  70. name: '会员管理',
  71. component: '../layouts/BlankLayout',
  72. routes: [
  73. {
  74. path: '/customer/customerlist/list',
  75. name: '会员列表',
  76. component: './customer/customerlist/index',
  77. },
  78. {
  79. path: '/customer/customerlist/customerDetail',
  80. name: '私客详情',
  81. hideInMenu: true,
  82. component: './customer/customerlist/customerDetail',
  83. },
  84. // {
  85. // path: '/customer/drift/list',
  86. // name: '游客列表',
  87. // component: './customer/drift/index',
  88. // },
  89. {
  90. path: '/customer/customerlist/publicCustomerDetail',
  91. name: '公客详情',
  92. hideInMenu: true,
  93. component: './customer/customerlist/publicCustomerDetail',
  94. },
  95. ],
  96. },
  97. // {
  98. // path: '/recommend',
  99. // name: '推荐客户',
  100. // component: '../layouts/BlankLayout',
  101. // routes: [
  102. // {
  103. // path: '/recommend/recommendCustomer/list',
  104. // name: '推荐记录',
  105. // component: './recommend/recommendCustomer/index',
  106. // },
  107. // {
  108. // path: '/recommend/recommendCustomer/audit',
  109. // name: '客户审核',
  110. // hideInMenu: true,
  111. // component: './recommend/recommendCustomer/audit',
  112. // },
  113. // ],
  114. // },
  115. {
  116. path: '/integralMall',
  117. name: '积分商城',
  118. component: '../layouts/BlankLayout',
  119. routes: [
  120. {
  121. path: '/integralMall/GoodsList',
  122. name: '商品列表',
  123. component: './integralMall/GoodsList',
  124. },
  125. {
  126. path: '/integralMall/achieve',
  127. name: '积分获取',
  128. component: './integralMall/achieve',
  129. },
  130. {
  131. path: '/integralMall/editAchieve',
  132. name: '积分编辑',
  133. hideInMenu: true,
  134. component: './integralMall/editAchieve',
  135. },
  136. {
  137. path: '/integralMall/editGoods',
  138. name: '商品编辑',
  139. hideInMenu: true,
  140. component: './integralMall/editGoods',
  141. },
  142. {
  143. path: '/integralMall/exchangeRecords',
  144. name: '兑换记录',
  145. component: './integralMall/exchangeRecords',
  146. },
  147. {
  148. path: '/integralMall/writeOff',
  149. name: '商品核销',
  150. component: './integralMall/writeOff',
  151. },
  152. {
  153. path: '/integralMall/verifyList',
  154. name: '商品核销列表',
  155. hideInMenu: true,
  156. component: './integralMall/verifyList',
  157. },
  158. ],
  159. },
  160. // {
  161. // path: '/shop',
  162. // name: '商户管理',
  163. // component: '../layouts/BlankLayout',
  164. // routes: [
  165. // {
  166. // path: '/shop/banner',
  167. // name: '联盟商城banner',
  168. // component: './shop/banner',
  169. // },
  170. // {
  171. // path: '/shop/type',
  172. // name: '分类列表',
  173. // component: './shop/type/index',
  174. // },
  175. // {
  176. // path: '/shop/type/detail',
  177. // name: '分类详情',
  178. // hideInMenu: true,
  179. // component: './shop/type/detail',
  180. // },
  181. // {
  182. // path: '/shop/list',
  183. // name: '商户列表',
  184. // component: './shop/index',
  185. // },
  186. // {
  187. // path: '/shop/detail',
  188. // name: '商户详情',
  189. // hideInMenu: true,
  190. // component: './shop/detail',
  191. // },
  192. // ]
  193. // },
  194. {
  195. path: '/channel',
  196. name: '渠道管理',
  197. component: '../layouts/BlankLayout',
  198. routes: [
  199. {
  200. path: '/channel/channelList',
  201. name: '渠道管理',
  202. component: './channel/channelList',
  203. },
  204. {
  205. path: '/channel/addChannel',
  206. name: '添加渠道',
  207. hideInMenu: true,
  208. component: './channel/addChannel',
  209. },
  210. {
  211. path: '/channel/editChannel',
  212. name: '编辑渠道',
  213. hideInMenu: true,
  214. component: './channel/editChannel',
  215. },
  216. {
  217. path: '/channel/brokerList',
  218. name: '经纪人',
  219. hideInMenu: true,
  220. component: './channel/brokerList',
  221. },
  222. {
  223. path: '/channel/recommendClients',
  224. name: '渠道推荐',
  225. hideInMenu: true,
  226. component: './channel/recommendClients',
  227. },
  228. {
  229. path: '/channel/InviteClients',
  230. name: '邀请经纪人',
  231. hideInMenu: true,
  232. component: './channel/InviteClients',
  233. },
  234. {
  235. path: '/channel/independentList',
  236. name: '专业经纪人',
  237. component: './channel/independentList/index',
  238. },
  239. {
  240. path: '/channel/newCustomer',
  241. name: '引进注册用户',
  242. hideInMenu: true,
  243. component: './channel/newCustomer',
  244. },
  245. {
  246. path: '/channel/newCustomer/dataRecord',
  247. name: '注册用户',
  248. hideInMenu: true,
  249. component: './channel/newCustomer/dataRecord',
  250. },
  251. {
  252. path: '/channel/newCustomer/visitNum',
  253. name: '访问次数',
  254. hideInMenu: true,
  255. component: './channel/newCustomer/visitNum',
  256. },
  257. {
  258. path: '/channel/newCustomer/personNum',
  259. name: '访问人数',
  260. hideInMenu: true,
  261. component: './channel/newCustomer/personNum',
  262. },
  263. ],
  264. },
  265. {
  266. path: '/news',
  267. name: '资讯管理',
  268. component: '../layouts/BlankLayout',
  269. routes: [
  270. {
  271. path: '/news/type/NewsType',
  272. name: '资讯类型',
  273. component: './news/type/NewsType',
  274. },
  275. {
  276. path: '/news/type/editNews',
  277. name: '编辑资讯类型',
  278. hideInMenu: true,
  279. component: './news/type/editNews',
  280. },
  281. {
  282. path: '/news/list/NewsList',
  283. name: '资讯列表',
  284. component: './news/list/NewsList',
  285. },
  286. {
  287. path: '/news/list/editNewsList',
  288. name: '编辑资讯',
  289. hideInMenu: true,
  290. component: './news/list/editNewsList',
  291. },
  292. ],
  293. },
  294. {
  295. path: '/activity',
  296. name: '活动管理',
  297. component: '../layouts/BlankLayout',
  298. routes: [
  299. {
  300. path: '/activity/ActivityList',
  301. name: '报名活动',
  302. component: './activity/ActivityList',
  303. },
  304. {
  305. path: '/activity/ActivityTypeList',
  306. name: '活动类型',
  307. component: './activity/type/ActivityTypeList',
  308. },
  309. {
  310. path: '/activity/editActivityType',
  311. name: '编辑活动',
  312. hideInMenu: true,
  313. component: './activity/type/editActivityType',
  314. },
  315. {
  316. path: '/activity/editActivity',
  317. name: '编辑活动',
  318. hideInMenu: true,
  319. component: './activity/editActivity',
  320. },
  321. {
  322. path: '/activity/detailActivity',
  323. name: '活动详情',
  324. hideInMenu: true,
  325. component: './activity/detailActivity',
  326. },
  327. {
  328. path: '/activity/SignList',
  329. name: '报名列表',
  330. hideInMenu: true,
  331. component: './activity/SignList',
  332. },
  333. {
  334. path: '/activity/activityRecord',
  335. name: '数据记录',
  336. hideInMenu: true,
  337. component: './activity/activityRecord',
  338. },
  339. // {
  340. // path: '/activity/helpActivity/list',
  341. // name: '助力活动',
  342. // component: './activity/helpActivity/list',
  343. // },
  344. {
  345. path: '/activity/helpActivity/helpRecord',
  346. name: '助力记录',
  347. hideInMenu: true,
  348. component: './activity/helpActivity/helpRecord',
  349. },
  350. {
  351. path: '/activity/helpActivity/edithelpActivity',
  352. name: '编辑',
  353. hideInMenu: true,
  354. component: './activity/helpActivity/edithelpActivity',
  355. },
  356. {
  357. path: '/activity/helpActivity/signList',
  358. name: '助力记录',
  359. hideInMenu: true,
  360. component: './activity/helpActivity/signList',
  361. },
  362. {
  363. path: '/activity/helpActivity/helpActivityRecord',
  364. name: '数据记录',
  365. hideInMenu: true,
  366. component: './activity/helpActivity/helpActivityRecord',
  367. },
  368. // {
  369. // path: '/activity/groupActivity/list',
  370. // name: '拼团活动',
  371. // component: './activity/groupActivity/list',
  372. // },
  373. {
  374. path: '/activity/groupActivity/helpRecord',
  375. name: '拼团记录',
  376. hideInMenu: true,
  377. component: './activity/groupActivity/helpRecord',
  378. },
  379. {
  380. path: '/activity/groupActivity/editgroupActivity',
  381. name: '新增',
  382. hideInMenu: true,
  383. component: './activity/groupActivity/editgroupActivity',
  384. },
  385. {
  386. path: '/activity/groupActivity/detailActivity',
  387. name: '活动详情',
  388. hideInMenu: true,
  389. component: './activity/groupActivity/detailActivity',
  390. },
  391. {
  392. path: '/activity/groupActivity/groupActivityRecord',
  393. name: '数据记录',
  394. hideInMenu: true,
  395. component: './activity/groupActivity/groupActivityRecord',
  396. },
  397. // {
  398. // path: '/activity/drainage/DrainageList',
  399. // name: 'H5活动',
  400. // component: './activity/drainage/DrainageList',
  401. // },
  402. {
  403. path: '/activity/drainage/Detail',
  404. name: '查看详情',
  405. hideInMenu: true,
  406. component: './activity/drainage/Detail',
  407. },
  408. {
  409. path: '/activity/drainage/DetailDrainage',
  410. name: 'H5详情',
  411. hideInMenu: true,
  412. component: './activity/drainage/DetailDrainage',
  413. },
  414. {
  415. path: '/activity/drainage/h5edit',
  416. name: 'H5详情',
  417. hideInMenu: true,
  418. component: './activity/drainage/h5edit',
  419. },
  420. {
  421. path: '/activity/helpActivity/detailActivity',
  422. name: '活动详情',
  423. hideInMenu: true,
  424. component: './activity/helpActivity/detailActivity',
  425. },
  426. {
  427. path: '/activity/drainage/drainageRecord',
  428. name: '数据记录',
  429. hideInMenu: true,
  430. component: './activity/drainage/drainageRecord',
  431. },
  432. {
  433. path: '/activity/liveActivity/list/index',
  434. name: '直播活动',
  435. component: './activity/liveActivity/list/index',
  436. },
  437. {
  438. path: '/activity/liveActivity/add',
  439. name: '新增',
  440. hideInMenu: true,
  441. component: './activity/liveActivity/add',
  442. },
  443. {
  444. path: '/activity/liveActivity/edit',
  445. name: '编辑',
  446. hideInMenu: true,
  447. component: './activity/liveActivity/edit',
  448. },
  449. {
  450. path: '/activity/liveActivity/liveActivityRecord',
  451. name: '数据记录',
  452. hideInMenu: true,
  453. component: './activity/liveActivity/list/liveActivityRecord',
  454. },
  455. ],
  456. },
  457. {
  458. path: '/staff',
  459. name: '员工管理',
  460. component: '../layouts/BlankLayout',
  461. routes: [
  462. {
  463. path: '/staff/StaffList',
  464. name: '员工列表',
  465. component: './staff/list/StaffList',
  466. },
  467. {
  468. path: '/staff/editStaff',
  469. name: '编辑员工',
  470. hideInMenu: true,
  471. component: './staff/list/editStaff',
  472. },
  473. {
  474. path: '/staff/RoleList',
  475. name: '角色管理',
  476. component: './staff/list/RoleList',
  477. },
  478. {
  479. path: '/staff/editRole',
  480. name: '编辑角色',
  481. hideInMenu: true,
  482. component: './staff/list/editRole',
  483. },
  484. {
  485. path: '/staff/list/addRole',
  486. name: '添加角色',
  487. hideInMenu: true,
  488. component: './staff/list/addRole',
  489. },
  490. {
  491. path: '/staff/list/distribution',
  492. name: '分配归属',
  493. hideInMenu: true,
  494. component: './staff/list/distribution',
  495. },
  496. ],
  497. },
  498. {
  499. path: '/carouselFigure',
  500. name: '资源位管理',
  501. component: '../layouts/BlankLayout',
  502. routes: [
  503. {
  504. path: '/carouselFigure/carouselFigureList',
  505. name: '轮播图',
  506. component: './carouselFigure/carouselFigureList',
  507. },
  508. {
  509. path: '/carouselFigure/editCarousel',
  510. name: '轮播图编辑',
  511. hideInMenu: true,
  512. component: './carouselFigure/editCarousel',
  513. },
  514. // {
  515. // path: '/carouselFigure/advertisingList',
  516. // name: '开屏广告',
  517. // component: './carouselFigure/advertisingList',
  518. // },
  519. {
  520. path: '/carouselFigure/editAdvertising',
  521. name: '开屏广告编辑',
  522. hideInMenu: true,
  523. component: './carouselFigure/editAdvertising',
  524. },
  525. // {
  526. // path: '/carouselFigure/propagandaList',
  527. // name: '宣传位',
  528. // component: './carouselFigure/propagandaList',
  529. // },
  530. {
  531. path: '/carouselFigure/propaganda',
  532. name: '宣传位编辑',
  533. hideInMenu: true,
  534. component: './carouselFigure/propaganda',
  535. },
  536. // {
  537. // path: '/carouselFigure/customImg/list',
  538. // name: '其他',
  539. // component: './carouselFigure/customImg/list',
  540. // },
  541. {
  542. path: '/carouselFigure/customImg/edit',
  543. name: '其他编辑',
  544. hideInMenu: true,
  545. component: './carouselFigure/customImg/edit',
  546. },
  547. ],
  548. },
  549. {
  550. path: '/property',
  551. name: '物业管理',
  552. component: '../layouts/BlankLayout',
  553. routes: [
  554. {
  555. path: 'buildingInfo',
  556. name: '楼栋管理',
  557. component: './property/building'
  558. },
  559. {
  560. path: 'buildingInfo/importExcel',
  561. name: '楼栋导入',
  562. component: './property/building/BatchImport',
  563. hideInMenu: true,
  564. },
  565. {
  566. path: 'proprietor',
  567. name: '业主管理',
  568. component: './property/proprietor'
  569. },
  570. {
  571. path: 'proprietor/detail',
  572. name: '业主详情',
  573. component: './property/proprietor/Detail',
  574. hideInMenu: true,
  575. },
  576. {
  577. path: 'notice',
  578. name: '公告管理',
  579. component: './property/notice'
  580. },
  581. {
  582. path: 'notice/edit',
  583. name: '公告管理详情',
  584. component: './property/notice/Edit',
  585. hideInMenu: true,
  586. },
  587. {
  588. path: 'bill/management',
  589. name: '收费组管理',
  590. component: './property/bill/list',
  591. },
  592. {
  593. path: 'bill/management/add',
  594. name: '新增收费组',
  595. component: './property/bill/edit',
  596. hideInMenu: true,
  597. },
  598. {
  599. path: 'bill/order',
  600. name: '订单管理',
  601. component: './property/bill/order',
  602. },
  603. {
  604. path: 'bill/ticket',
  605. name: '工单管理',
  606. component: './property/ticket',
  607. },
  608. ]
  609. },
  610. // {
  611. // path: '/system',
  612. // name: '系统管理',
  613. // component: '../layouts/BlankLayout',
  614. // routes: [
  615. // {
  616. // path: '/system/person-level-setting',
  617. // name: '用户等级',
  618. // component: './system/personLevelSetting'
  619. // },
  620. // {
  621. // path: '/system/person-level-setting/detail',
  622. // name: '等级详情',
  623. // component: './system/personLevelSetting/detail',
  624. // hideInMenu: true,
  625. // },
  626. // {
  627. // path: '/system/messageList',
  628. // name: '客户留言',
  629. // component: './system/messageList',
  630. // },
  631. // {
  632. // path: '/system/report',
  633. // name: '报表数据',
  634. // component: './system/report',
  635. // },
  636. // {
  637. // path: '/system/intention',
  638. // name: '意向值',
  639. // component: './system/intention',
  640. // },
  641. // {
  642. // path: '/system/housingPolicy',
  643. // name: '购房须知',
  644. // component: './system/housingPolicy',
  645. // },
  646. // {
  647. // path: '/system/editPolicy',
  648. // name: '购房政策编辑',
  649. // hideInMenu: true,
  650. // component: './system/editPolicy',
  651. // },
  652. // {
  653. // path: '/system/document/list',
  654. // name: '客户资料',
  655. // component: './system/document/list',
  656. // },
  657. // {
  658. // path: '/system/document/audit',
  659. // name: '客户资料审核',
  660. // hideInMenu: true,
  661. // component: './system/document/audit',
  662. // },
  663. // // {
  664. // // path: '/system/MiniappTheme',
  665. // // name: '小程序主题',
  666. // // component: './system/MiniappTheme',
  667. // // },
  668. // // {
  669. // // path: '/system/MiniappTheme/Detail',
  670. // // name: '小程序主题编辑',
  671. // // component: './system/MiniappTheme/Detail',
  672. // // hideInMenu: true,
  673. // // },
  674. // ],
  675. // },
  676. {
  677. path: '/record',
  678. name: '数据记录',
  679. component: '../layouts/BlankLayout',
  680. routes: [
  681. {
  682. path: '/record/report/list',
  683. name: '报备记录',
  684. component: './record/report/index',
  685. },
  686. {
  687. path: '/record/drainage/DrainageVisitRecordList',
  688. name: '分享记录',
  689. component: './record/drainage/DrainageVisitRecordList',
  690. },
  691. {
  692. path: '/record/share/countList',
  693. name: '销售分享统计',
  694. component: './record/share/countList',
  695. },
  696. {
  697. path: '/record/share/shareCountList',
  698. name: '分享次数列表',
  699. hideInMenu: true,
  700. component: './record/share/shareCountList',
  701. },
  702. {
  703. path: '/record/share/clickCountList',
  704. name: '点击次数列表',
  705. hideInMenu: true,
  706. component: './record/share/clickCountList',
  707. },
  708. ],
  709. },
  710. {
  711. path: '/statistical',
  712. name: '数据统计',
  713. component: '../layouts/BlankLayout',
  714. routes: [
  715. {
  716. path: '/statistical',
  717. redirect: '/statistical/monitor',
  718. },
  719. {
  720. path: '/statistical/monitor',
  721. name: '数据报表',
  722. component: './Monitor',
  723. },
  724. {
  725. path: '/statistical/activity',
  726. name: '活动统计',
  727. component: './statistical/activity'
  728. },
  729. {
  730. path: '/statistical/activity/detail',
  731. name: '查看详情',
  732. hideInMenu: true,
  733. component: './statistical/activity/detail'
  734. },
  735. {
  736. path: '/statistical/activity/sharePersonNum',
  737. name: '分享统计',
  738. hideInMenu: true,
  739. component: './statistical/activity/sharePersonNum',
  740. },
  741. {
  742. path: '/statistical/activity/shareNum',
  743. name: '分享统计',
  744. hideInMenu: true,
  745. component: './statistical/activity/shareNum',
  746. },
  747. {
  748. path: '/statistical/activity/addRegistNum',
  749. name: '分享统计',
  750. hideInMenu: true,
  751. component: './statistical/activity/addRegistNum',
  752. },
  753. {
  754. path: '/statistical/activity/visitNum',
  755. name: '访问统计',
  756. hideInMenu: true,
  757. component: './statistical/activity/visitNum',
  758. },
  759. {
  760. path: '/statistical/activity/visitPersonNum',
  761. name: '访问统计',
  762. hideInMenu: true,
  763. component: './statistical/activity/visitPersonNum',
  764. },
  765. {
  766. path: '/statistical/building',
  767. name: '项目统计',
  768. component: './statistical/building',
  769. },
  770. {
  771. path: '/statistical/consultant',
  772. name: '置业顾问KPI',
  773. component: './statistical/consultant',
  774. },
  775. {
  776. path: '/statistical/userSource',
  777. name: '用户来源',
  778. component: './indexEcharts/userSource',
  779. hideInMenu: true,
  780. },
  781. {
  782. path: '/statistical/newUsers',
  783. name: '新增用户',
  784. component: './indexEcharts/newUsers',
  785. hideInMenu: true,
  786. },
  787. {
  788. path: '/statistical/userBehavior',
  789. name: '用户行为',
  790. component: './indexEcharts/userBehavior',
  791. hideInMenu: true,
  792. },
  793. {
  794. path: '/statistical/building/detail',
  795. name: '项目统计详情',
  796. component: './statistical/building/detail',
  797. hideInMenu: true,
  798. },
  799. {
  800. path: '/statistical/consultant/table',
  801. name: '客户总计',
  802. hideInMenu: true,
  803. component: './statistical/consultant/table',
  804. },
  805. {
  806. path: '/statistical/consultant/newPersons',
  807. name: '新增客户',
  808. hideInMenu: true,
  809. component: './statistical/consultant/table',
  810. },
  811. {
  812. path: '/statistical/consultant/sharetable',
  813. name: '分享次数',
  814. hideInMenu: true,
  815. component: './statistical/consultant/sharetable',
  816. },
  817. {
  818. path: '/statistical/consultant/visitPersons',
  819. name: '分享访问人数',
  820. hideInMenu: true,
  821. component: './statistical/consultant/visitPersons',
  822. },
  823. {
  824. path: '/statistical/consultant/visitNum',
  825. name: '分享访问次数',
  826. hideInMenu: true,
  827. component: './statistical/consultant/visitNum',
  828. },
  829. {
  830. path: '/statistical/consultant/sharePersons',
  831. name: '分享拓客',
  832. hideInMenu: true,
  833. component: './statistical/consultant/table',
  834. },
  835. {
  836. path: '/statistical/consultant/homePagePersons',
  837. name: '主页访问人数',
  838. hideInMenu: true,
  839. component: './statistical/consultant/homePagePersons',
  840. },
  841. {
  842. path: '/statistical/consultant/homepageNum',
  843. name: '主页访问次数',
  844. hideInMenu: true,
  845. component: './statistical/consultant/table',
  846. },
  847. {
  848. path: '/statistical/consultant/chatPersons',
  849. name: '咨询数',
  850. hideInMenu: true,
  851. component: './statistical/consultant/table',
  852. },
  853. {
  854. path: '/statistical/consultant/favorNum',
  855. name: '点赞数',
  856. hideInMenu: true,
  857. component: './statistical/consultant/table',
  858. },
  859. ],
  860. },
  861. // {
  862. // path: '/house',
  863. // name: '在线选房',
  864. // component: '../layouts/BlankLayout',
  865. // routes: [
  866. // {
  867. // path: '/house/house/list',
  868. // name: '房源管理',
  869. // component: './house/house/list/index',
  870. // },
  871. // {
  872. // path: '/house/house/add',
  873. // name: '新增',
  874. // hideInMenu: true,
  875. // component: './house/house/add/index',
  876. // },
  877. // {
  878. // path: '/house/house/batch',
  879. // name: '批量上传',
  880. // hideInMenu: true,
  881. // component: './house/house/add/HouseBatchAdd',
  882. // },
  883. // {
  884. // path: '/house/house/edit',
  885. // name: '编辑',
  886. // hideInMenu: true,
  887. // component: './house/house/edit/index',
  888. // },
  889. // {
  890. // path: '/house/preSelect/list',
  891. // name: '预选管理',
  892. // component: './house/preSelect/list/index',
  893. // },
  894. // {
  895. // path: '/house/preSelect/add',
  896. // name: '新增',
  897. // hideInMenu: true,
  898. // component: './house/preSelect/add/index',
  899. // },
  900. // {
  901. // path: '/house/preSelect/batch',
  902. // name: '批量上传',
  903. // hideInMenu: true,
  904. // component: './house/preSelect/add/HouseBatchAdd',
  905. // },
  906. // {
  907. // path: '/house/preSelect/edit',
  908. // name: '编辑',
  909. // hideInMenu: true,
  910. // component: './house/preSelect/edit/index',
  911. // },
  912. // {
  913. // path: '/house/raise/list',
  914. // name: '认筹管理',
  915. // component: './house/raise/list/index',
  916. // },
  917. // {
  918. // path: '/house/raise/add',
  919. // name: '新增',
  920. // hideInMenu: true,
  921. // component: './house/raise/add/index',
  922. // },
  923. // {
  924. // path: '/house/raise/batch',
  925. // name: '批量上传',
  926. // hideInMenu: true,
  927. // component: './house/raise/add/HouseBatchAdd',
  928. // },
  929. // {
  930. // path: '/house/raise/edit',
  931. // name: '编辑',
  932. // hideInMenu: true,
  933. // component: './house/raise/edit/index',
  934. // },
  935. // ],
  936. // },
  937. // {
  938. // path: '/h5SampleManager',
  939. // name: 'H5样例管理',
  940. // component: '../layouts/BlankLayout',
  941. // routes: [
  942. // {
  943. // path: '/h5SampleManager/h5Sample/list',
  944. // name: 'H5样例',
  945. // component: './h5SampleManager/h5Sample/list',
  946. // },
  947. // {
  948. // path: '/h5SampleManager/h5Sample/detail',
  949. // name: '详情',
  950. // hideInMenu: true,
  951. // component: './h5SampleManager/h5Sample/detail',
  952. // },
  953. // {
  954. // path: '/h5SampleManager/h5Sample/add',
  955. // name: '提交需求',
  956. // hideInMenu: true,
  957. // component: './h5SampleManager/h5Sample/add',
  958. // },
  959. // {
  960. // path: '/h5SampleManager/h5Sample/addH5',
  961. // name: '创建H5活动',
  962. // hideInMenu: true,
  963. // component: './h5SampleManager/h5Sample/addH5',
  964. // },
  965. // {
  966. // path: '/h5SampleManager/h5Demand/list',
  967. // name: 'H5需求单',
  968. // component: './h5SampleManager/h5Demand/list',
  969. // },
  970. // // {
  971. // // path: '/drainageSampleManager/drainageDemand/add',
  972. // // name: '新增需求单',
  973. // // component: './drainageSampleManager/drainageDemand/add',
  974. // // },
  975. // {
  976. // path: '/h5SampleManager/h5Demand/detail',
  977. // name: '详情',
  978. // hideInMenu: true,
  979. // component: './h5SampleManager/h5Demand/detail',
  980. // },
  981. // {
  982. // path: '/h5SampleManager/h5Demand/edit',
  983. // name: '修改需求',
  984. // hideInMenu: true,
  985. // component: './h5SampleManager/h5Demand/edit',
  986. // },
  987. // ],
  988. // },
  989. // {
  990. // path: '/eContract',
  991. // name: '电子合同',
  992. // component: '../layouts/BlankLayout',
  993. // routes: [
  994. // {
  995. // path: '/eContract/template/list',
  996. // name: '合同模板',
  997. // component: './eContract/template/list',
  998. // },
  999. // {
  1000. // path: '/eContract/businessConfig/list',
  1001. // name: '业务配置',
  1002. // component: './eContract/businessConfig/list',
  1003. // },
  1004. // {
  1005. // path: '/eContract/businessConfig/add',
  1006. // name: '新增业务配置',
  1007. // hideInMenu: true,
  1008. // component: './eContract/businessConfig/add',
  1009. // },
  1010. // {
  1011. // path: '/eContract/businessConfig/detail',
  1012. // name: '业务配置详情',
  1013. // hideInMenu: true,
  1014. // component: './eContract/businessConfig/detail',
  1015. // },
  1016. // {
  1017. // path: '/eContract/manage/list',
  1018. // name: '合同管理',
  1019. // component: './eContract/manage/list',
  1020. // },
  1021. // {
  1022. // path: '/eContract/manage/edit',
  1023. // name: '查看详情',
  1024. // hideInMenu: true,
  1025. // component: './eContract/manage/edit',
  1026. // },
  1027. // {
  1028. // path: '/eContract/template/add',
  1029. // name: '新增合同模板',
  1030. // hideInMenu: true,
  1031. // component: './eContract/template/add',
  1032. // },
  1033. // {
  1034. // path: '/eContract/template/detail',
  1035. // name: '合同模板详情',
  1036. // hideInMenu: true,
  1037. // component: './eContract/template/detail',
  1038. // }
  1039. // ],
  1040. // },
  1041. // {
  1042. // path: '/qrcode',
  1043. // name: '二维码管理',
  1044. // component: '../layouts/BlankLayout',
  1045. // routes: [
  1046. // {
  1047. // path: '/qrcode/qrcodelist',
  1048. // name: '二维码列表',
  1049. // component: './qrcode/qrcodelist/index',
  1050. // },
  1051. // {
  1052. // path: '/qrcode/qrcodelist/add',
  1053. // name: '新增',
  1054. // hideInMenu: true,
  1055. // component: './qrcode/qrcodelist/add',
  1056. // },
  1057. // {
  1058. // path: '/qrcode/qrcodelist/dataRecord',
  1059. // name: '数据记录',
  1060. // hideInMenu: true,
  1061. // component: './qrcode/qrcodelist/dataRecord',
  1062. // },
  1063. // ],
  1064. // },
  1065. // {
  1066. // path: '/funds',
  1067. // name: '资金管理',
  1068. // component: '../layouts/BlankLayout',
  1069. // routes: [
  1070. // {
  1071. // path: '/funds/accountfunds',
  1072. // name: '账户资金',
  1073. // component: './funds/accountfunds/index',
  1074. // },
  1075. // // {
  1076. // // path: '/fund/qrcodelist/add',
  1077. // // name: '新增',
  1078. // // hideInMenu: true,
  1079. // // component: './fund/qrcodelist/add',
  1080. // // },
  1081. // {
  1082. // path: '/funds/financialContact',
  1083. // name: '财务联系人',
  1084. // component: './funds/financialContact/index',
  1085. // },
  1086. // ],
  1087. // },
  1088. // {
  1089. // path: '/miniapp',
  1090. // name: '小程序管理',
  1091. // component: '../layouts/BlankLayout',
  1092. // routes: [
  1093. // {
  1094. // path: '/miniapp/menuList',
  1095. // name: '首页菜单管理',
  1096. // component: './miniapp/menuList',
  1097. // },
  1098. // {
  1099. // path: '/miniapp/editIcons',
  1100. // name: '首页菜单编辑',
  1101. // hideInMenu: true,
  1102. // component: './miniapp/editIcons',
  1103. // },
  1104. // ],
  1105. // },
  1106. {
  1107. name: '403',
  1108. path: '/403',
  1109. component: './403',
  1110. hideInMenu: true,
  1111. },
  1112. {
  1113. component: './404',
  1114. },
  1115. ],
  1116. },
  1117. {
  1118. component: './404',
  1119. },
  1120. ],
  1121. },
  1122. {
  1123. component: './404',
  1124. },
  1125. ];