赫艾前端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
1.0 KiB

4 years ago
3 weeks ago
4 years ago
2 years ago
4 years ago
4 years ago
3 weeks ago
  1. import { createAPI } from "@/utils/httpRequest.js";
  2. import http from "@/utils/httpRequest.js";
  3. export const getAbnormalCodeList = data => createAPI(`abnormal/getAbnormalCodeList`,'post',data)
  4. export const getShopOrderData = data => createAPI(`abnormal/getShopOrderData`,'post',data)
  5. export const getAbnormalFeedBackList = data => createAPI(`abnormal/getAbnormalFeedBackList`,'post',data)
  6. export const saveAbnormalData= data => createAPI(`abnormal/saveAbnormalData`,'post',data)
  7. export const updateAbnormalData= data => createAPI(`abnormal/updateAbnormalData`,'post',data)
  8. export const saveAbnormalDetail= data => createAPI(`abnormal/saveAbnormalDetail`,'post',data)
  9. export const closeFeedBack= data => createAPI(`abnormal/closeFeedBack`,'post',data)
  10. export const openFeedBack= data => createAPI(`abnormal/openFeedBack`,'post',data)
  11. // 下载责任认定书(docx)- rqrq
  12. export const printResponsibilityBook = data => http({
  13. url: http.adornUrl('/abnormal/printResponsibilityBook'),
  14. method: 'post',
  15. responseType: 'blob',
  16. data: http.adornData(data, false)
  17. })