import request from '@/utils/request' // 查询IDC编号索引列表 export function listIdcNoIndex(query) { return request({ url: '/bis/idcNoIndex/list', method: 'get', params: query }) } // 查询IDC编号索引详细 export function getIdcNoIndex(id) { return request({ url: '/bis/idcNoIndex/' + id, method: 'get' }) } // 新增IDC编号索引 export function addIdcNoIndex(data) { return request({ url: '/bis/idcNoIndex', method: 'post', data: data }) } // 修改IDC编号索引 export function updateIdcNoIndex(data) { return request({ url: '/bis/idcNoIndex', method: 'put', data: data }) } // 删除IDC编号索引 export function delIdcNoIndex(id) { return request({ url: '/bis/idcNoIndex/' + id, method: 'delete' }) }