19 lines
937 B
JavaScript
19 lines
937 B
JavaScript
|
|
/**
|
|||
|
|
* api接口统一管理 大屏显示器
|
|||
|
|
*/
|
|||
|
|
import {post,get} from '../http'
|
|||
|
|
|
|||
|
|
|
|||
|
|
export const getLEDList = data => get('xmgl/led/ledBigScreen/queryDetail', data);
|
|||
|
|
export const saveLEDList = data => post('xmgl/led/ledBigScreen/saveDetail', data);
|
|||
|
|
export const getWorkList = data => post('xmgl/workerInfo/countWorkerNumGroupByWorkerType', data);
|
|||
|
|
export const getClassGroupList = data => post('xmgl/workerInfo/selectWorkerTeamStatistics', data);
|
|||
|
|
export const getChockingList = data => post('xmgl/workerInfo/selectPersonTypeAndEduStatistics', data);
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
// 查询接口:xmgl/led/ledBigScreen/queryDetail get
|
|||
|
|
// 保存接口:xmgl/led/ledBigScreen/saveDetail post
|
|||
|
|
// 工种:xmgl/projectOperationsAnalysis/getAnalysisByTypeOfWork(参数:projectSn)post
|
|||
|
|
// 班组:xmgl/workerInfo/selectWorkerTeamStatistics(参数:projectSn) post
|
|||
|
|
// 考勤:xmgl/workerInfo/selectPersonTypeAndEduStatistics(参数:projectSn)post
|