user-list

This commit is contained in:
xiaomlove
2021-04-17 19:01:33 +08:00
parent d734788363
commit 736d42cd5c
18 changed files with 699 additions and 803 deletions
+7
View File
@@ -19,6 +19,13 @@ const api = {
deleteAllowAgent: (id) => {
return axios.delete(baseUrl + 'agent-allow/' + id);
},
listUser: (params = {}) => {
return axios.get(baseUrl + 'user', {params: params});
},
storeUser: (params = {}) => {
return axios.post(baseUrl + 'user', params);
},
}
export default api