1234567891011121314151617181920212223242526272829303132333435 |
- import { httpApi } from '../../../request/httpApi'
- //月报汇总分页查询
- export const getMonthPage = (form, msg = true) => httpApi({
- url: '/api/blade-business/trial/summary/monthly/page',
- method: 'post',
- data: form,
- }, msg)
- //月报汇总编辑备注
- export const editRemark = (form, msg = true) => httpApi({
- url: '/api/blade-business/trial/summary/monthly/edit',
- method: 'post',
- data: form,
- }, msg)
- //月报汇总下载
- export const downloadMonth = (form, msg = true) => httpApi({
- url: '/api/blade-business/trial/summary/monthly/download',
- method: 'post',
- data: form,
- }, msg)
- //月报汇总打印
- export const printMonth = (form, msg = true) => httpApi({
- url: '/api/blade-business/trial/summary/monthly/print',
- method: 'post',
- data: form,
- }, msg)
|