operationMeeting.js 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. import { request } from "@/utils/request";
  2. const baseUrl = "/pms/iot-operation-meeting";
  3. export const getOperationMeetingPage = (params) =>
  4. request({ url: `${baseUrl}/page`, method: "get", data: params });
  5. export const getIntegratedMeetingList = () =>
  6. request({ url: `${baseUrl}/integratedMeeting`, method: "get" });
  7. export const getSummarizedProjectDetails = (params) =>
  8. request({ url: `${baseUrl}/summarizedProjectDetails`, method: "get", data: params });
  9. export const getOperationMeeting = (id) =>
  10. request({ url: `${baseUrl}/get`, method: "get", data: { id } });
  11. export const saveOperationMeetingBatch = (data) =>
  12. request({ url: `${baseUrl}/saveBatch`, method: "post", data });
  13. export const getOperationMeetingProjects = () =>
  14. request({ url: `${baseUrl}/cachedProjects`, method: "get" });
  15. export const getCurrentCompanyExtProperties = () =>
  16. request({
  17. url: `${baseUrl}/currentCompanyExtProperties`,
  18. method: "get",
  19. custom: { showError: false },
  20. });
  21. export const getOperationMeetingCompanies = () =>
  22. request({ url: "/system/dept/includeDisabledCompanies", method: "get" });