智能照明系统APP-本地串口
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.
 
 
 
 
 
 
LightingSystemApp-serial/.svn/pristine/bc/bc37cc1d51c453e0478f2849e85...

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
},
})
}