You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
671 B
JavaScript

import request from '@/utils/request'
// 查询unitPrice列表
export function listUnitPriceReport(query) {
return request({
url: '/mes/unitPriceReport/list',
method: 'get',
params: query
});
}
// export function getReport(id) {
// return request({
// url: '/mes/unitPriceReport/' + id,
// method: 'get'
// });
// }
// 查询【计件工资】详细
export function getReport(id) {
return request({
url: '/mes/unitPriceReport/' + id,
method: 'get'
});
}
// 修改计件工资统计
export function updateUnitPriceReport(data) {
return request({
url: '/mes/unitPriceReport',
method: 'put',
data: data
});
}