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'
|
})
|
}
|
export function getBalanceData(param) {
|
return request({
|
url: '/da/tileMatchCollection/getBalanceData',
|
method: 'get',
|
params: param
|
})
|
}
|