spring
2025-04-10 dab59f7624a2fb8d4114bb67b554ff09d91f810c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// 首页相关接口
import request from '@/utils/request'
 
//首页-->日历任务图
export function calendarWorkByWeek() {
  return request({
    url: '/report/calendarWorkByWeek',
    method: 'get'
  })
}
//首页-->首页工时统计
export function currentUserWorkHourCount(query) {
  return request({
    url: '/report/currentUserWorkHourCount',
    method: 'get',
    params: query
  })
}
//首页-->首页工时统计
export function msgRoll(query) {
  return request({
    url: '/informationNotification/msgRoll',
    method: 'get',
    params: query
  })
}