This commit is contained in:
2025-04-19 15:28:32 +08:00
parent c80b173e28
commit 9731d104f6
17 changed files with 796 additions and 738 deletions

View File

@@ -1,17 +1,18 @@
import request from "../utils/request.js";
import Method from "./Method.js";
const system = {
getData: async (params) => {
return request({
url: '/m1/5995958-5684445-default/getList',
method: "POST",
method: Method.POST,
data: params
});
},
getSelect: async () => {
return request({
url: '/m1/5995958-5684445-default/getSelectList',
method: "GET",
method: Method.GET,
});
},
}