You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.8 KiB
47 lines
1.8 KiB
import { createAPI } from "@/utils/httpRequest.js";
|
|
|
|
|
|
// 获取工作日类型列表
|
|
export const calendarDatetypeInfo = data => createAPI(`/base/calendarDatetypeInfo`,'post',data)
|
|
|
|
|
|
|
|
export const saveCalendarDatetypeData = data => createAPI(`/base/saveCalendarDatetypeData`,'post',data)
|
|
|
|
|
|
export const delCalendarType = data => createAPI(`/base/delCalendarType`,'post',data)
|
|
|
|
export const getShiftData = data => createAPI(`/base/getShiftData`,'post',data)
|
|
|
|
export const saveShift = data => createAPI(`/base/saveShift`,'post',data)
|
|
|
|
export const updateShift = data => createAPI(`/base/updateShift`,'post',data)
|
|
|
|
|
|
export const delShift = data => createAPI(`/base/delShift`,'post',data)
|
|
|
|
|
|
export const getCalendarData = data => createAPI(`/base/getCalendarData`,'post',data)
|
|
|
|
|
|
export const saveCalendar = data => createAPI(`/base/saveCalendar`,'post',data)
|
|
|
|
export const delCalendar = data => createAPI(`/base/delCalendar`,'post',data)
|
|
|
|
export const getCalendarExceptionData = data => createAPI(`/base/getCalendarExceptionData`,'post',data)
|
|
|
|
export const batchSaveCDData = data => createAPI(`/base/batchSaveCDData`,'post',data)
|
|
|
|
export const getCalendarExceptionShiftData = data => createAPI(`/base/getCalendarExceptionShiftData`,'post',data)
|
|
|
|
export const updateCESShift = data => createAPI(`/base/updateCESShift`,'post',data)
|
|
|
|
export const getCalendarDatetypeInfo = data => createAPI(`/base/getCalendarDatetypeInfo`,'post',data)
|
|
|
|
export const updateWorkingCalendar = data => createAPI(`/base/updateWorkingCalendar`,'post',data)
|
|
export const controlData = data => createAPI(`/sysSceneDynamicControlModel/controlData`,'post',data)
|
|
export const sysControlModelSearch = data => createAPI(`/sysSceneDynamicControlModel/sysControlModelSearch`,'post',data)
|
|
export const sysControlModelUpdate = data => createAPI(`/sysSceneDynamicControlModel/sysControlModelUpdate`,'post',data)
|
|
|
|
|
|
|