| 12345678910111213141516171819202122232425262728293031 |
- import { request } from "@/utils/request";
- const baseUrl = "/pms/iot-operation-meeting";
- export const getOperationMeetingPage = (params) =>
- request({ url: `${baseUrl}/page`, method: "get", data: params });
- export const getIntegratedMeetingList = () =>
- request({ url: `${baseUrl}/integratedMeeting`, method: "get" });
- export const getSummarizedProjectDetails = (params) =>
- request({ url: `${baseUrl}/summarizedProjectDetails`, method: "get", data: params });
- export const getOperationMeeting = (id) =>
- request({ url: `${baseUrl}/get`, method: "get", data: { id } });
- export const saveOperationMeetingBatch = (data) =>
- request({ url: `${baseUrl}/saveBatch`, method: "post", data });
- export const getOperationMeetingProjects = () =>
- request({ url: `${baseUrl}/cachedProjects`, method: "get" });
- export const getCurrentCompanyExtProperties = () =>
- request({
- url: `${baseUrl}/currentCompanyExtProperties`,
- method: "get",
- custom: { showError: false },
- });
- export const getOperationMeetingCompanies = () =>
- request({ url: "/system/dept/includeDisabledCompanies", method: "get" });
|