牛栏山防伪赋码系统
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.

17 lines
357 B

4 years ago
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
});
}