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.
35 lines
713 B
35 lines
713 B
import request from '@/utils/request';
|
|
//获取发码用户列表
|
|
export function getSendList(params) {
|
|
return request({
|
|
url: '/send/list',
|
|
method: 'post',
|
|
data:params
|
|
});
|
|
}
|
|
//发码
|
|
export function addSendList(params) {
|
|
return request({
|
|
url: '/send/add',
|
|
method: 'post',
|
|
data:params
|
|
});
|
|
}
|
|
|
|
//酒厂---全部发码列表
|
|
export function sendTotalList(params) {
|
|
return request({
|
|
url: '/code/sendlist',
|
|
method: 'post',
|
|
data:params
|
|
});
|
|
}
|
|
//酒厂---全部发码列表查询
|
|
export function sendTotalFetch(params) {
|
|
return request({
|
|
url: '/code/fetch/',
|
|
method: 'post',
|
|
data:params
|
|
});
|
|
}
|
|
|
|
|