routes.js 41KB

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