1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| 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'
| }
|
| })
| }
|
|