import { httpPOST } from '../common/httpFetch' /** * @description 导出列表查询接口 * @param { string } grade 所选年级 * @param { string } class 所选班级 * @param { string } selectTime 所选年月 */ export const getExportList = body => { return httpPOST('data/api-a/att/morequery', { body, header: { 'Content-Type': 'application/x-www-form-urlencoded' } }) }