|
@@ -332,6 +332,7 @@ import {
|
|
|
updateProperty, //数据中心-更新资产
|
|
|
getDataDictionary, //数据中心-查询表头
|
|
|
queryPropertyTypeCount, //数据中心-资产分类及数量
|
|
|
+ queryPropertyPoint, //数据中心-位置标签及对应资产数量
|
|
|
} from "@/api/scan/request";
|
|
|
import { mapGetters, mapActions } from "vuex"
|
|
|
export default {
|
|
@@ -672,15 +673,16 @@ export default {
|
|
|
//获取点位标签
|
|
|
getPT() {
|
|
|
let pa = {
|
|
|
- Filters: `LastUpdate>='${this.checkTimeArr[0]}';LastUpdate<='${this.checkTimeArr[1]}';BuildId='${this.buildId}'`,
|
|
|
- PageSize: 100
|
|
|
+ buildingId:this.buildId,
|
|
|
+ endingTime:this.checkTimeArr[1],
|
|
|
+ startTime:this.checkTimeArr[0]
|
|
|
}
|
|
|
- if (this.floorId == 'noKnow') {
|
|
|
- pa.Filters += `;FloorId isNull`
|
|
|
- } else if (this.floorId != 'all') {
|
|
|
- pa.Filters += `;FloorId='${this.floorId}'`
|
|
|
+ if (this.floorId == 'all') {
|
|
|
+ pa.floorId = `all`
|
|
|
+ } else if (this.floorId != 'noKnow') {
|
|
|
+ pa.floorId = this.floorId
|
|
|
}
|
|
|
- queryLocationPoint(pa, res => {
|
|
|
+ queryPropertyPoint(pa, res => {
|
|
|
this.PTArr = res.Content;
|
|
|
this.labelShow = true;
|
|
|
this.createPTSwiper();
|