WholeProcessPlatform/frontend/src/api/system/disposeManage/index.ts
2026-07-16 14:40:20 +08:00

50 lines
1.1 KiB
TypeScript

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'
});
}