masterEPaymentSigning.js 516 B

12345678910111213141516171819202122232425
  1. import request, { postBlob } from '@/utils/request'
  2. export function workerElecConfirmList(data) {
  3. return request({
  4. url: `/worker/elec/confirm/list?moduleId=${data.moduleId}`,
  5. method: 'post',
  6. data
  7. })
  8. }
  9. export function workerElecConfirmListExport(data, name) {
  10. return postBlob({
  11. url: '/worker/elec/confirm/list/export',
  12. data,
  13. name
  14. })
  15. }
  16. export function workerElecConfirmDetail(params) {
  17. return request({
  18. url: '/worker/elec/confirm/detail',
  19. method: 'post',
  20. params
  21. })
  22. }