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.
19 lines
407 B
19 lines
407 B
import request from '@/router/axios'; |
|
|
|
//设备类型通讯链路及排除方案 |
|
export const getWarnPoint = (params) => { |
|
return request({ |
|
url: '/kgApi/monitor-business/getWarnPoint', |
|
method: 'get', |
|
params |
|
}) |
|
} |
|
//排查方案信息列表 |
|
export const getResolveTips = (params) => { |
|
return request({ |
|
url: '/kgApi/monitor-business/getResolveTips', |
|
method: 'get', |
|
params |
|
}) |
|
} |
|
|
|
|