shop.js 255 B

12345678910
  1. 'use strict';
  2. const _ = require('lodash');
  3. module.exports = options => {
  4. return async function shop(ctx, next) {
  5. await next();
  6. let body = ctx.response.body;
  7. body = await ctx.service.shop.getAdmin(body);
  8. ctx.response.body = body;
  9. };
  10. };