知与行后台管理端

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012
  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/MiniappTheme',
  548. // name: '小程序主题',
  549. // component: './system/MiniappTheme',
  550. // },
  551. // {
  552. // path: '/system/MiniappTheme/Detail',
  553. // name: '小程序主题编辑',
  554. // component: './system/MiniappTheme/Detail',
  555. // hideInMenu: true,
  556. // },
  557. ],
  558. },
  559. {
  560. path: '/record',
  561. name: '数据记录',
  562. component: '../layouts/BlankLayout',
  563. routes: [
  564. {
  565. path: '/record/report/list',
  566. name: '报备记录',
  567. component: './record/report/index',
  568. },
  569. {
  570. path: '/record/drainage/DrainageVisitRecordList',
  571. name: '分享记录',
  572. component: './record/drainage/DrainageVisitRecordList',
  573. },
  574. {
  575. path: '/record/share/countList',
  576. name: '销售分享统计',
  577. component: './record/share/countList',
  578. },
  579. {
  580. path: '/record/share/shareCountList',
  581. name: '分享次数列表',
  582. hideInMenu: true,
  583. component: './record/share/shareCountList',
  584. },
  585. {
  586. path: '/record/share/clickCountList',
  587. name: '点击次数列表',
  588. hideInMenu: true,
  589. component: './record/share/clickCountList',
  590. },
  591. ],
  592. },
  593. {
  594. path: '/statistical',
  595. name: '数据统计',
  596. component: '../layouts/BlankLayout',
  597. routes: [
  598. {
  599. path: '/statistical',
  600. redirect: '/statistical/monitor',
  601. },
  602. {
  603. path: '/statistical/monitor',
  604. name: '数据报表',
  605. component: './Monitor',
  606. },
  607. {
  608. path: '/statistical/activity',
  609. name: '活动统计',
  610. component: './statistical/activity'
  611. },
  612. {
  613. path: '/statistical/activity/detail',
  614. name: '查看详情',
  615. hideInMenu: true,
  616. component: './statistical/activity/detail'
  617. },
  618. {
  619. path: '/statistical/activity/sharePersonNum',
  620. name: '分享统计',
  621. hideInMenu: true,
  622. component: './statistical/activity/sharePersonNum',
  623. },
  624. {
  625. path: '/statistical/activity/shareNum',
  626. name: '分享统计',
  627. hideInMenu: true,
  628. component: './statistical/activity/shareNum',
  629. },
  630. {
  631. path: '/statistical/activity/addRegistNum',
  632. name: '分享统计',
  633. hideInMenu: true,
  634. component: './statistical/activity/addRegistNum',
  635. },
  636. {
  637. path: '/statistical/activity/visitNum',
  638. name: '访问统计',
  639. hideInMenu: true,
  640. component: './statistical/activity/visitNum',
  641. },
  642. {
  643. path: '/statistical/activity/visitPersonNum',
  644. name: '访问统计',
  645. hideInMenu: true,
  646. component: './statistical/activity/visitPersonNum',
  647. },
  648. {
  649. path: '/statistical/building',
  650. name: '项目统计',
  651. component: './statistical/building',
  652. },
  653. {
  654. path: '/statistical/consultant',
  655. name: '置业顾问KPI',
  656. component: './statistical/consultant',
  657. },
  658. {
  659. path: '/statistical/userSource',
  660. name: '用户来源',
  661. component: './indexEcharts/userSource',
  662. hideInMenu: true,
  663. },
  664. {
  665. path: '/statistical/newUsers',
  666. name: '新增用户',
  667. component: './indexEcharts/newUsers',
  668. hideInMenu: true,
  669. },
  670. {
  671. path: '/statistical/userBehavior',
  672. name: '用户行为',
  673. component: './indexEcharts/userBehavior',
  674. hideInMenu: true,
  675. },
  676. {
  677. path: '/statistical/building/detail',
  678. name: '项目统计详情',
  679. component: './statistical/building/detail',
  680. hideInMenu: true,
  681. },
  682. {
  683. path: '/statistical/consultant/table',
  684. name: '客户总计',
  685. hideInMenu: true,
  686. component: './statistical/consultant/table',
  687. },
  688. {
  689. path: '/statistical/consultant/newPersons',
  690. name: '新增客户',
  691. hideInMenu: true,
  692. component: './statistical/consultant/table',
  693. },
  694. {
  695. path: '/statistical/consultant/sharetable',
  696. name: '分享次数',
  697. hideInMenu: true,
  698. component: './statistical/consultant/sharetable',
  699. },
  700. {
  701. path: '/statistical/consultant/visitPersons',
  702. name: '分享访问人数',
  703. hideInMenu: true,
  704. component: './statistical/consultant/visitPersons',
  705. },
  706. {
  707. path: '/statistical/consultant/visitNum',
  708. name: '分享访问次数',
  709. hideInMenu: true,
  710. component: './statistical/consultant/visitNum',
  711. },
  712. {
  713. path: '/statistical/consultant/sharePersons',
  714. name: '分享拓客',
  715. hideInMenu: true,
  716. component: './statistical/consultant/table',
  717. },
  718. {
  719. path: '/statistical/consultant/homePagePersons',
  720. name: '主页访问人数',
  721. hideInMenu: true,
  722. component: './statistical/consultant/homePagePersons',
  723. },
  724. {
  725. path: '/statistical/consultant/homepageNum',
  726. name: '主页访问次数',
  727. hideInMenu: true,
  728. component: './statistical/consultant/table',
  729. },
  730. {
  731. path: '/statistical/consultant/chatPersons',
  732. name: '咨询数',
  733. hideInMenu: true,
  734. component: './statistical/consultant/table',
  735. },
  736. {
  737. path: '/statistical/consultant/favorNum',
  738. name: '点赞数',
  739. hideInMenu: true,
  740. component: './statistical/consultant/table',
  741. },
  742. ],
  743. },
  744. {
  745. path: '/house',
  746. name: '在线选房',
  747. component: '../layouts/BlankLayout',
  748. routes: [
  749. {
  750. path: '/house/house/list',
  751. name: '房源管理',
  752. component: './house/house/list/index',
  753. },
  754. {
  755. path: '/house/house/add',
  756. name: '新增',
  757. hideInMenu: true,
  758. component: './house/house/add/index',
  759. },
  760. {
  761. path: '/house/house/batch',
  762. name: '批量上传',
  763. hideInMenu: true,
  764. component: './house/house/add/HouseBatchAdd',
  765. },
  766. {
  767. path: '/house/house/edit',
  768. name: '编辑',
  769. hideInMenu: true,
  770. component: './house/house/edit/index',
  771. },
  772. {
  773. path: '/house/preSelect/list',
  774. name: '预选管理',
  775. component: './house/preSelect/list/index',
  776. },
  777. {
  778. path: '/house/preSelect/add',
  779. name: '新增',
  780. hideInMenu: true,
  781. component: './house/preSelect/add/index',
  782. },
  783. {
  784. path: '/house/preSelect/batch',
  785. name: '批量上传',
  786. hideInMenu: true,
  787. component: './house/preSelect/add/HouseBatchAdd',
  788. },
  789. {
  790. path: '/house/preSelect/edit',
  791. name: '编辑',
  792. hideInMenu: true,
  793. component: './house/preSelect/edit/index',
  794. },
  795. {
  796. path: '/house/raise/list',
  797. name: '认筹管理',
  798. component: './house/raise/list/index',
  799. },
  800. {
  801. path: '/house/raise/add',
  802. name: '新增',
  803. hideInMenu: true,
  804. component: './house/raise/add/index',
  805. },
  806. {
  807. path: '/house/raise/batch',
  808. name: '批量上传',
  809. hideInMenu: true,
  810. component: './house/raise/add/HouseBatchAdd',
  811. },
  812. {
  813. path: '/house/raise/edit',
  814. name: '编辑',
  815. hideInMenu: true,
  816. component: './house/raise/edit/index',
  817. },
  818. ],
  819. },
  820. {
  821. path: '/h5SampleManager',
  822. name: 'H5样例管理',
  823. component: '../layouts/BlankLayout',
  824. routes: [
  825. {
  826. path: '/h5SampleManager/h5Sample/list',
  827. name: 'H5样例',
  828. component: './h5SampleManager/h5Sample/list',
  829. },
  830. {
  831. path: '/h5SampleManager/h5Sample/detail',
  832. name: '详情',
  833. hideInMenu: true,
  834. component: './h5SampleManager/h5Sample/detail',
  835. },
  836. {
  837. path: '/h5SampleManager/h5Sample/add',
  838. name: '提交需求',
  839. hideInMenu: true,
  840. component: './h5SampleManager/h5Sample/add',
  841. },
  842. {
  843. path: '/h5SampleManager/h5Sample/addH5',
  844. name: '创建H5活动',
  845. hideInMenu: true,
  846. component: './h5SampleManager/h5Sample/addH5',
  847. },
  848. {
  849. path: '/h5SampleManager/h5Demand/list',
  850. name: 'H5需求单',
  851. component: './h5SampleManager/h5Demand/list',
  852. },
  853. // {
  854. // path: '/drainageSampleManager/drainageDemand/add',
  855. // name: '新增需求单',
  856. // component: './drainageSampleManager/drainageDemand/add',
  857. // },
  858. {
  859. path: '/h5SampleManager/h5Demand/detail',
  860. name: '详情',
  861. hideInMenu: true,
  862. component: './h5SampleManager/h5Demand/detail',
  863. },
  864. {
  865. path: '/h5SampleManager/h5Demand/edit',
  866. name: '修改需求',
  867. hideInMenu: true,
  868. component: './h5SampleManager/h5Demand/edit',
  869. },
  870. ],
  871. },
  872. {
  873. path: '/eContract',
  874. name: '电子合同',
  875. component: '../layouts/BlankLayout',
  876. routes: [
  877. {
  878. path: '/eContract/template/list',
  879. name: '合同模板',
  880. component: './eContract/template/list',
  881. },
  882. {
  883. path: '/eContract/businessConfig/list',
  884. name: '业务配置',
  885. component: './eContract/businessConfig/list',
  886. },
  887. {
  888. path: '/eContract/businessConfig/add',
  889. name: '新增业务配置',
  890. hideInMenu: true,
  891. component: './eContract/businessConfig/add',
  892. },
  893. {
  894. path: '/eContract/businessConfig/detail',
  895. name: '业务配置详情',
  896. hideInMenu: true,
  897. component: './eContract/businessConfig/detail',
  898. },
  899. {
  900. path: '/eContract/manage/list',
  901. name: '合同管理',
  902. component: './eContract/manage/list',
  903. },
  904. {
  905. path: '/eContract/manage/edit',
  906. name: '查看详情',
  907. hideInMenu: true,
  908. component: './eContract/manage/edit',
  909. },
  910. {
  911. path: '/eContract/template/add',
  912. name: '新增合同模板',
  913. hideInMenu: true,
  914. component: './eContract/template/add',
  915. },
  916. {
  917. path: '/eContract/template/detail',
  918. name: '合同模板详情',
  919. hideInMenu: true,
  920. component: './eContract/template/detail',
  921. }
  922. ],
  923. },
  924. {
  925. path: '/qrcode',
  926. name: '二维码管理',
  927. component: '../layouts/BlankLayout',
  928. routes: [
  929. {
  930. path: '/qrcode/qrcodelist',
  931. name: '二维码列表',
  932. component: './qrcode/qrcodelist/index',
  933. },
  934. {
  935. path: '/qrcode/qrcodelist/add',
  936. name: '新增',
  937. hideInMenu: true,
  938. component: './qrcode/qrcodelist/add',
  939. },
  940. {
  941. path: '/qrcode/qrcodelist/dataRecord',
  942. name: '数据记录',
  943. hideInMenu: true,
  944. component: './qrcode/qrcodelist/dataRecord',
  945. },
  946. ],
  947. },
  948. {
  949. path: '/funds',
  950. name: '资金管理',
  951. component: '../layouts/BlankLayout',
  952. routes: [
  953. {
  954. path: '/funds/accountfunds',
  955. name: '账户资金',
  956. component: './funds/accountfunds/index',
  957. },
  958. // {
  959. // path: '/fund/qrcodelist/add',
  960. // name: '新增',
  961. // hideInMenu: true,
  962. // component: './fund/qrcodelist/add',
  963. // },
  964. {
  965. path: '/funds/financialContact',
  966. name: '财务联系人',
  967. component: './funds/financialContact/index',
  968. },
  969. ],
  970. },
  971. // {
  972. // path: '/miniapp',
  973. // name: '小程序管理',
  974. // component: '../layouts/BlankLayout',
  975. // routes: [
  976. // {
  977. // path: '/miniapp/menuList',
  978. // name: '首页菜单管理',
  979. // component: './miniapp/menuList',
  980. // },
  981. // {
  982. // path: '/miniapp/editIcons',
  983. // name: '首页菜单编辑',
  984. // hideInMenu: true,
  985. // component: './miniapp/editIcons',
  986. // },
  987. // ],
  988. // },
  989. {
  990. name: '403',
  991. path: '/403',
  992. component: './403',
  993. hideInMenu: true,
  994. },
  995. {
  996. component: './404',
  997. },
  998. ],
  999. },
  1000. {
  1001. component: './404',
  1002. },
  1003. ],
  1004. },
  1005. {
  1006. component: './404',
  1007. },
  1008. ];