This commit is contained in:
2025-03-25 16:35:39 +08:00
parent 2b456dc17e
commit 9463635e03
66 changed files with 864 additions and 64 deletions

13
src/api/system/index.js Normal file
View 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;