update
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
import system from "./system/index.js";
|
||||
|
||||
const Api = {
|
||||
system: {...system},
|
||||
}
|
||||
|
||||
export default Api;
|
||||
|
||||
13
src/api/system/index.js
Normal file
13
src/api/system/index.js
Normal file
@@ -0,0 +1,13 @@
|
||||
import request from "../../utils/request.js";
|
||||
import MethodsENUM from "../../enum/MethodsENUM.js";
|
||||
|
||||
const system = {
|
||||
getData: async () => {
|
||||
return request({
|
||||
method: MethodsENUM.POST,
|
||||
url: "/m1/5995958-5684445-default/getList",
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
export default system;
|
||||
Reference in New Issue
Block a user