| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- [
- {
- "title" : "人员",
- "headStyles" : "normalThNode",
- "contentStyles" : "normalTdNode",
- "item" : "function( d ){ return d.employeeName.split('@')[0] }",
- "name" : "employeeName",
- "width" : "9%"
- },
- {
- "title" : "月份",
- "headStyles" : "normalThNode",
- "contentStyles" : "normalTdNode",
- "item" : "function( data ){ if( data.statisticDate ){ return data.statisticDate }else{ return data.statisticYear + '-' + data.statisticMonth } }",
- "name" : "statisticMonth",
- "width" : "9%"
- },
- {
- "title" : "上班打卡次数",
- "headStyles" : "normalThNode",
- "contentStyles" : "normalTdNode",
- "item" : "onDutyTimes",
- "name" : "onDutyTimes",
- "width" : "9%"
- },
- {
- "title" : "下班打卡次数",
- "headStyles" : "normalThNode",
- "contentStyles" : "normalTdNode",
- "item" : "offDutyTimes",
- "name" : "offDutyTimes",
- "width" : "9%"
- },
- {
- "title" : "出勤人天数",
- "headStyles" : "normalThNode",
- "contentStyles" : "normalTdNode",
- "item" : "onDutyDayCount",
- "name" : "onDutyDayCount",
- "width" : "9%"
- },
- {
- "title" : "请假或外出报备人天数",
- "headStyles" : "normalThNode",
- "contentStyles" : "normalTdNode",
- "item" : "function( data ){ if( typeOf( data.onSelfHolidayCount ) == 'number' ){ return data.onSelfHolidayCount }else{ return data.onSelfHolidayEmployeeCount } }",
- "name" : "onSelfHolidayEmployeeCount",
- "width" : "9%"
- },
- {
- "title" : "缺勤人天数",
- "headStyles" : "normalThNode",
- "contentStyles" : "normalTdNode",
- "item" : "absenceDayCount",
- "name" : "absenceDayCount",
- "width" : "9%"
- },
- {
- "title" : "迟到次数",
- "headStyles" : "normalThNode",
- "contentStyles" : "normalTdNode",
- "item" : "lateTimes",
- "name" : "lateTimes",
- "width" : "9%"
- },
- // {
- // "title" : "早退次数",
- // "headStyles" : "normalThNode",
- // "contentStyles" : "normalTdNode",
- // "item" : "leaveEarlyCount",
- // "name" : "leaveEarlyCount",
- // "width" : "9%"
- // },
- {
- "title" : "工时不足人次",
- "headStyles" : "normalThNode",
- "contentStyles" : "normalTdNode",
- "item" : "lackOfTimeCount",
- "name" : "lackOfTimeCount",
- "width" : "9%"
- },
- {
- "title" : "异常打卡人次",
- "headStyles" : "normalThNode",
- "contentStyles" : "normalTdNode",
- "item" : "abNormalDutyCount",
- "name" : "abNormalDutyCount",
- "width" : "9%"
- }
- // {
- // "access" : "admin",
- // "title" : "操作",
- // "headStyles" : "normalThNode",
- // "contentStyles" : "normalTdNode",
- // "item" : "actions",
- // "name" : "actions",
- // "width" : "9%",
- // "sub" : [{
- // "title" : "删除文件",
- // "action" : "remove",
- // "styles" : "actionDeleteNode",
- // "overStyles" : "actionDeleteNode_over",
- // "downStyles" : "actionDeleteNode_down"
- // }]
- // }
- ]
|