wlzboy
3 天以前 8cb5d3440208a3be3e772e65f1bd0ec63031ba62
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
  })
}