const { Controller } = require('egg'); class ChanpinController extends Controller { async index() { const { ctx } = this; ctx.body = await ctx.service.chanpin.index(ctx.request.body) } } module.exports = ChanpinController;