shift.js 399 B

123456
  1. import service from '@/utils/request'
  2. export const startShift = (data) => service({ url: '/shift/start', method: 'post', data })
  3. export const endShift = (data) => service({ url: '/shift/end', method: 'post', data })
  4. export const getCurrentShift = () => service({ url: '/shift/current', method: 'get' })
  5. export const getShiftList = (params) => service({ url: '/shift/list', method: 'get', params })