routes.js 26KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766
  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. authority: ['admin', 'user'],
  21. routes: [
  22. {
  23. path: '/',
  24. redirect: '/welcome',
  25. },
  26. {
  27. path: '/welcome',
  28. name: 'welcome',
  29. component: './welcome',
  30. },
  31. {
  32. path: '/building',
  33. name: '项目管理',
  34. component: '../layouts/BlankLayout',
  35. menuCode: '/building',
  36. routes: [
  37. {
  38. path: '/building/list',
  39. name: '项目列表',
  40. component: './building/List',
  41. menuCode: '/building/list',
  42. },
  43. {
  44. path: '/building/add',
  45. name: '项目维护',
  46. component: './building/Edit',
  47. menuCode: '/building/add',
  48. hideInMenu: true,
  49. },
  50. {
  51. path: '/building/type',
  52. name: '项目类型',
  53. component: './building/type/index',
  54. menuCode: '/building/type',
  55. },
  56. {
  57. path: '/building/type/edi',
  58. name: '项目类型编辑',
  59. hideInMenu: true,
  60. component: './building/type/edi',
  61. menuCode: '/building/type/edi',
  62. },
  63. {
  64. path: '/building/Developers',
  65. name: '品牌开发商',
  66. component: './building/Developers',
  67. menuCode: '/building/Developers',
  68. },
  69. {
  70. path: '/building/Developers/Edit',
  71. name: '品牌开发商编辑',
  72. hideInMenu: true,
  73. component: './building/Developers/Edit',
  74. menuCode: '/building/Developers/Edit',
  75. },
  76. {
  77. path: '/building/log',
  78. name: '项目日志',
  79. component: './building/log',
  80. menuCode: '/building/log',
  81. },
  82. ],
  83. },
  84. {
  85. path: '/customer',
  86. name: '客户管理',
  87. component: '../layouts/BlankLayout',
  88. menuCode: '/customer',
  89. routes: [
  90. {
  91. path: '/customer/customer/list',
  92. name: '客户列表',
  93. component: './customer/Customer/index',
  94. menuCode: '/customer/customer/list',
  95. },
  96. {
  97. path: '/customer/customerlist/privateCustomerDetail',
  98. name: '私客详情',
  99. hideInMenu: true,
  100. component: './customer/Customer/PrivateCustomer/CustomerDetail',
  101. menuCode: '/customer/customerlist/privateCustomerDetail',
  102. },
  103. {
  104. path: '/customer/customer/StatusChange',
  105. name: '状态变更',
  106. hideInMenu: true,
  107. component: './customer/Customer/StatusChange',
  108. menuCode: '/customer/customer/StatusChange',
  109. },
  110. {
  111. path: '/customer/customerlist/publicCustomerDetail',
  112. name: '公客详情',
  113. hideInMenu: true,
  114. component: './customer/Customer/PublicCustomer/publicCustomerDetail',
  115. menuCode: '/customer/customerlist/publicCustomerDetail',
  116. },
  117. {
  118. path: '/customer/recommend/channel',
  119. name: '经纪人报备',
  120. component: './recommend/channel',
  121. menuCode: '/customer/recommend/channel',
  122. },
  123. {
  124. path: '/customer/recommend/channel/audit',
  125. name: '到访确认',
  126. hideInMenu: true,
  127. component: './recommend/channel/audit',
  128. menuCode: '/customer/recommend/channel/audit',
  129. },
  130. {
  131. path: '/customer/recommend/customer',
  132. name: '客户推荐',
  133. component: './recommend/customer',
  134. menuCode: '/customer/recommend/customer',
  135. },
  136. {
  137. path: '/customer/recommend/customer/audit',
  138. name: '客户审核',
  139. hideInMenu: true,
  140. component: './recommend/customer/audit',
  141. menuCode: '/customer/recommend/customer/audit',
  142. },
  143. {
  144. path: '/customer/deal/list',
  145. name: '成交客户',
  146. component: './customer/deal',
  147. menuCode: '/customer/deal/list',
  148. },
  149. ],
  150. },
  151. {
  152. path: '/Live',
  153. name: '视频直播',
  154. component: '../layouts/BlankLayout',
  155. menuCode: '/Live',
  156. routes: [
  157. {
  158. path: '/Live/LiveActivity/List',
  159. name: '直播活动',
  160. component: './Live/LiveActivity/List',
  161. menuCode: '/Live/LiveActivity/List',
  162. },
  163. {
  164. path: '/Live/LiveActivity/Edit',
  165. name: '编辑活动',
  166. hideInMenu: true,
  167. component: './Live/LiveActivity/Edit',
  168. menuCode: '/Live/LiveActivity/Edit',
  169. },
  170. {
  171. path: '/Live/LiveActivity/add',
  172. name: '新增活动',
  173. hideInMenu: true,
  174. component: './Live/LiveActivity/add',
  175. menuCode: '/Live/LiveActivity/add',
  176. },
  177. {
  178. path: '/Live/video/List',
  179. name: '视频',
  180. component: './Live/video/List',
  181. menuCode: '/Live/video/List',
  182. },
  183. {
  184. path: '/Live/video/Edit',
  185. name: '编辑视频',
  186. hideInMenu: true,
  187. component: './Live/video/Edit',
  188. menuCode: '/Live/video/Edit',
  189. },
  190. ],
  191. },
  192. {
  193. path: '/activity',
  194. name: '活动管理',
  195. component: '../layouts/BlankLayout',
  196. menuCode: '/activity',
  197. routes: [
  198. {
  199. path: '/activity/groupRoomActivity',
  200. name: '团房活动',
  201. component: './activity/groupRoomActivity',
  202. menuCode: '/activity/groupRoomActivity',
  203. },
  204. {
  205. path: '/activity/groupRoomActivity/detail',
  206. name: '活动详情',
  207. hideInMenu: true,
  208. component: './activity/groupRoomActivity/detail',
  209. menuCode: '/activity/groupRoomActivity/detail',
  210. },
  211. {
  212. path: '/activity/groupRoomActivity/edit',
  213. name: '编辑活动',
  214. hideInMenu: true,
  215. component: './activity/groupRoomActivity/edit',
  216. menuCode: '/activity/groupRoomActivity/edit',
  217. },
  218. {
  219. path: '/activity/groupRoomActivity/registrationRecord',
  220. name: '报名记录',
  221. hideInMenu: true,
  222. component: './activity/groupRoomActivity/registrationRecord',
  223. menuCode: '/activity/groupRoomActivity/registrationRecord',
  224. },
  225. {
  226. path: '/activity/lookHouseActivity',
  227. name: '一键带看',
  228. component: './activity/lookHouseActivity',
  229. menuCode: '/activity/lookHouseActivity',
  230. },
  231. {
  232. path: '/activity/lookHouseActivity/detail',
  233. name: '活动详情',
  234. hideInMenu: true,
  235. component: './activity/lookHouseActivity/detail',
  236. menuCode: '/activity/lookHouseActivity/detail',
  237. },
  238. {
  239. path: '/activity/lookHouseActivity/edit',
  240. name: '编辑活动',
  241. hideInMenu: true,
  242. component: './activity/lookHouseActivity/edit',
  243. menuCode: '/activity/lookHouseActivity/edit',
  244. },
  245. {
  246. path: '/activity/lookHouseActivity/registrationRecord',
  247. name: '报名记录',
  248. hideInMenu: true,
  249. component: './activity/lookHouseActivity/registrationRecord',
  250. menuCode: '/activity/lookHouseActivity/registrationRecord',
  251. },
  252. {
  253. path: '/activity/SignupActivity',
  254. name: '报名活动',
  255. component: './activity/SignupActivity',
  256. menuCode: '/activity/SignupActivity',
  257. },
  258. {
  259. path: '/activity/SignupActivity/detail',
  260. name: '活动详情',
  261. hideInMenu: true,
  262. component: './activity/SignupActivity/detail',
  263. menuCode: '/activity/SignupActivity/detail',
  264. },
  265. {
  266. path: '/activity/SignupActivity/edit',
  267. name: '编辑活动',
  268. hideInMenu: true,
  269. component: './activity/SignupActivity/edit',
  270. menuCode: '/activity/SignupActivity/edit',
  271. },
  272. {
  273. path: '/activity/SignupActivity/registrationRecord',
  274. name: '报名记录',
  275. hideInMenu: true,
  276. component: './activity/SignupActivity/registrationRecord',
  277. menuCode: '/activity/SignupActivity/registrationRecord',
  278. },
  279. ],
  280. },
  281. {
  282. path: '/news',
  283. name: '资讯管理',
  284. component: '../layouts/BlankLayout',
  285. menuCode: '/news',
  286. routes: [
  287. // {
  288. // path: '/news/type/NewsType',
  289. // name: '资讯类型',
  290. // component: './news/type/NewsType',
  291. // menuCode: '/news/type/NewsType',
  292. // },
  293. // {
  294. // path: '/news/type/editNews',
  295. // name: '编辑资讯类型',
  296. // hideInMenu: true,
  297. // component: './news/type/editNews',
  298. // menuCode: '/news/type/editNews',
  299. // },
  300. {
  301. path: '/news/list/List',
  302. name: '资讯列表',
  303. component: './news/list/List',
  304. menuCode: '/news/list/List',
  305. },
  306. {
  307. path: '/news/list/Edit',
  308. name: '编辑资讯',
  309. hideInMenu: true,
  310. component: './news/list/Edit',
  311. menuCode: '/news/list/Edit',
  312. },
  313. //+购房百科
  314. {
  315. path: '/news/Sellhouse/index',
  316. name: '购房百科',
  317. component: './system/Sellhouse/index',
  318. menuCode: '/news/Sellhouse/index',
  319. },
  320. {
  321. path: '/news/houseTypes/index',
  322. name: '购房百科类型',
  323. component: './system/Sellhouse/houseTypes/index',
  324. menuCode: '/news/houseTypes/index',
  325. },
  326. {
  327. path: '/news/Sellhouse/Edit',
  328. name: '编辑购房百科',
  329. hideInMenu: true,
  330. component: './system/Sellhouse/Edit',
  331. menuCode: '/news/Sellhouse/Edit',
  332. },
  333. {
  334. path: '/news/Sellhouse/houseTypes/Newindex',
  335. name: '编辑购房百科类型',
  336. hideInMenu: true,
  337. component: './system/Sellhouse/houseTypes/Newindex',
  338. menuCode: '/news/Sellhouse/houseTypes/Newindex',
  339. },
  340. ],
  341. },
  342. {
  343. path: '/channel',
  344. name: '渠道管理',
  345. component: '../layouts/BlankLayout',
  346. menuCode: '/channel',
  347. routes: [
  348. {
  349. path: '/channel/Channel/List',
  350. name: '渠道管理',
  351. component: './channel/Channel/List',
  352. menuCode: '/channel/Channel/List',
  353. },
  354. {
  355. path: '/channel/Channel/Edit',
  356. name: '编辑渠道',
  357. hideInMenu: true,
  358. component: './channel/Channel/Edit',
  359. menuCode: '/channel/Channel/Edit',
  360. },
  361. {
  362. path: '/channel/Agent/List',
  363. name: '经纪人',
  364. hideInMenu: true,
  365. component: './channel/Agent/List',
  366. // menuCode: '/channel/Agent/List',
  367. },
  368. {
  369. path: '/channel/brokerList',
  370. name: '经纪人',
  371. hideInMenu: true,
  372. component: './channel/brokerList',
  373. // menuCode: '/channel/brokerList',
  374. },
  375. {
  376. path: '/channel/recommendClients',
  377. name: '渠道推荐',
  378. hideInMenu: true,
  379. component: './channel/recommendClients',
  380. // menuCode: '/channel/recommendClients',
  381. },
  382. // {
  383. // path: '/channel/InviteClients',
  384. // name: '邀请经纪人',
  385. // hideInMenu: true,
  386. // component: './channel/InviteClients',
  387. // },
  388. {
  389. path: '/channel/independentList',
  390. name: '经纪人',
  391. component: './channel/independentList/index',
  392. menuCode: '/channel/independentList',
  393. },
  394. // {
  395. // path: '/channel/newCustomer',
  396. // name: '引进注册用户',
  397. // hideInMenu: true,
  398. // component: './channel/newCustomer',
  399. // },
  400. // {
  401. // path: '/channel/newCustomer/dataRecord',
  402. // name: '注册用户',
  403. // hideInMenu: true,
  404. // component: './channel/newCustomer/dataRecord',
  405. // },
  406. // {
  407. // path: '/channel/newCustomer/visitNum',
  408. // name: '访问次数',
  409. // hideInMenu: true,
  410. // component: './channel/newCustomer/visitNum',
  411. // },
  412. // {
  413. // path: '/channel/newCustomer/personNum',
  414. // name: '访问人数',
  415. // hideInMenu: true,
  416. // component: './channel/newCustomer/personNum',
  417. // },
  418. ],
  419. },
  420. {
  421. //帮我找房页面+
  422. path: '/findRoom',
  423. name: '需求反馈',
  424. component: '../layouts/BlankLayout',
  425. menuCode: '/findRoom',
  426. routes: [
  427. {
  428. path: '/findRoom/buyRoom',
  429. name: '找房需求',
  430. component: './findRoom/buyRoom',
  431. menuCode: '/findRoom/buyRoom',
  432. },
  433. {
  434. path: '/findRoom/buyRoom/audit',
  435. name: '回访确认',
  436. hideInMenu: true,
  437. component: './findRoom/buyRoom/audit',
  438. menuCode: '/findRoom/buyRoom/audit',
  439. },
  440. {
  441. path: '/findRoom/rent',
  442. name: '租房需求',
  443. component: './findRoom/rent',
  444. menuCode: '/findRoom/rent',
  445. },
  446. {
  447. path: '/findRoom/rent/audit',
  448. name: '回访确认',
  449. hideInMenu: true,
  450. component: './findRoom/rent/audit',
  451. menuCode: '/findRoom/rent/audit',
  452. },
  453. {
  454. path: '/findRoom/overseas',
  455. name: '海外需求',
  456. component: './findRoom/overseas',
  457. menuCode: '/findRoom/overseas',
  458. },
  459. {
  460. path: '/findRoom/overseas/audit',
  461. name: '回访确认',
  462. hideInMenu: true,
  463. component: './findRoom/overseas/audit',
  464. menuCode: '/findRoom/overseas/audit',
  465. },
  466. {
  467. path: '/findRoom/addedValueService',
  468. name: '增值服务',
  469. component: './findRoom/addedValueService',
  470. menuCode: '/findRoom/addedValueService',
  471. },
  472. {
  473. path: '/findRoom/addedValueService/audit',
  474. name: '回访确认',
  475. hideInMenu: true,
  476. component: './findRoom/addedValueService/audit',
  477. menuCode: '/findRoom/addedValueService/audit',
  478. },
  479. {
  480. path: '/findRoom/setting',
  481. name: '回访设置',
  482. component: './findRoom/setting',
  483. menuCode: '/findRoom/setting',
  484. },
  485. {
  486. path: '/findRoom/messageList',
  487. name: '客户留言',
  488. component: './system/messageList',
  489. menuCode: '/findRoom/messageList',
  490. },
  491. ],
  492. },
  493. {
  494. //我的课堂+
  495. path: '/course',
  496. name: '我的课堂',
  497. component: '../layouts/BlankLayout',
  498. menuCode: '/course',
  499. routes: [
  500. {
  501. path: '/course/List',
  502. name: '课程管理',
  503. component: './course/List',
  504. menuCode: '/course/List',
  505. },
  506. {
  507. path: '/course/Edit',
  508. name: '课程编辑',
  509. hideInMenu: true,
  510. component: './course/Edit',
  511. menuCode: '/course/Edit',
  512. },
  513. ],
  514. },
  515. {
  516. path: '/carouselFigure',
  517. name: '资源位管理',
  518. component: '../layouts/BlankLayout',
  519. menuCode: '/carouselFigure',
  520. routes: [
  521. {
  522. path: '/carouselFigure/carouselFigureList',
  523. name: '轮播图',
  524. component: './carouselFigure/carouselFigureList',
  525. menuCode: '/carouselFigure/carouselFigureList',
  526. },
  527. {
  528. path: '/carouselFigure/editCarousel',
  529. name: '轮播图编辑',
  530. hideInMenu: true,
  531. component: './carouselFigure/editCarousel',
  532. menuCode: '/carouselFigure/editCarousel',
  533. },
  534. {
  535. path: '/carouselFigure/advertisingList',
  536. name: '开屏广告',
  537. component: './carouselFigure/advertisingList',
  538. menuCode: '/carouselFigure/advertisingList',
  539. },
  540. {
  541. path: '/carouselFigure/editAdvertising',
  542. name: '开屏广告编辑',
  543. hideInMenu: true,
  544. component: './carouselFigure/editAdvertising',
  545. menuCode: '/carouselFigure/editAdvertising',
  546. },
  547. ],
  548. },
  549. {
  550. path: '/broker',
  551. name: '全民经纪人',
  552. component: '../layouts/BlankLayout',
  553. menuCode: '/broker',
  554. routes: [
  555. {
  556. path: '/broker/announcement',
  557. name: '通知公告',
  558. component: './broker/announcement/index',
  559. menuCode: '/broker/announcement',
  560. },
  561. {
  562. path: '/broker/announcement/edit',
  563. name: '通知公告维护',
  564. hideInMenu: true,
  565. component: './broker/announcement/Edit/index',
  566. menuCode: '/broker/announcement/edit',
  567. },
  568. {
  569. path: '/broker/list',
  570. name: '经纪人管理',
  571. component: './broker/list/index',
  572. menuCode: '/broker/list',
  573. },
  574. {
  575. path: '/broker/agentRule',
  576. name: '经纪人规则',
  577. component: './broker/agentRule/index',
  578. menuCode: '/broker/agentRule',
  579. },
  580. {
  581. path: '/broker/customer/list',
  582. name: '经纪人客户列表',
  583. component: './broker/customer/index',
  584. hideInMenu: true,
  585. },
  586. ],
  587. },
  588. {
  589. path: '/system',
  590. name: '系统管理',
  591. component: '../layouts/BlankLayout',
  592. menuCode: '/system',
  593. routes: [
  594. {
  595. path: '/system/intention',
  596. name: '意向值',
  597. component: './system/intention',
  598. menuCode: '/system/intention',
  599. },
  600. {
  601. path: '/system/Staff/List',
  602. name: '员工列表',
  603. component: './staff/Staff/List',
  604. menuCode: '/system/Staff/List',
  605. },
  606. {
  607. path: '/system/Staff/Edit',
  608. name: '编辑员工',
  609. hideInMenu: true,
  610. component: './staff/Staff/Edit',
  611. menuCode: '/system/Staff/Edit',
  612. },
  613. {
  614. path: '/system/Role/List',
  615. name: '角色管理',
  616. component: './staff/Role/List',
  617. menuCode: '/system/Role/List',
  618. },
  619. {
  620. path: '/system/Role/Edit',
  621. name: '编辑角色',
  622. hideInMenu: true,
  623. component: './staff/Role/Edit',
  624. menuCode: '/system/Role/Edit',
  625. },
  626. {
  627. path: '/system/Organization/List',
  628. name: '组织架构',
  629. component: './staff/Organization',
  630. menuCode: '/system/Organization/List',
  631. },
  632. // {
  633. // path: '/system/customImg/list',
  634. // name: '首页分享',
  635. // component: './carouselFigure/customImg/list',
  636. // menuCode: '/carouselFigure/customImg/list',
  637. // },
  638. {
  639. path: '/system/customImg/edit',
  640. name: '首页分享',
  641. // hideInMenu: true,
  642. component: './carouselFigure/customImg/edit',
  643. menuCode: '/carouselFigure/customImg/edit',
  644. },
  645. {
  646. path: '/system/city',
  647. name: '城市管理',
  648. // hideInMenu: true,
  649. component: './system/city',
  650. menuCode: '/system/city',
  651. },
  652. ],
  653. },
  654. {
  655. path: '/statistics',
  656. name: '数据统计',
  657. component: '../layouts/BlankLayout',
  658. menuCode: '/statistics',
  659. // hideInMenu: true,
  660. routes: [
  661. {
  662. path: '/statistics/dataReport',
  663. name: '数据报表',
  664. component: './statistics/dataReport',
  665. menuCode: '/statistics/dataReport',
  666. },
  667. {
  668. path: '/statistics/dataReport/newAdd',
  669. name: '新增用户',
  670. hideInMenu: true,
  671. component: './statistics/dataReport/newAdd',
  672. menuCode: '/statistics/dataReport',
  673. },
  674. {
  675. path: '/statistics/activity',
  676. name: '活动统计',
  677. component: './statistics/activity',
  678. menuCode: '/statistics/activity',
  679. },
  680. {
  681. path: '/statistics/activity/sharePersonNum',
  682. name: '分享人数',
  683. hideInMenu: true,
  684. component: './statistics/activity/sharePersonNum',
  685. menuCode: '/statistics/activity',
  686. },
  687. {
  688. path: '/statistics/activity/shareNum',
  689. name: '分享次数',
  690. hideInMenu: true,
  691. component: './statistics/activity/shareNum',
  692. menuCode: '/statistics/activity',
  693. },
  694. {
  695. path: '/statistics/activity/visitPersonNum',
  696. name: '访问人数',
  697. hideInMenu: true,
  698. component: './statistics/activity/visitPersonNum',
  699. menuCode: '/statistics/activity',
  700. },
  701. {
  702. path: '/statistics/activity/visitNum',
  703. name: '访问次数',
  704. hideInMenu: true,
  705. component: './statistics/activity/visitNum',
  706. menuCode: '/statistics/activity',
  707. },
  708. {
  709. path: '/statistics/activity/addRegistNum',
  710. name: '新增注册用户',
  711. hideInMenu: true,
  712. component: './statistics/activity/addRegistNum',
  713. menuCode: '/statistics/activity',
  714. },
  715. {
  716. path: '/statistics/activity/detail',
  717. name: '查看',
  718. hideInMenu: true,
  719. component: './statistics/activity/detail',
  720. menuCode: '/statistics/activity',
  721. },
  722. {
  723. path: '/statistics/building',
  724. name: '项目统计',
  725. component: './statistics/building',
  726. menuCode: '/statistics/building',
  727. },
  728. {
  729. path: '/statistics/building/detail',
  730. name: '项目统计',
  731. hideInMenu: true,
  732. component: './statistics/building/detail',
  733. menuCode: '/statistics/building',
  734. },
  735. {
  736. path: '/statistics/consultant',
  737. name: 'KPI',
  738. component: './statistics/consultant',
  739. menuCode: '/statistics/consultant',
  740. },
  741. ],
  742. },
  743. {
  744. component: './404',
  745. },
  746. ],
  747. },
  748. {
  749. component: './404',
  750. },
  751. ],
  752. },
  753. {
  754. component: './404',
  755. },
  756. ];