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.
29 lines
635 B
29 lines
635 B
4 months ago
|
import request from '@/axios';
|
||
|
/** 报表列表 */
|
||
|
export const postDeptIncomingPage = params => {
|
||
|
return request({
|
||
|
url: '/api/logpm-report/reportIncoming/deptIncomingPage',
|
||
|
method: 'get',
|
||
|
params,
|
||
|
});
|
||
|
};
|
||
|
|
||
|
/** 查询事业线 */
|
||
|
export const postFindbusinessLine = () => {
|
||
|
return request({
|
||
|
url: '/api/logpm-basicdata/warehouse/findBusunessLineList',
|
||
|
method: 'get',
|
||
|
params: {},
|
||
|
});
|
||
|
};
|
||
|
|
||
|
/** 报表导出 */
|
||
|
export const postDeptIncomingExport = params => {
|
||
|
return request({
|
||
|
url: '/api/logpm-report/reportIncoming/deptIncomingExport',
|
||
|
method: 'get',
|
||
|
params,
|
||
|
responseType: 'blob',
|
||
|
});
|
||
|
};
|