routes.js 40KB

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