month.js 811 B

1234567891011121314151617181920212223242526272829303132333435
  1. import { httpApi } from '../../../request/httpApi'
  2. //月报汇总分页查询
  3. export const getMonthPage = (form, msg = true) => httpApi({
  4. url: '/api/blade-business/trial/summary/monthly/page',
  5. method: 'post',
  6. data: form,
  7. }, msg)
  8. //月报汇总编辑备注
  9. export const editRemark = (form, msg = true) => httpApi({
  10. url: '/api/blade-business/trial/summary/monthly/edit',
  11. method: 'post',
  12. data: form,
  13. }, msg)
  14. //月报汇总下载
  15. export const downloadMonth = (form, msg = true) => httpApi({
  16. url: '/api/blade-business/trial/summary/monthly/download',
  17. method: 'post',
  18. data: form,
  19. }, msg)
  20. //月报汇总打印
  21. export const printMonth = (form, msg = true) => httpApi({
  22. url: '/api/blade-business/trial/summary/monthly/print',
  23. method: 'post',
  24. data: form,
  25. }, msg)