10 lines
188 B
JavaScript
Raw Permalink Normal View History

2025-05-22 16:23:08 +08:00
const http = uni.$u.http;
// 查询独立组态列表
export function getIndeScadaList (query) {
return http.request({
url: '/scada/center/list',
method: 'get',
params: query
})
}