agent-allow-table

This commit is contained in:
xiaomlove
2021-04-15 19:20:32 +08:00
parent 3f13ec875f
commit dc7aa33036
10 changed files with 817 additions and 421 deletions
+11
View File
@@ -0,0 +1,11 @@
import axios from "./axios";
const baseUrl = 'http://nexus-php8.tinyhd.net/api/';
const api = {
listAllowAgent: (params = {}) => {
return axios.get(baseUrl + 'agent-allow', {params: params});
}
}
export default api