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.

29 lines
857 B
TypeScript

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

import request from '@/utils/request';
import { AxiosPromise } from 'axios';
import { QcUnqualifiedReviewVO, QcUnqualifiedReviewForm, QcUnqualifiedReviewQuery, CompleteTaskRequest } from '@/api/qms/qcUnqualifiedReview/types';
export const getWeeklyTestReport = (params: { startTime: string, endTime: string }) => {
return request({
url: '/qms/report/weeklyTestReport',
method: 'get',
params
});
};
export const getDefectAnalysisReport = (params: { startTime: string, endTime: string }) => {
return request({
url: '/qms/report/defectAnalysisReport',
method: 'get',
params
});
};
// 新增获取进料检验效率IQC报表
export const getIncomingInspectionEfficiency = (params: { startTime: string, endTime: string }) => {
return request({
url: '/qms/report/incoming',
method: 'get',
params
});
};