|
@@ -1414,4 +1414,38 @@ export function createRelateInZoneAndISp(param, success) {
|
|
|
export function groupCreRelaZoneAndISp(param, success) {
|
|
|
let url = `${baseUrl}/datacenter/si-in-sp-base/link-list?type=${param.type}`;
|
|
|
http.postJson(url, param.data, success)
|
|
|
+}
|
|
|
+//扫楼作业-扫楼日志查看
|
|
|
+export function queryUserLog(param, success) {
|
|
|
+ let url = `${baseUrl}/scanbuilding-2/user-log/query`;
|
|
|
+ http.postJson(url, param, success)
|
|
|
+}
|
|
|
+
|
|
|
+//扫楼作业-信息点整理-查询点位标签
|
|
|
+export function queryLocationPoint(param, success) {
|
|
|
+ let url = `${baseUrl}/datacenter/location-point/query`;
|
|
|
+ http.postJson(url, param, success)
|
|
|
+}
|
|
|
+
|
|
|
+//扫楼作业-信息点整理-更新点位标签
|
|
|
+export function updateLocationPoint(param, success) {
|
|
|
+ let url = `${baseUrl}/datacenter/location-point/update`;
|
|
|
+ http.postJson(url, param, success)
|
|
|
+}
|
|
|
+
|
|
|
+//扫楼作业-位置标签-删除图片
|
|
|
+export function deleteLocationImg(param, success) {
|
|
|
+ let url = `${baseUrl}/datacenter/location-point/delete-image`;
|
|
|
+ http.postJson(url, param, success)
|
|
|
+}
|
|
|
+
|
|
|
+//扫楼作业-信息点整理-资产族及个数
|
|
|
+export function queryPropertyTypeCount(param, success) {
|
|
|
+ let url = `${baseUrl}/equip-component/property/property-family`;
|
|
|
+ http.getJson(url, param, success)
|
|
|
+}
|
|
|
+//扫楼作业-信息点整理-位置标签及对应资产数量
|
|
|
+export function queryPropertyPoint(param, success) {
|
|
|
+ let url = `${baseUrl}/equip-component/point/point-property`;
|
|
|
+ http.getJson(url, param, success)
|
|
|
}
|