|
@@ -0,0 +1,23 @@
|
|
|
+import { getAction,deleteAction,putAction,postAction} from '@/api/manage'
|
|
|
+
|
|
|
+
|
|
|
+const scheduleGetListByTime = (params)=>getAction("/oa/cdSchedule/getListByTime",params);
|
|
|
+
|
|
|
+
|
|
|
+const scheduleQueryById = (params)=>getAction("/oa/cdSchedule/queryById",params);
|
|
|
+
|
|
|
+const scheduleAdd= (params)=>postAction("/oa/cdSchedule/add",params);
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+const scheduleGetLastMonth = (params)=>getAction("/oa/cdSchedule/getLastMonth",params);
|
|
|
+
|
|
|
+export {
|
|
|
+ scheduleGetListByTime,
|
|
|
+ scheduleQueryById,
|
|
|
+ scheduleAdd,
|
|
|
+ scheduleGetLastMonth
|
|
|
+}
|