liuying
2024-10-17 70fea04ccbf03d14568c6af605102a161aa9c58b
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
import { axios } from '@/utils/request'
import qs from 'qs'
/**
 * 查询质量数据查询
 *
 * @author lpz
 */
export function QualityDataInfoPage (parameter) {
  return axios({
    url: `/QualityDataInfo/page?${qs.stringify(parameter)}`,
    method: 'get'
    // params: parameter
  })
}
 
/**
 * 获取设备列表
 */
export function getEquipmentList(params) {
  return axios({
    url: '/equipmentbaseinfo/GetSelectEquipmentName',
    method: 'get',
    params
  })
}
 
// 导出质量数据
export function exportQuantityToExcel(params) {
  return axios({
    url: '/qualitydatainfo/toExcel',
    method: 'get',
    responseType: 'blob',
    params
  })
}