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.
21 lines
395 B
21 lines
395 B
3 months ago
|
import request from '@/axios';
|
||
|
// 列表
|
||
|
export const $_Maininetrain = data => {
|
||
|
return request({
|
||
|
url: '/logpm-statisticsdata/trunklineCarCost/page',
|
||
|
method: 'post',
|
||
|
data,
|
||
|
});
|
||
|
};
|
||
|
|
||
|
// 导出
|
||
|
export const $_Maininetrainexport = data => {
|
||
|
return request({
|
||
|
url: '/logpm-statisticsdata/trunklineCarCost/export',
|
||
|
method: 'post',
|
||
|
data,
|
||
|
responseType: 'blob',
|
||
|
});
|
||
|
};
|
||
|
|