|
@@ -106,10 +106,8 @@
|
|
|
<el-table-column prop="ObjectLocalCode" :label="`${typeName}本地编码`" show-overflow-tooltip></el-table-column>
|
|
|
<el-table-column :label="`${typeName}顺序号`" show-overflow-tooltip>
|
|
|
<template slot-scope="scope">
|
|
|
- <el-tooltip :content="(scope.row.ObjectSequenceID&&scope.row.ObjectSequenceID!='null')?scope.row.ObjectSequenceID:''"
|
|
|
- placement="top">
|
|
|
- <div class="tool-tip">
|
|
|
- {{(scope.row.ObjectSequenceID&&scope.row.ObjectSequenceID!='null')?scope.row.ObjectSequenceID:''}}</div>
|
|
|
+ <el-tooltip :content="scope.row.ObjectSequenceID+''" placement="top">
|
|
|
+ <div class="tool-tip">{{scope.row.ObjectSequenceID+''}}</div>
|
|
|
</el-tooltip>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
@@ -167,7 +165,8 @@ import {
|
|
|
dynamicCreateRelation,
|
|
|
dynamicDeleteRelation,
|
|
|
dynamicPointTypeList,
|
|
|
- dynamicQueryAI
|
|
|
+ dynamicQueryAI,
|
|
|
+ floorQuery, //数据中心查询楼层
|
|
|
} from "@/api/scan/request";
|
|
|
export default {
|
|
|
components: {
|
|
@@ -396,46 +395,41 @@ export default {
|
|
|
},
|
|
|
//获取待关联实例-右侧
|
|
|
getRightData() {
|
|
|
- let param = {
|
|
|
+ let pa = {
|
|
|
+ Cascade: [{ Name: 'building' }],
|
|
|
PageNumber: this.rPage.pageNumber,
|
|
|
PageSize: this.rPage.pageSize,
|
|
|
- TypeNameList: [this.typeName]
|
|
|
- };
|
|
|
+ Filters: `not FloorID isNull`
|
|
|
+ }
|
|
|
//处理查询条件
|
|
|
if (this.form.ObjectLocalName && this.form.ObjectLocalName.length) {
|
|
|
- param.ObjectLocalName = this.form.ObjectLocalName;
|
|
|
- }
|
|
|
- if (this.form.SubTypeName.length) {
|
|
|
- param.SubTypeNameList = this.form.SubTypeName;
|
|
|
- }
|
|
|
- if (this.form.locationVal.length > 0) {
|
|
|
- param.BuildLocalName = this.form.locationVal[0];
|
|
|
+ pa.Filters += `;FloorLocalName contain '${this.form.ObjectLocalName}'`;
|
|
|
}
|
|
|
- if (this.form.locationVal.length > 1) {
|
|
|
- param.FloorLocalName = this.form.locationVal[1];
|
|
|
- }
|
|
|
- if (this.form.locationVal.length > 2) {
|
|
|
- param.SpaceType = this.form.locationVal[2];
|
|
|
- }
|
|
|
- if (this.form.locationVal.length > 3) {
|
|
|
- param.RoomLocalName = this.form.locationVal[3];
|
|
|
- }
|
|
|
- if (!this.form.locationVal.length) {
|
|
|
- delete param.BuildLocalName
|
|
|
- delete param.FloorLocalName
|
|
|
- delete param.SpaceType
|
|
|
- delete param.RoomLocalName
|
|
|
+ if (this.form.locationVal.length) {
|
|
|
+ if (this.form.locationVal[0] != 'unknowBuild') {
|
|
|
+ pa.Filters += `;BuildID='${this.form.locationVal[0]}'`;
|
|
|
+ } else {
|
|
|
+ pa.Filters += `;BuildID isNull`;
|
|
|
+ }
|
|
|
}
|
|
|
this.rTableLoading = true;
|
|
|
- dynamicPendingobjs(param, res => {
|
|
|
- this.rPage.total = res.PageSize < 50 ? res.PageSize : res.Total;
|
|
|
+ floorQuery(pa, res => {
|
|
|
+ this.rPage.total = res.Total;
|
|
|
+ let tempArr = res.Content.map(t => {
|
|
|
+ t.ObjectID = t.FloorID.substr(12);
|
|
|
+ t.ObjectLocalName = t.FloorLocalName;
|
|
|
+ t.ObjectLocalCode = t.FloorLocalID;
|
|
|
+ t.ObjectSequenceID = t.FloorSequenceID;
|
|
|
+ t.BuildLocalName = t.Building.BuildLocalName;
|
|
|
+ return t;
|
|
|
+ });
|
|
|
if (this.rPage.pageNumber == 1) {
|
|
|
- this.RtableData = res.Content;
|
|
|
+ this.RtableData = tempArr;
|
|
|
} else {
|
|
|
- this.RtableData = this.RtableData.concat(res.Content);
|
|
|
+ this.RtableData = this.RtableData.concat(tempArr);
|
|
|
}
|
|
|
this.rTableLoading = false;
|
|
|
- });
|
|
|
+ })
|
|
|
},
|
|
|
//清除对应关系成功
|
|
|
deleteSuc() {
|