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.

26 lines
646 B

6 months ago
import request from '@/utils/request'
// 月度报表 月度配件库存管理指标完成情况报表
export default {
// 查询分页列表
listPage: function(params) {
return request({
baseURL: "http://127.0.0.1:4523/m1/613533-0-default",
url: '/as/v1/inventoryRate/listPage',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json'
}
})
},
5 months ago
// 查询详情
getDetail: function(params) {
6 months ago
return request({
5 months ago
baseURL: "http://127.0.0.1:4523/m1/613533-0-default",
url: '/as/v1/inventoryRate/getDetail/' + params,
method: 'get',
6 months ago
})
}
}