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.
56 lines
1.2 KiB
56 lines
1.2 KiB
import request from '@/axios'; |
|
/** 报表列表 */ |
|
export const postDeptIncomingPage = data => { |
|
return request({ |
|
url: '/api/logpm-report/reportIncoming/deptIncomingPage', |
|
method: 'post', |
|
data, |
|
}); |
|
}; |
|
|
|
/** 查询事业线 */ |
|
export const postFindbusinessLine = () => { |
|
return request({ |
|
url: '/api/logpm-basicdata/warehouse/findBusunessLineList', |
|
method: 'get', |
|
params: {}, |
|
}); |
|
}; |
|
|
|
/** 报表导出 */ |
|
export const postDeptIncomingExport = data => { |
|
return request({ |
|
url: '/api/logpm-report/reportIncoming/deptIncomingExport', |
|
method: 'post', |
|
data, |
|
responseType: 'blob', |
|
}); |
|
}; |
|
|
|
/** 详情列表 */ |
|
export const postIncomingDetailPage = data => { |
|
return request({ |
|
url: '/api/logpm-report/reportIncoming/incomingDetailPage', |
|
method: 'post', |
|
data, |
|
}); |
|
}; |
|
|
|
/** 详情导出 */ |
|
export const postIncomingDetailExport = data => { |
|
return request({ |
|
url: '/api/logpm-report/reportIncoming/incomingDetailExport', |
|
method: 'post', |
|
data, |
|
responseType: 'blob', |
|
}); |
|
}; |
|
|
|
/** 详情导出 */ |
|
export const postDeptIncomingPageNew = data => { |
|
return request({ |
|
url: '/api/logpm-report/reportIncoming/deptIncomingPageNew', |
|
method: 'post', |
|
data, |
|
}); |
|
};
|
|
|