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
571 B

6 months ago
import request from '@/utils/request'
// 月度报表 月度配件库存管理指标完成情况报表
export default {
// 查询分页列表
listPage: function(data) {
6 months ago
return request({
url: '/reportcenter/v1/MonthFittingsReport/monthFittingsList',
6 months ago
method: 'post',
data: data,
headers: { 'Content-Type': 'application/json' }
6 months ago
})
},
5 months ago
// 查询详情
getDetail: function(data) {
6 months ago
return request({
url: '/reportcenter/v1/MonthFittingsReport/monthFittingsListDetails',
method: 'post',
params: data
6 months ago
})
}
}