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