router.js 1.2 KB

1234567891011121314151617181920212223242526272829303132
  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('lunbo', '/api/huanqi/lunbo', controller.lunbo); // index、create、show、destroy
  10. // 企业信息表设置
  11. router.resources('company', '/api/huanqi/company', controller.company); // index、create、show、destroy
  12. // 产品表设置
  13. router.resources('product', '/api/huanqi/product', controller.product); // index、create、show、destroy
  14. // 案例应用表设置
  15. router.resources('caseapply', '/api/huanqi/caseapply', controller.caseapply); // index、create、show、destroy
  16. // 热点资讯表设置
  17. router.resources('hotspot', '/api/huanqi/hotspot', controller.hotspot); // index、create、show、destroy
  18. // 宣传视频表设置
  19. router.resources('video', '/api/huanqi/video', controller.video); // index、create、show、destroy
  20. // 友情链接表设置
  21. router.resources('links', '/api/huanqi/links', controller.links); // index、create、show、destroy
  22. router.resources('business', '/api/huanqi/business', controller.business); // index、create、show、destroy
  23. };