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
571 B
21 lines
571 B
import request from '@/utils/request'
|
|
// 月度报表 月度配件库存管理指标完成情况报表
|
|
export default {
|
|
// 查询分页列表
|
|
listPage: function(data) {
|
|
return request({
|
|
url: '/reportcenter/v1/MonthFittingsReport/monthFittingsList',
|
|
method: 'post',
|
|
data: data,
|
|
headers: { 'Content-Type': 'application/json' }
|
|
})
|
|
},
|
|
// 查询详情
|
|
getDetail: function(data) {
|
|
return request({
|
|
url: '/reportcenter/v1/MonthFittingsReport/monthFittingsListDetails',
|
|
method: 'post',
|
|
params: data
|
|
})
|
|
}
|
|
}
|
|
|