春风项目四线(合箱线、总装线)
wujian
2024-10-23 2c65c31aceb16c1d06c692266e3fb555ecafdfb5
提交 | 用户 | 时间
dd4482 1 import request from '@/utils/request'
Y 2
3 // 查询条码采集列表
4 export function listTileMatchCollection(query) {
5   return request({
6     url: '/da/tileMatchCollection/list',
7     method: 'get',
8     params: query
9   })
10 }
11
12 // 查询条码采集详细
13 export function getTileMatchCollection(id) {
14   return request({
15     url: '/da/tileMatchCollection/' + id,
16     method: 'get'
17   })
18 }
19
20 // 新增条码采集
21 export function addTileMatchCollection(data) {
22   return request({
23     url: '/da/tileMatchCollection',
24     method: 'post',
25     data: data
26   })
27 }
28
29 // 修改条码采集
30 export function updateTileMatchCollection(data) {
31   return request({
32     url: '/da/tileMatchCollection',
33     method: 'put',
34     data: data
35   })
36 }
37
38 // 删除条码采集
39 export function delTileMatchCollection(id) {
40   return request({
41     url: '/da/tileMatchCollection/' + id,
42     method: 'delete'
43   })
44 }
59e228 45 export function getBalanceData(param) {
W 46   return request({
47     url: '/da/tileMatchCollection/getBalanceData',
48     method: 'get',
49     params: param
50   })
51 }