You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
738 B
36 lines
738 B
import http from '@/utils/httpRequest'
|
|
|
|
/**
|
|
* 查询标签变动记录列表
|
|
*/
|
|
export function labelTransactionLogList(data) {
|
|
return http({
|
|
url: http.adornUrl('/warehouse/labelTransactionLog/list'),
|
|
method: 'post',
|
|
data: http.adornData(data)
|
|
})
|
|
}
|
|
|
|
/**
|
|
* 导出标签变动记录
|
|
*/
|
|
export function labelTransactionLogExport(data) {
|
|
return http({
|
|
url: http.adornUrl('/warehouse/labelTransactionLog/export'),
|
|
method: 'post',
|
|
data: http.adornData(data),
|
|
responseType: 'blob'
|
|
})
|
|
}
|
|
|
|
/**
|
|
* 批量手动重试
|
|
*/
|
|
export function labelTransactionLogRetry(data) {
|
|
return http({
|
|
url: http.adornUrl('/warehouse/labelTransactionLog/retry'),
|
|
method: 'post',
|
|
data: http.adornData(data)
|
|
})
|
|
}
|
|
|