|
@@ -1765,6 +1765,12 @@ export function manageDeleteFloor(param, success) {
|
|
|
http.postJson(url, param, success)
|
|
|
}
|
|
|
|
|
|
+//建筑楼层管理-删除楼层(该接口有删除失败的原因)
|
|
|
+export function deleteFloorInfo(param, success) {
|
|
|
+ let url = `${baseUrl}${floor}/single/delete`;
|
|
|
+ http.postJson(url, param, success)
|
|
|
+}
|
|
|
+
|
|
|
//建筑楼层管理-修改楼层
|
|
|
export function manageUpdateFloor(param, success) {
|
|
|
let url = `${baseUrl}${floor}/update`;
|
|
@@ -2347,6 +2353,12 @@ export function objectDeleteBuild(param, success) {
|
|
|
http.postJson(url, param, success)
|
|
|
}
|
|
|
|
|
|
+//根据id删除建筑信息(该接口有删除失败的原因)
|
|
|
+export function deleteBuildInfo(param, success) {
|
|
|
+ let url = `${baseUrl}${object}/building/single/delete`
|
|
|
+ http.postJson(url, param, success)
|
|
|
+}
|
|
|
+
|
|
|
// 查询记录
|
|
|
export function problemQuery(param, success) {
|
|
|
// let url = `${baseUrl}${dataCenter}/problems/query`
|