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.
16 lines
382 B
16 lines
382 B
|
3 years ago
|
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',
|
||
|
|
},
|
||
|
|
})
|
||
|
|
}
|