routes.js 41KB

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