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
| })
| }
|
|