Crunchy
2025-04-29 e5454b769d44a34af423bf87ac8a740bf8c20341
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
27
28
29
30
31
32
33
34
// 首页相关接口
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
  })
}
//首页-->修改待办事项状态
export function triggerModificationStatusToRead(query) {
  return request({
    url: '/informationNotification/triggerModificationStatusToRead',
    method: 'post',
    data: query
  })
}