春风项目四线(合箱线、总装线)
yyt
6 天以前 dd44823b3c6cc003de21ea023cea7ea8d85a873c
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
import request from '@/utils/request'
 
// 查询条码采集列表
export function listTileMatchCollection(query) {
  return request({
    url: '/da/tileMatchCollection/list',
    method: 'get',
    params: query
  })
}
 
// 查询条码采集详细
export function getTileMatchCollection(id) {
  return request({
    url: '/da/tileMatchCollection/' + id,
    method: 'get'
  })
}
 
// 新增条码采集
export function addTileMatchCollection(data) {
  return request({
    url: '/da/tileMatchCollection',
    method: 'post',
    data: data
  })
}
 
// 修改条码采集
export function updateTileMatchCollection(data) {
  return request({
    url: '/da/tileMatchCollection',
    method: 'put',
    data: data
  })
}
 
// 删除条码采集
export function delTileMatchCollection(id) {
  return request({
    url: '/da/tileMatchCollection/' + id,
    method: 'delete'
  })
}