You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
373 B

9 months ago
/**
* @param {Egg.Application} app - egg application
*/
module.exports = app => {
const { router, controller } = app;
router.post('/api/userInfo', controller.user.index);
router.post('/api/chanpinInfo', controller.chanpin.index);
router.post('/api/dingdanInfo', controller.dingdan.index);
router.post('/api/exportDingdanInfo', controller.exportData.index);
};