routes.js 38KB

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