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.

21 lines
397 B
JavaScript

2 years ago
import request from '@/utils/request'
// 来料质量报表
export function getIncomeTableList(query) {
return request({
url: '/quality/staticTable/getIncomeTableList',
method: 'get',
params: query
});
}
// 生产过程质量报表
2 years ago
export function getProduceChartData(query) {
2 years ago
return request({
2 years ago
url: '/quality/staticTable/getProduceChartData',
2 years ago
method: 'get',
params: query
});
}
2 years ago