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.
20 lines
407 B
20 lines
407 B
|
2 years ago
|
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
|
||
|
|
})
|
||
|
|
}
|
||
|
|
|