import request from '@/utils/request'; // 飞行路径 export function threedroambGetKendoListCust(data: any) { return request({ url: '/threedroamb/GetKendoListCust', method: 'post', data: data }); } export function threedroambsave(data: any) { return request({ url: '/threedroamb/save', method: 'post', data: data }); } export function threedroambdelete(data: any) { return request({ url: '/threedroamb/delete', method: 'get', params: data }); } //根据id查询弹窗 export function threedroambGetKendoById(data: any) { return request({ url: '/threedroamb/getThreedRoamDetails', method: 'get', params: data }); } // 导入接口 export function threedroambimport(data: FormData) { return request({ url: '/threedroamb/import', method: 'post', data: data, headers: { 'Content-Type': 'multipart/form-data' } }); } // 导出模板 export function threedroambexport(data: any) { return request({ url: '/threedroamb/export', method: 'post', data: data, responseType: 'blob' }); }