知与行后台管理端

routes.js 35KB

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