apiAccessLog.js 461 Bytes
Newer Older
sunhongwei's avatar
sunhongwei committed
1 2 3 4 5 6 7
import request from '@/utils/request'

// 获得API 访问日志分页
export function getApiAccessLogPage(query) {
  return request({
    url: '/infra/api-access-log/page',
    method: 'get',
8
    timeout: 1000*60*3,
sunhongwei's avatar
sunhongwei committed
9
    params: query
10

sunhongwei's avatar
sunhongwei committed
11 12 13 14 15 16 17 18 19 20 21 22
  })
}

// 导出API 访问日志 Excel
export function exportApiAccessLogExcel(query) {
  return request({
    url: '/infra/api-access-log/export-excel',
    method: 'get',
    params: query,
    responseType: 'blob'
  })
}