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
353 B
17 lines
353 B
4 years ago
|
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
|
||
|
});
|
||
|
}
|