增加接口

This commit is contained in:
weinan2087
2023-02-10 17:31:23 +08:00
parent d226de7030
commit 9611f70c26

View File

@@ -39,6 +39,13 @@ const update = function(data){
return ajax.postJson(baseURL,'/audience/update',data);
}
/**
* 复制受众
*/
const copy = function(data){
return ajax.postJson(baseURL,'/audience/copy',data);
}
/**
* 查询用户列表
@@ -53,5 +60,6 @@ export default {
delAudience,
detail,
update,
userList
userList,
copy
}