You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
495 B
18 lines
495 B
import axios from '@/common/network/request.js';
|
|
|
|
//分页查询故障记录
|
|
export function getFaultlogPage(data) {
|
|
return axios({
|
|
url: '/eventinfor/getneweventinforlog.do',
|
|
method: 'POST',
|
|
params: {
|
|
'start':data.perpage*(data.currentPage-1)+1,
|
|
'limit':data.perpage,
|
|
'starttime':data.starttime,
|
|
'endtime':data.endtime,
|
|
'username':data.username,
|
|
'filterTxt':'default',
|
|
'filterValue':data.filtervalue
|
|
},
|
|
})
|
|
}
|
|
|