routes.js 40KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181
  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. hideInMenu: true,
  575. },
  576. {
  577. path: 'proprietor/detail',
  578. name: '业主详情',
  579. component: './property/proprietor/Detail',
  580. hideInMenu: true,
  581. },
  582. {
  583. path: 'proprietor/audit',
  584. name: '资料审核',
  585. component: './property/proprietor/Audit',
  586. },
  587. {
  588. path: 'proprietor/batch',
  589. name: '业主导入',
  590. component: './property/proprietor/BatchImport',
  591. hideInMenu: true,
  592. },
  593. {
  594. path: 'notice',
  595. name: '公告管理',
  596. component: './property/notice'
  597. },
  598. {
  599. path: 'notice/edit',
  600. name: '公告管理详情',
  601. component: './property/notice/Edit',
  602. hideInMenu: true,
  603. },
  604. {
  605. path: 'news',
  606. name: '服务内容',
  607. component: './property/news'
  608. },
  609. {
  610. path: 'news/edit',
  611. name: '服务内容详情',
  612. component: './property/news/Edit',
  613. hideInMenu: true,
  614. },
  615. {
  616. path: 'bill/management',
  617. name: '收费组管理',
  618. component: './property/bill/list',
  619. },
  620. {
  621. path: 'bill/management/add',
  622. name: '新增收费组',
  623. component: './property/bill/edit',
  624. hideInMenu: true,
  625. },
  626. {
  627. path: 'bill/management/info',
  628. name: '收费组详情',
  629. component: './property/bill/info',
  630. hideInMenu: true,
  631. },
  632. {
  633. path: 'bill/management/info/add',
  634. name: '新增收费',
  635. component: './property/bill/info/Add',
  636. hideInMenu: true,
  637. },
  638. {
  639. path: 'bill/order',
  640. name: '订单管理',
  641. component: './property/bill/order',
  642. },
  643. {
  644. path: 'bill/order/info',
  645. name: '订单信息',
  646. component: './property/bill/order/Info',
  647. hideInMenu: true,
  648. },
  649. {
  650. path: 'bill/ticket',
  651. name: '工单管理',
  652. component: './property/ticket',
  653. },
  654. {
  655. path: 'bill/ticket/detail',
  656. name: '工单详情',
  657. component: './property/ticket/Detail',
  658. hideInMenu: true,
  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. ];