router.js 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. 'use strict';
  2. /**
  3. * @param {Egg.Application} app - egg application
  4. */
  5. module.exports = app => {
  6. const { router, controller } = app;
  7. router.get('/', controller.home.index);
  8. // 轮播图设置
  9. router.resources(
  10. 'lunbo',
  11. '/api/huanqi/lunbo',
  12. controller.lunbo
  13. ); // index、create、show、destroy
  14. // 企业信息表设置
  15. router.resources(
  16. 'company',
  17. '/api/huanqi/company',
  18. controller.company
  19. ); // index、create、show、destroy
  20. // 产品表设置
  21. router.resources(
  22. 'product',
  23. '/api/huanqi/product',
  24. controller.product
  25. ); // index、create、show、destroy
  26. // 案例应用表设置
  27. router.resources(
  28. 'caseapply',
  29. '/api/huanqi/caseapply',
  30. controller.caseapply
  31. ); // index、create、show、destroy
  32. // 热点资讯表设置
  33. router.resources(
  34. 'hotspot',
  35. '/api/huanqi/hotspot',
  36. controller.hotspot
  37. ); // index、create、show、destroy
  38. // 宣传视频表设置
  39. router.resources(
  40. 'video',
  41. '/api/huanqi/video',
  42. controller.video
  43. ); // index、create、show、destroy
  44. // 友情链接表设置
  45. router.resources(
  46. 'links',
  47. '/api/huanqi/links',
  48. controller.links
  49. ); // index、create、show、destroy
  50. // 企业信息表设置
  51. router.resources(
  52. 'business',
  53. '/api/huanqi/business',
  54. controller.business
  55. ); // index、create、show、destroy
  56. };