8 lines
161 B
JavaScript
8 lines
161 B
JavaScript
|
const http = uni.$u.http;
|
||
|
|
||
|
// 查询设备简短列表
|
||
|
export function getSubGatewayList (query) {
|
||
|
return http.get('/sub/gateway/list', {
|
||
|
params: query
|
||
|
});
|
||
|
}
|