|
@@ -99,7 +99,7 @@ export function queryAllEqParamList(param, success) {
|
|
|
//查询设备参数分组列表(涉及点位数)
|
|
|
export function queryEqParamList(param, success) {
|
|
|
let data = param.data
|
|
|
- return post(`${point}/point/${param.type}/group-equipment-parameter`, data, success)
|
|
|
+ return post(`${point}/point/${param.type}/group-equipment-parameter-statis`, data, success)
|
|
|
}
|
|
|
|
|
|
///重命名关键字(设备参数)
|
|
@@ -135,4 +135,77 @@ export function delParamTer(param, success) {
|
|
|
export function delTypeTer(param, success) {
|
|
|
let data = param.data
|
|
|
return post(`${point}/point/${param.type}/delete-equipment-type`, data, success)
|
|
|
+}
|
|
|
+
|
|
|
+//查询设备类型分组列表(是否标准化设备标识)
|
|
|
+export function getStandType(param, success) {
|
|
|
+ let data = param.data
|
|
|
+ return post(`${point}/point/${param.type}/group-equipment-type-standarded`, data, success)
|
|
|
+}
|
|
|
+
|
|
|
+//查询设备标识分组列表(是否标准化设备标识,通过设备类型)
|
|
|
+export function getStandParam(param, success) {
|
|
|
+ let data = param.data
|
|
|
+ return post(`${point}/point/${param.type}/group-equipment-mark`, data, success)
|
|
|
+}
|
|
|
+
|
|
|
+//设备标识为空的查询
|
|
|
+export function getNullofParam(param, success) {
|
|
|
+ let data = param.data
|
|
|
+ return post(`${point}/point/${param.type}/group-equipment-point`, data, success)
|
|
|
+}
|
|
|
+
|
|
|
+//物理世界角度获取图数据(获取系统)
|
|
|
+export function platformSysJsMind(param, success) {
|
|
|
+ let data = param
|
|
|
+ return post(`${point}/relation/check-physical-system`, data, success)
|
|
|
+}
|
|
|
+
|
|
|
+//物理世界角度获取图数据(获取设备类)
|
|
|
+export function platformEqJsMind(param, success) {
|
|
|
+ let data = param
|
|
|
+ return post(`${point}/relation/check-physical-equipment-type`, data, success)
|
|
|
+}
|
|
|
+
|
|
|
+//物理世界角度获取图数据(设备标识)
|
|
|
+export function platformIdentJsMind(param, success) {
|
|
|
+ let data = param
|
|
|
+ return post(`${point}/relation/check-physical-equipment-mark`, data, success)
|
|
|
+}
|
|
|
+
|
|
|
+//物理世界角度获取图数据(物理世界信息点)
|
|
|
+export function platformInfoJsMind(param, success) {
|
|
|
+ let data = param
|
|
|
+ return post(`${point}/relation/check-physical-info`, data, success)
|
|
|
+}
|
|
|
+
|
|
|
+//物理世界角度获取图数据(原始点位)
|
|
|
+export function platformPointJsMind(param, success) {
|
|
|
+ let data = param
|
|
|
+ return post(`${point}/relation/check-physical-point`, data, success)
|
|
|
+}
|
|
|
+
|
|
|
+//原始点位角度检查图(专业系统)
|
|
|
+export function pointSytemJsMind(param, success) {
|
|
|
+ let data = param
|
|
|
+ return post(`${point}/relation/check-original-system`, data, success)
|
|
|
+}
|
|
|
+
|
|
|
+//原始点位角度检查图(原始点位)
|
|
|
+export function pointPostJsMind(param, success) {
|
|
|
+ let data = param
|
|
|
+ return post(`${point}/relation/check-original-point`, data, success)
|
|
|
+}
|
|
|
+
|
|
|
+//原始点位角度检查图(物理世界信息点)
|
|
|
+export function pointInfoJsMind(param, success) {
|
|
|
+ let data = param
|
|
|
+ return post(`${point}/relation/check-original-info`, data, success)
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+//原始点位角度检查图(设备类)
|
|
|
+export function pointTypeJsMind(param, success) {
|
|
|
+ let data = param
|
|
|
+ return post(`${point}/relation/check-original-equipment-type`, data, success)
|
|
|
}
|