8 lines
161 B
JavaScript
Raw Normal View History

2025-05-22 16:23:08 +08:00
const http = uni.$u.http;
// 查询设备简短列表
export function getSubGatewayList (query) {
return http.get('/sub/gateway/list', {
params: query
});
}