routes.js 42KB

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