Files
xl-root/src/api/system.js

21 lines
479 B
JavaScript
Raw Normal View History

2025-03-10 19:01:21 +08:00
import request from "../utils/request.js";
2025-04-19 15:28:32 +08:00
import Method from "./Method.js";
2025-03-10 19:01:21 +08:00
const system = {
getData: async (params) => {
return request({
url: '/m1/5995958-5684445-default/getList',
2025-04-19 15:28:32 +08:00
method: Method.POST,
2025-03-10 19:01:21 +08:00
data: params
});
2025-03-14 19:03:13 +08:00
},
getSelect: async () => {
return request({
url: '/m1/5995958-5684445-default/getSelectList',
2025-04-19 15:28:32 +08:00
method: Method.GET,
2025-03-14 19:03:13 +08:00
});
},
2025-03-10 19:01:21 +08:00
}
export default system;