view.js 964 Bytes
/*
 * @Description: 系统监控
 * @Autor: renchao
 * @LastEditTime: 2023-05-16 16:07:10
 */
import request from '@/utils/request'
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
/**
 * @description: 系统监控 -获取错误日志列表
 * @param {*} data
 * @author: renchao
 */
export function getErrorLogList (data) {
  return request({
    url: SERVER.SERVERAPI + '/rest/xtjk/view/getErrorLogList',
    method: 'post',
    data
  })
}
/**
 * @description: 系统监控 -获取操作日志列表
 * @param {*} data
 * @author: renchao
 */
export function getOperationLogList (data) {
  return request({
    url: SERVER.SERVERAPI + '/rest/xtjk/view/getOperationLogList',
    method: 'post',
    data
  })
}
/**
 * @description: 系统监控 -主机监控
 * @author: renchao
 */
export function getServerInfo () {
  return request({
    url: SERVER.SERVERAPI + '/rest/xtjk/view/getServerInfo',
    method: 'get'
  })
}