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.
44 lines
861 B
44 lines
861 B
import request from '@/utils/request';
|
|
//获取取码用户列表
|
|
export function getFetchList(params) {
|
|
return request({
|
|
url: '/fetch/list',
|
|
method: 'post',
|
|
data:params
|
|
});
|
|
}
|
|
//取码
|
|
export function addFetchList(params) {
|
|
return request({
|
|
url: '/fetch/add',
|
|
method: 'post',
|
|
data:params
|
|
});
|
|
}
|
|
|
|
|
|
// 编辑取码单
|
|
export function updateFetch(params) {
|
|
return request({
|
|
url: '/fetch/update',
|
|
method: 'post',
|
|
data:params
|
|
});
|
|
}
|
|
//获取详情
|
|
export function getFetchDetail(params) {
|
|
return request({
|
|
url: '/fetch/detail',
|
|
method: 'post',
|
|
data:params
|
|
});
|
|
}
|
|
//生成防伪码印刷文件
|
|
export function generateFetch(params) {
|
|
return request({
|
|
url: '/fetch/generate',
|
|
method: 'post',
|
|
data:params
|
|
});
|
|
}
|
|
|
|
|