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
22 lines
1.0 KiB
import { createAPI } from "@/utils/httpRequest.js";
|
|
import http from "@/utils/httpRequest.js";
|
|
|
|
export const getAbnormalCodeList = data => createAPI(`abnormal/getAbnormalCodeList`,'post',data)
|
|
export const getShopOrderData = data => createAPI(`abnormal/getShopOrderData`,'post',data)
|
|
export const getAbnormalFeedBackList = data => createAPI(`abnormal/getAbnormalFeedBackList`,'post',data)
|
|
|
|
export const saveAbnormalData= data => createAPI(`abnormal/saveAbnormalData`,'post',data)
|
|
export const updateAbnormalData= data => createAPI(`abnormal/updateAbnormalData`,'post',data)
|
|
export const saveAbnormalDetail= data => createAPI(`abnormal/saveAbnormalDetail`,'post',data)
|
|
|
|
export const closeFeedBack= data => createAPI(`abnormal/closeFeedBack`,'post',data)
|
|
|
|
export const openFeedBack= data => createAPI(`abnormal/openFeedBack`,'post',data)
|
|
|
|
// 下载责任认定书(docx)- rqrq
|
|
export const printResponsibilityBook = data => http({
|
|
url: http.adornUrl('/abnormal/printResponsibilityBook'),
|
|
method: 'post',
|
|
responseType: 'blob',
|
|
data: http.adornData(data, false)
|
|
})
|