Blame view

src/api/xtjk.js 662 Bytes
蔡俊立 committed
1 2 3 4 5 6 7 8 9
import request from '@/utils/request'
import SERVER from './config'
/* 
系统监控 -获取错误日志列表
*/
export function getErrorLogList (data) {
  return request({
    url: SERVER.SERVERAPI + '/rest/xtjk/view/getErrorLogList',
    method: 'post',
任超 committed
10
    data
蔡俊立 committed
11 12
  })
}
蔡俊立 committed
13 14 15 16 17 18 19 20

/* 
系统监控 -获取操作日志列表
*/
export function getOperationLogList (data) {
  return request({
    url: SERVER.SERVERAPI + '/rest/xtjk/view/getOperationLogList',
    method: 'post',
任超 committed
21
    data
蔡俊立 committed
22 23
  })
}
蔡俊立 committed
24 25 26 27 28 29 30

/* 
系统监控 -主机监控
*/
export function getServerInfo () {
  return request({
    url: SERVER.SERVERAPI + '/rest/xtjk/view/getServerInfo',
任超 committed
31
    method: 'get'
蔡俊立 committed
32 33
  })
}