routes.js 35KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057
  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/editActivity',
  306. name: '编辑活动',
  307. hideInMenu: true,
  308. component: './activity/editActivity',
  309. },
  310. {
  311. path: '/activity/detailActivity',
  312. name: '活动详情',
  313. hideInMenu: true,
  314. component: './activity/detailActivity',
  315. },
  316. {
  317. path: '/activity/SignList',
  318. name: '报名列表',
  319. hideInMenu: true,
  320. component: './activity/SignList',
  321. },
  322. {
  323. path: '/activity/activityRecord',
  324. name: '数据记录',
  325. hideInMenu: true,
  326. component: './activity/activityRecord',
  327. },
  328. {
  329. path: '/activity/helpActivity/list',
  330. name: '助力活动',
  331. component: './activity/helpActivity/list',
  332. },
  333. {
  334. path: '/activity/helpActivity/helpRecord',
  335. name: '助力记录',
  336. hideInMenu: true,
  337. component: './activity/helpActivity/helpRecord',
  338. },
  339. {
  340. path: '/activity/helpActivity/edithelpActivity',
  341. name: '编辑',
  342. hideInMenu: true,
  343. component: './activity/helpActivity/edithelpActivity',
  344. },
  345. {
  346. path: '/activity/helpActivity/signList',
  347. name: '助力记录',
  348. hideInMenu: true,
  349. component: './activity/helpActivity/signList',
  350. },
  351. {
  352. path: '/activity/helpActivity/helpActivityRecord',
  353. name: '数据记录',
  354. hideInMenu: true,
  355. component: './activity/helpActivity/helpActivityRecord',
  356. },
  357. {
  358. path: '/activity/groupActivity/list',
  359. name: '拼团活动',
  360. component: './activity/groupActivity/list',
  361. },
  362. {
  363. path: '/activity/groupActivity/helpRecord',
  364. name: '拼团记录',
  365. hideInMenu: true,
  366. component: './activity/groupActivity/helpRecord',
  367. },
  368. {
  369. path: '/activity/groupActivity/editgroupActivity',
  370. name: '新增',
  371. hideInMenu: true,
  372. component: './activity/groupActivity/editgroupActivity',
  373. },
  374. {
  375. path: '/activity/groupActivity/detailActivity',
  376. name: '活动详情',
  377. hideInMenu: true,
  378. component: './activity/groupActivity/detailActivity',
  379. },
  380. {
  381. path: '/activity/groupActivity/groupActivityRecord',
  382. name: '数据记录',
  383. hideInMenu: true,
  384. component: './activity/groupActivity/groupActivityRecord',
  385. },
  386. {
  387. path: '/activity/drainage/DrainageList',
  388. name: 'H5活动',
  389. component: './activity/drainage/DrainageList',
  390. },
  391. {
  392. path: '/activity/drainage/Detail',
  393. name: '查看详情',
  394. hideInMenu: true,
  395. component: './activity/drainage/Detail',
  396. },
  397. {
  398. path: '/activity/drainage/DetailDrainage',
  399. name: 'H5详情',
  400. hideInMenu: true,
  401. component: './activity/drainage/DetailDrainage',
  402. },
  403. {
  404. path: '/activity/drainage/h5edit',
  405. name: 'H5详情',
  406. hideInMenu: true,
  407. component: './activity/drainage/h5edit',
  408. },
  409. {
  410. path: '/activity/helpActivity/detailActivity',
  411. name: '活动详情',
  412. hideInMenu: true,
  413. component: './activity/helpActivity/detailActivity',
  414. },
  415. {
  416. path: '/activity/drainage/drainageRecord',
  417. name: '数据记录',
  418. hideInMenu: true,
  419. component: './activity/drainage/drainageRecord',
  420. },
  421. {
  422. path: '/activity/liveActivity/list/index',
  423. name: '直播活动',
  424. component: './activity/liveActivity/list/index',
  425. },
  426. {
  427. path: '/activity/liveActivity/add',
  428. name: '新增',
  429. hideInMenu: true,
  430. component: './activity/liveActivity/add',
  431. },
  432. {
  433. path: '/activity/liveActivity/edit',
  434. name: '编辑',
  435. hideInMenu: true,
  436. component: './activity/liveActivity/edit',
  437. },
  438. {
  439. path: '/activity/liveActivity/liveActivityRecord',
  440. name: '数据记录',
  441. hideInMenu: true,
  442. component: './activity/liveActivity/list/liveActivityRecord',
  443. },
  444. ],
  445. },
  446. {
  447. path: '/staff',
  448. name: '员工管理',
  449. component: '../layouts/BlankLayout',
  450. routes: [
  451. {
  452. path: '/staff/StaffList',
  453. name: '员工列表',
  454. component: './staff/list/StaffList',
  455. },
  456. {
  457. path: '/staff/editStaff',
  458. name: '编辑员工',
  459. hideInMenu: true,
  460. component: './staff/list/editStaff',
  461. },
  462. {
  463. path: '/staff/RoleList',
  464. name: '角色管理',
  465. component: './staff/list/RoleList',
  466. },
  467. {
  468. path: '/staff/editRole',
  469. name: '编辑角色',
  470. hideInMenu: true,
  471. component: './staff/list/editRole',
  472. },
  473. {
  474. path: '/staff/list/addRole',
  475. name: '添加角色',
  476. hideInMenu: true,
  477. component: './staff/list/addRole',
  478. },
  479. {
  480. path: '/staff/list/distribution',
  481. name: '分配归属',
  482. hideInMenu: true,
  483. component: './staff/list/distribution',
  484. },
  485. ],
  486. },
  487. {
  488. path: '/carouselFigure',
  489. name: '资源位管理',
  490. component: '../layouts/BlankLayout',
  491. routes: [
  492. {
  493. path: '/carouselFigure/carouselFigureList',
  494. name: '轮播图',
  495. component: './carouselFigure/carouselFigureList',
  496. },
  497. {
  498. path: '/carouselFigure/editCarousel',
  499. name: '轮播图编辑',
  500. hideInMenu: true,
  501. component: './carouselFigure/editCarousel',
  502. },
  503. {
  504. path: '/carouselFigure/advertisingList',
  505. name: '开屏广告',
  506. component: './carouselFigure/advertisingList',
  507. },
  508. {
  509. path: '/carouselFigure/editAdvertising',
  510. name: '开屏广告编辑',
  511. hideInMenu: true,
  512. component: './carouselFigure/editAdvertising',
  513. },
  514. {
  515. path: '/carouselFigure/propagandaList',
  516. name: '宣传位',
  517. component: './carouselFigure/propagandaList',
  518. },
  519. {
  520. path: '/carouselFigure/propaganda',
  521. name: '宣传位编辑',
  522. hideInMenu: true,
  523. component: './carouselFigure/propaganda',
  524. },
  525. {
  526. path: '/carouselFigure/customImg/list',
  527. name: '其他',
  528. component: './carouselFigure/customImg/list',
  529. },
  530. {
  531. path: '/carouselFigure/customImg/edit',
  532. name: '其他编辑',
  533. hideInMenu: true,
  534. component: './carouselFigure/customImg/edit',
  535. },
  536. ],
  537. },
  538. {
  539. path: '/system',
  540. name: '系统管理',
  541. component: '../layouts/BlankLayout',
  542. routes: [
  543. {
  544. path: '/system/person-level-setting',
  545. name: '用户等级',
  546. component: './system/personLevelSetting'
  547. },
  548. {
  549. path: '/system/person-level-setting/detail',
  550. name: '等级详情',
  551. component: './system/personLevelSetting/detail',
  552. hideInMenu: true,
  553. },
  554. {
  555. path: '/system/messageList',
  556. name: '客户留言',
  557. component: './system/messageList',
  558. },
  559. {
  560. path: '/system/report',
  561. name: '报表数据',
  562. component: './system/report',
  563. },
  564. {
  565. path: '/system/intention',
  566. name: '意向值',
  567. component: './system/intention',
  568. },
  569. {
  570. path: '/system/housingPolicy',
  571. name: '购房须知',
  572. component: './system/housingPolicy',
  573. },
  574. {
  575. path: '/system/editPolicy',
  576. name: '购房政策编辑',
  577. hideInMenu: true,
  578. component: './system/editPolicy',
  579. },
  580. {
  581. path: '/system/document/list',
  582. name: '客户资料',
  583. component: './system/document/list',
  584. },
  585. {
  586. path: '/system/document/audit',
  587. name: '客户资料审核',
  588. hideInMenu: true,
  589. component: './system/document/audit',
  590. },
  591. // {
  592. // path: '/system/MiniappTheme',
  593. // name: '小程序主题',
  594. // component: './system/MiniappTheme',
  595. // },
  596. // {
  597. // path: '/system/MiniappTheme/Detail',
  598. // name: '小程序主题编辑',
  599. // component: './system/MiniappTheme/Detail',
  600. // hideInMenu: true,
  601. // },
  602. ],
  603. },
  604. {
  605. path: '/record',
  606. name: '数据记录',
  607. component: '../layouts/BlankLayout',
  608. routes: [
  609. {
  610. path: '/record/report/list',
  611. name: '报备记录',
  612. component: './record/report/index',
  613. },
  614. {
  615. path: '/record/drainage/DrainageVisitRecordList',
  616. name: '分享记录',
  617. component: './record/drainage/DrainageVisitRecordList',
  618. },
  619. {
  620. path: '/record/share/countList',
  621. name: '销售分享统计',
  622. component: './record/share/countList',
  623. },
  624. {
  625. path: '/record/share/shareCountList',
  626. name: '分享次数列表',
  627. hideInMenu: true,
  628. component: './record/share/shareCountList',
  629. },
  630. {
  631. path: '/record/share/clickCountList',
  632. name: '点击次数列表',
  633. hideInMenu: true,
  634. component: './record/share/clickCountList',
  635. },
  636. ],
  637. },
  638. {
  639. path: '/statistical',
  640. name: '数据统计',
  641. component: '../layouts/BlankLayout',
  642. routes: [
  643. {
  644. path: '/statistical',
  645. redirect: '/statistical/monitor',
  646. },
  647. {
  648. path: '/statistical/monitor',
  649. name: '数据报表',
  650. component: './Monitor',
  651. },
  652. {
  653. path: '/statistical/activity',
  654. name: '活动统计',
  655. component: './statistical/activity'
  656. },
  657. {
  658. path: '/statistical/activity/detail',
  659. name: '查看详情',
  660. hideInMenu: true,
  661. component: './statistical/activity/detail'
  662. },
  663. {
  664. path: '/statistical/activity/sharePersonNum',
  665. name: '分享统计',
  666. hideInMenu: true,
  667. component: './statistical/activity/sharePersonNum',
  668. },
  669. {
  670. path: '/statistical/activity/shareNum',
  671. name: '分享统计',
  672. hideInMenu: true,
  673. component: './statistical/activity/shareNum',
  674. },
  675. {
  676. path: '/statistical/activity/addRegistNum',
  677. name: '分享统计',
  678. hideInMenu: true,
  679. component: './statistical/activity/addRegistNum',
  680. },
  681. {
  682. path: '/statistical/activity/visitNum',
  683. name: '访问统计',
  684. hideInMenu: true,
  685. component: './statistical/activity/visitNum',
  686. },
  687. {
  688. path: '/statistical/activity/visitPersonNum',
  689. name: '访问统计',
  690. hideInMenu: true,
  691. component: './statistical/activity/visitPersonNum',
  692. },
  693. {
  694. path: '/statistical/building',
  695. name: '项目统计',
  696. component: './statistical/building',
  697. },
  698. {
  699. path: '/statistical/consultant',
  700. name: '置业顾问KPI',
  701. component: './statistical/consultant',
  702. },
  703. {
  704. path: '/statistical/userSource',
  705. name: '用户来源',
  706. component: './indexEcharts/userSource',
  707. hideInMenu: true,
  708. },
  709. {
  710. path: '/statistical/newUsers',
  711. name: '新增用户',
  712. component: './indexEcharts/newUsers',
  713. hideInMenu: true,
  714. },
  715. {
  716. path: '/statistical/userBehavior',
  717. name: '用户行为',
  718. component: './indexEcharts/userBehavior',
  719. hideInMenu: true,
  720. },
  721. {
  722. path: '/statistical/building/detail',
  723. name: '项目统计详情',
  724. component: './statistical/building/detail',
  725. hideInMenu: true,
  726. },
  727. {
  728. path: '/statistical/consultant/table',
  729. name: '客户总计',
  730. hideInMenu: true,
  731. component: './statistical/consultant/table',
  732. },
  733. {
  734. path: '/statistical/consultant/newPersons',
  735. name: '新增客户',
  736. hideInMenu: true,
  737. component: './statistical/consultant/table',
  738. },
  739. {
  740. path: '/statistical/consultant/sharetable',
  741. name: '分享次数',
  742. hideInMenu: true,
  743. component: './statistical/consultant/sharetable',
  744. },
  745. {
  746. path: '/statistical/consultant/visitPersons',
  747. name: '分享访问人数',
  748. hideInMenu: true,
  749. component: './statistical/consultant/visitPersons',
  750. },
  751. {
  752. path: '/statistical/consultant/visitNum',
  753. name: '分享访问次数',
  754. hideInMenu: true,
  755. component: './statistical/consultant/visitNum',
  756. },
  757. {
  758. path: '/statistical/consultant/sharePersons',
  759. name: '分享拓客',
  760. hideInMenu: true,
  761. component: './statistical/consultant/table',
  762. },
  763. {
  764. path: '/statistical/consultant/homePagePersons',
  765. name: '主页访问人数',
  766. hideInMenu: true,
  767. component: './statistical/consultant/homePagePersons',
  768. },
  769. {
  770. path: '/statistical/consultant/homepageNum',
  771. name: '主页访问次数',
  772. hideInMenu: true,
  773. component: './statistical/consultant/table',
  774. },
  775. {
  776. path: '/statistical/consultant/chatPersons',
  777. name: '咨询数',
  778. hideInMenu: true,
  779. component: './statistical/consultant/table',
  780. },
  781. {
  782. path: '/statistical/consultant/favorNum',
  783. name: '点赞数',
  784. hideInMenu: true,
  785. component: './statistical/consultant/table',
  786. },
  787. ],
  788. },
  789. {
  790. path: '/house',
  791. name: '在线选房',
  792. component: '../layouts/BlankLayout',
  793. routes: [
  794. {
  795. path: '/house/house/list',
  796. name: '房源管理',
  797. component: './house/house/list/index',
  798. },
  799. {
  800. path: '/house/house/add',
  801. name: '新增',
  802. hideInMenu: true,
  803. component: './house/house/add/index',
  804. },
  805. {
  806. path: '/house/house/batch',
  807. name: '批量上传',
  808. hideInMenu: true,
  809. component: './house/house/add/HouseBatchAdd',
  810. },
  811. {
  812. path: '/house/house/edit',
  813. name: '编辑',
  814. hideInMenu: true,
  815. component: './house/house/edit/index',
  816. },
  817. {
  818. path: '/house/preSelect/list',
  819. name: '预选管理',
  820. component: './house/preSelect/list/index',
  821. },
  822. {
  823. path: '/house/preSelect/add',
  824. name: '新增',
  825. hideInMenu: true,
  826. component: './house/preSelect/add/index',
  827. },
  828. {
  829. path: '/house/preSelect/batch',
  830. name: '批量上传',
  831. hideInMenu: true,
  832. component: './house/preSelect/add/HouseBatchAdd',
  833. },
  834. {
  835. path: '/house/preSelect/edit',
  836. name: '编辑',
  837. hideInMenu: true,
  838. component: './house/preSelect/edit/index',
  839. },
  840. {
  841. path: '/house/raise/list',
  842. name: '认筹管理',
  843. component: './house/raise/list/index',
  844. },
  845. {
  846. path: '/house/raise/add',
  847. name: '新增',
  848. hideInMenu: true,
  849. component: './house/raise/add/index',
  850. },
  851. {
  852. path: '/house/raise/batch',
  853. name: '批量上传',
  854. hideInMenu: true,
  855. component: './house/raise/add/HouseBatchAdd',
  856. },
  857. {
  858. path: '/house/raise/edit',
  859. name: '编辑',
  860. hideInMenu: true,
  861. component: './house/raise/edit/index',
  862. },
  863. ],
  864. },
  865. {
  866. path: '/h5SampleManager',
  867. name: 'H5样例管理',
  868. component: '../layouts/BlankLayout',
  869. routes: [
  870. {
  871. path: '/h5SampleManager/h5Sample/list',
  872. name: 'H5样例',
  873. component: './h5SampleManager/h5Sample/list',
  874. },
  875. {
  876. path: '/h5SampleManager/h5Sample/detail',
  877. name: '详情',
  878. hideInMenu: true,
  879. component: './h5SampleManager/h5Sample/detail',
  880. },
  881. {
  882. path: '/h5SampleManager/h5Sample/add',
  883. name: '提交需求',
  884. hideInMenu: true,
  885. component: './h5SampleManager/h5Sample/add',
  886. },
  887. {
  888. path: '/h5SampleManager/h5Sample/addH5',
  889. name: '创建H5活动',
  890. hideInMenu: true,
  891. component: './h5SampleManager/h5Sample/addH5',
  892. },
  893. {
  894. path: '/h5SampleManager/h5Demand/list',
  895. name: 'H5需求单',
  896. component: './h5SampleManager/h5Demand/list',
  897. },
  898. // {
  899. // path: '/drainageSampleManager/drainageDemand/add',
  900. // name: '新增需求单',
  901. // component: './drainageSampleManager/drainageDemand/add',
  902. // },
  903. {
  904. path: '/h5SampleManager/h5Demand/detail',
  905. name: '详情',
  906. hideInMenu: true,
  907. component: './h5SampleManager/h5Demand/detail',
  908. },
  909. {
  910. path: '/h5SampleManager/h5Demand/edit',
  911. name: '修改需求',
  912. hideInMenu: true,
  913. component: './h5SampleManager/h5Demand/edit',
  914. },
  915. ],
  916. },
  917. {
  918. path: '/eContract',
  919. name: '电子合同',
  920. component: '../layouts/BlankLayout',
  921. routes: [
  922. {
  923. path: '/eContract/template/list',
  924. name: '合同模板',
  925. component: './eContract/template/list',
  926. },
  927. {
  928. path: '/eContract/businessConfig/list',
  929. name: '业务配置',
  930. component: './eContract/businessConfig/list',
  931. },
  932. {
  933. path: '/eContract/businessConfig/add',
  934. name: '新增业务配置',
  935. hideInMenu: true,
  936. component: './eContract/businessConfig/add',
  937. },
  938. {
  939. path: '/eContract/businessConfig/detail',
  940. name: '业务配置详情',
  941. hideInMenu: true,
  942. component: './eContract/businessConfig/detail',
  943. },
  944. {
  945. path: '/eContract/manage/list',
  946. name: '合同管理',
  947. component: './eContract/manage/list',
  948. },
  949. {
  950. path: '/eContract/manage/edit',
  951. name: '查看详情',
  952. hideInMenu: true,
  953. component: './eContract/manage/edit',
  954. },
  955. {
  956. path: '/eContract/template/add',
  957. name: '新增合同模板',
  958. hideInMenu: true,
  959. component: './eContract/template/add',
  960. },
  961. {
  962. path: '/eContract/template/detail',
  963. name: '合同模板详情',
  964. hideInMenu: true,
  965. component: './eContract/template/detail',
  966. }
  967. ],
  968. },
  969. {
  970. path: '/qrcode',
  971. name: '二维码管理',
  972. component: '../layouts/BlankLayout',
  973. routes: [
  974. {
  975. path: '/qrcode/qrcodelist',
  976. name: '二维码列表',
  977. component: './qrcode/qrcodelist/index',
  978. },
  979. {
  980. path: '/qrcode/qrcodelist/add',
  981. name: '新增',
  982. hideInMenu: true,
  983. component: './qrcode/qrcodelist/add',
  984. },
  985. {
  986. path: '/qrcode/qrcodelist/dataRecord',
  987. name: '数据记录',
  988. hideInMenu: true,
  989. component: './qrcode/qrcodelist/dataRecord',
  990. },
  991. ],
  992. },
  993. {
  994. path: '/funds',
  995. name: '资金管理',
  996. component: '../layouts/BlankLayout',
  997. routes: [
  998. {
  999. path: '/funds/accountfunds',
  1000. name: '账户资金',
  1001. component: './funds/accountfunds/index',
  1002. },
  1003. // {
  1004. // path: '/fund/qrcodelist/add',
  1005. // name: '新增',
  1006. // hideInMenu: true,
  1007. // component: './fund/qrcodelist/add',
  1008. // },
  1009. {
  1010. path: '/funds/financialContact',
  1011. name: '财务联系人',
  1012. component: './funds/financialContact/index',
  1013. },
  1014. ],
  1015. },
  1016. // {
  1017. // path: '/miniapp',
  1018. // name: '小程序管理',
  1019. // component: '../layouts/BlankLayout',
  1020. // routes: [
  1021. // {
  1022. // path: '/miniapp/menuList',
  1023. // name: '首页菜单管理',
  1024. // component: './miniapp/menuList',
  1025. // },
  1026. // {
  1027. // path: '/miniapp/editIcons',
  1028. // name: '首页菜单编辑',
  1029. // hideInMenu: true,
  1030. // component: './miniapp/editIcons',
  1031. // },
  1032. // ],
  1033. // },
  1034. {
  1035. name: '403',
  1036. path: '/403',
  1037. component: './403',
  1038. hideInMenu: true,
  1039. },
  1040. {
  1041. component: './404',
  1042. },
  1043. ],
  1044. },
  1045. {
  1046. component: './404',
  1047. },
  1048. ],
  1049. },
  1050. {
  1051. component: './404',
  1052. },
  1053. ];