routes.js 40KB

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