This commit is contained in:
2025-03-27 15:38:21 +08:00
parent 3c85d9e0e7
commit 15b26ab2d9
31 changed files with 1003 additions and 22 deletions

View File

@@ -2,10 +2,11 @@ import request from "../../utils/request.js";
import MethodsENUM from "../../enum/MethodsENUM.js";
const system = {
getData: async () => {
getData: async (data) => {
return request({
method: MethodsENUM.POST,
url: "/m1/5995958-5684445-default/getList",
data: data,
});
}
}