智能照明系统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/20/202db48c5a405e2a56c4afbb621...

15 lines
382 B

import axios from '@/common/network/request.js';
//分页查询子设备列表
export function getSubdevicePage(data) {
return axios({
url: data.url,
method: 'POST',
params: {
'start':data.perpage*(data.currentPage-1)+1,
'limit':data.perpage,
'filterValue': data.filtervalue,
'filterTxt': 'terminal',
},
})
}