spring
2025-04-27 41c9b2fa8cef5f45c23d00d33680764b48dfc3cc
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/***
 * @Author licp lichunping@guanfang.com.cn
 * @Date 2024-03-07 09:34:46
 * @LastEditors licp lichunping@guanfang.com.cn
 * @LastEditTime 2024-03-07 15:26:05
 * @FilePath \mes-ocea-before\src\api\quality\Packaging_ledger.js
 * @Description 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
 */
import request from '@/router/axios'
 
export function pagedata(query) {
  return request({
    url: '/mes/qualityPackageBox/page',
    method: 'get',
    params: query
  })
}
 
export function dataadd(query) {
    return request({
      url: '/mes/qualityPackageBoxDetail/selProduct',
      method: 'get',
      params: query
    })
}
 
export function list(query) {
    return request({
      url: '/mes/qualityPackageBoxDetail/list',
      method: 'get',
      params: query
    })
}
 
export function selById(query) {
  return request({
    url: '/mes/qualityPackageBox/selById',
    method: 'get',
    params: query
  })
}
export function customerpage(query) {
    return request({
      url: '/mes/customer/page',
      method: 'get',
      params: query
    })
}
 
export function pagedataadd(obj) {
    return request({
      url: '/mes/qualityPackageBox/add',
      method: 'post',
      data: obj
    })
}
 
 
export function saveList(obj) {
    return request({
      url: '/mes/qualityPackageBoxDetail/saveList',
      method: 'post',
      data: obj
    })
}
export function dropById(query) {
    return request({
      url: '/mes/qualityPackageBox/dropById',
      method: 'get',
      params: query
    })
}
 
 
export function deledata(query) {
    return request({
      url: '/mes/qualityPackageBoxDetail/dropById',
      method: 'get',
      params: query
    })
}
 
export function sAuditstatus(obj) {
  return request({
    url: '/mes/packageInspect/add',
    method: 'post',
    data: obj
  })
}
 
export function qualityPackageBoxDetail(query) {
    return request({
      url: '/mes/qualityPackageBoxDetail/check',
      method: 'post',
      params: query
    })
}
 
export function qualityPackageBox(query) {
    return request({
      url: '/mes/qualityPackageBox/packageList',
      method: 'get',
      params: query,
      responseType: 'blob'
    })
}