|
@@ -120,6 +120,16 @@ export default {
|
|
|
this.initGraphy(this.floorData.StructureInfo.FloorMap, 2)
|
|
|
})
|
|
|
},
|
|
|
+ // 获取绑定该模型id的其他楼层轮廓线
|
|
|
+ getOtherFloorOutLine(){
|
|
|
+ let modelid = this.$route.query.modelId;
|
|
|
+ let pa = {
|
|
|
+ Filters: `ModelId='${modelid}'`
|
|
|
+ }
|
|
|
+ floorQuery(pa, res => {
|
|
|
+ console.log(res)
|
|
|
+ })
|
|
|
+ },
|
|
|
// 清空平面图
|
|
|
clearGraphy() {
|
|
|
if (this.view) {
|