'use strict'; const fs = require('fs'); const moment = require('moment'); //业绩报表相关 async function getReceivedDetail(ctx) { let rslt = null; try { ctx.status = 200 ctx.body = rslt } catch (error) { ctx.fs.logger.error(`path:${ctx.path},error:${error}`) ctx.status = 400; ctx.body = { name: 'FindAllError', message: '获取失败' } } } module.exports = { getReceivedDetail }