Blame view

store-pc/src/api/lqAttendanceRecord.js 260 Bytes
b5df6609   “wangming”   ```
1
2
3
4
5
6
7
8
9
10
  import request from '@/utils/request'
  
  /** 月度考勤矩阵(门店排班展示打卡/请假) */
  export function getAttendanceMonthReport(data) {
    return request({
      url: '/api/Extend/LqAttendanceRecord/MonthReport',
      method: 'get',
      data
    })
  }