mirror of
https://github.com/veops/cmdb.git
synced 2025-09-07 22:07:02 +08:00
19 lines
360 B
JavaScript
19 lines
360 B
JavaScript
import { axios } from '@/utils/request'
|
|
|
|
export function searchCI(params, isShowMessage = true) {
|
|
return axios({
|
|
url: `/v0.1/ci/s`,
|
|
method: 'GET',
|
|
params: params,
|
|
isShowMessage
|
|
})
|
|
}
|
|
|
|
export function getCIType(CITypeName, parameter) {
|
|
return axios({
|
|
url: `/v0.1/ci_types/${CITypeName}`,
|
|
method: 'GET',
|
|
params: parameter
|
|
})
|
|
}
|