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.
|
|
|
|
import request from '@/router/axios';
|
|
|
|
|
|
|
|
|
|
export const getServiceList = () => {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/kgApi/monitor-system/getServiceList',
|
|
|
|
|
method: 'get',
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
export const getMiddleList = () => {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/kgApi/monitor-system/getMiddleList',
|
|
|
|
|
method: 'get',
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
export const getServerParamsList = () => {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/kgApi/monitor-system/getServerParamsList',
|
|
|
|
|
method: 'get',
|
|
|
|
|
})
|
|
|
|
|
}
|