wlzboy
9 天以前 09faa36132c8cbada5327649875534ef01c1a3b1
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
import request from '@/utils/request'
 
// 查询通知发送日志列表
export function listNotifySendLog(query) {
  return request({
    url: '/system/notify/log/list',
    method: 'get',
    params: query
  })
}
 
// 获取通知发送日志详细信息
export function getNotifySendLog(id) {
  return request({
    url: '/system/notify/log/' + id,
    method: 'get'
  })
}
 
// 导出通知发送日志
export function exportNotifySendLog(query) {
  return request({
    url: '/system/notify/log/export',
    method: 'post',
    params: query
  })
}