'use strict'; const _ = require('lodash'); module.exports = options => { return async function shop(ctx, next) { await next(); let body = ctx.response.body; body = await ctx.service.shop.getAdmin(body); ctx.response.body = body; }; };