zouyu
2023-11-17 550b1fc6a640d09b93d2115799b5871634524ef1
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
import request from '@/router/axios'
 
export function fetchList(query) {
  return request({
    url: '/mes/ifsLog/page',
    method: 'get',
    params: query
  })
}
 
export function executeCaches(id) {
  return request({
    url: '/mes/productMainIfsReport/executeCaches',
    method: 'post'
  })
}
 
export function executeCachesById(id) {
  return request({
    url: '/mes/productMainIfsReport/executeCachesById/' + id,
    method: 'get'
  })
}
// 导出
export function ifsLogExport(query) {
  return request({
    url: '/mes/ifsLog/export',
    method: 'get',
    responseType: 'blob',
    params: query
  })
}