achieve_apply_expert.js 488 B

123456789101112
  1. 'use strict';
  2. module.exports = app => {
  3. const { router, controller } = app;
  4. const profix = '/api/achieve/';
  5. const vision = 'v0';
  6. const target = 'achieveApplyExpert';
  7. router.get(target, `${profix}${vision}/${target}/getWork/:expert_id`, controller[target].getWork);
  8. router.resources(target, `${profix}${vision}/${target}`, controller[target]); // index、create、show、destroy
  9. router.post(target, `${profix}${vision}/${target}/update/:id`, controller[target].update);
  10. };