1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// 样品进度报表接口
import request from '@/utils/request'
 
// 分页查询样品进度
export function pageSampleProgress(query) {
  return request({
    url: '/report/sampleProgress/page',
    method: 'get',
    params: query
  })
}
 
// 查询样品进度统计
export function getStatistics(query) {
  return request({
    url: '/report/sampleProgress/statistics',
    method: 'get',
    params: query
  })
}
 
// 导出样品进度报表
export function exportSampleProgress(query) {
  return request({
    url: '/report/sampleProgress/export',
    method: 'get',
    params: query,
    responseType: 'blob'
  })
}
 
// 查询进度可视化数据
export function getChartData(query) {
  return request({
    url: '/report/sampleProgress/chart',
    method: 'get',
    params: query
  })
}