Browse Source

默认隐藏基本信息,处置预案图标名称

master
徐振升 4 years ago
parent
commit
92564aedef
  1. 1
      debug.log
  2. 1
      src/app/working-area/model/axArrowConnector.ts
  3. 5
      src/app/working-area/model/axImageShape.ts
  4. 2
      src/app/working-area/model/axShape.ts
  5. 1
      src/app/working-area/model/multipointIcon.ts
  6. 1
      src/app/working-area/model/polygonIcon.ts
  7. 9
      src/app/working-area/working-area.component.ts

1
debug.log

@ -1,2 +1,3 @@
[1225/112746.821:ERROR:directory_reader_win.cc(43)] FindFirstFile: 系统找不到指定的路径。 (0x3) [1225/112746.821:ERROR:directory_reader_win.cc(43)] FindFirstFile: 系统找不到指定的路径。 (0x3)
[1225/152100.333:ERROR:directory_reader_win.cc(43)] FindFirstFile: 系统找不到指定的路径。 (0x3) [1225/152100.333:ERROR:directory_reader_win.cc(43)] FindFirstFile: 系统找不到指定的路径。 (0x3)
[1226/082525.401:ERROR:directory_reader_win.cc(43)] FindFirstFile: 系统找不到指定的路径。 (0x3)

1
src/app/working-area/model/axArrowConnector.ts

@ -51,6 +51,7 @@ export class AxArrowConnector extends AxShape {
this.drawPoints(); this.drawPoints();
this.sortableChildren = true; this.sortableChildren = true;
this.text.zIndex = this.children.length; this.text.zIndex = this.children.length;
this.text.visible = this.showName;
} }
public drawPoints() { public drawPoints() {

5
src/app/working-area/model/axImageShape.ts

@ -139,10 +139,7 @@ export class AxImageShape extends AxShape {
this.text.x = this.image.x; this.text.x = this.image.x;
this.text.y = this.image.y - this.image.height / 2; this.text.y = this.image.y - this.image.height / 2;
this.text.anchor.set(0.5, 1); this.text.anchor.set(0.5, 1);
this.text.visible = this.showName;
if (this.assetData.GameMode === 2) {
this.text.visible = false;
}
this.addChild(this.text); this.addChild(this.text);
this.addChild(this.image); this.addChild(this.image);
this.addChild(this.selectionBox); this.addChild(this.selectionBox);

2
src/app/working-area/model/axShape.ts

@ -13,6 +13,8 @@ export class AxShape extends Container {
moveable = true; moveable = true;
// 可以被选中的 // 可以被选中的
selectable = true; selectable = true;
// 是否显示名称
showName = true;
constructor(assetData: any, workingArea: WorkingAreaComponent) { constructor(assetData: any, workingArea: WorkingAreaComponent) {
super(); super();

1
src/app/working-area/model/multipointIcon.ts

@ -64,6 +64,7 @@ export class MultipointIcon extends AxShape {
this.text.anchor.set(0.5); this.text.anchor.set(0.5);
this.text.position = icon.position; this.text.position = icon.position;
this.text.y -= this.assetData.Height; this.text.y -= this.assetData.Height;
this.text.visible = this.showName;
this.addChild(this.text); this.addChild(this.text);
} }
} }

1
src/app/working-area/model/polygonIcon.ts

@ -73,6 +73,7 @@ export class PolygonIcon extends AxShape {
this.text.anchor.set(0.5); this.text.anchor.set(0.5);
this.text.position = this.calculatePolygonGravityCenter(this.pointsData); this.text.position = this.calculatePolygonGravityCenter(this.pointsData);
this.text.visible = this.showName;
// console.log(this.calculatePolygonGravityCenter(this.pointsData)); // console.log(this.calculatePolygonGravityCenter(this.pointsData));
this.polygonGraphics.addChild(this.text); this.polygonGraphics.addChild(this.text);
// 添加圆点事件 // 添加圆点事件

9
src/app/working-area/working-area.component.ts

@ -513,8 +513,9 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV
this.processinghiddenData(); this.processinghiddenData();
} }
this.createFloorShape(this.canvasData.originaleveryStoreyData.data); this.createFloorShape(this.canvasData.originaleveryStoreyData.data);
console.log(this.canvasData.selectStorey);
this.createNodeShape(this.canvasData.selectPanelPoint.Data); this.createNodeShape(this.canvasData.selectPanelPoint.Data);
this.setNameVisible(false, 0);
this.setNameVisible(false, 1);
} }
/** /**
* *
@ -555,11 +556,11 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV
break; break;
case 3: case 3:
if (floorData[key].Name === '水带') { if (floorData[key].Name === '水带') {
const distance = new AxArrowConnector(floorData[key], this,false,true); const distance = new AxArrowConnector(floorData[key], this, false, true);
} else if(floorData[key].Name === '距离'){ } else if(floorData[key].Name === '距离'){
const distance = new AxArrowConnector(floorData[key], this,true,true); const distance = new AxArrowConnector(floorData[key], this, true, true);
}else if(floorData[key].Name === '普通墙' || floorData[key].Name === '承重墙'){ }else if(floorData[key].Name === '普通墙' || floorData[key].Name === '承重墙'){
const wall = new AxArrowConnector(floorData[key], this,false,false); const wall = new AxArrowConnector(floorData[key], this, false, false);
} }
break; break;
} }

Loading…
Cancel
Save