Browse Source

1.4.2

master
徐振升 4 years ago
parent
commit
0fb4033216
  1. 2
      src/app/working-area/model/axLegend.ts
  2. 6
      src/app/working-area/working-area.component.ts

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

@ -61,7 +61,7 @@ export class AxLegend extends AxShape {
this.removeChildren(); this.removeChildren();
let index = 1; let index = 1;
const offset = 25; const offset = 25;
let number = this.assetData.PropertyInfos[0].PropertyValue; let number = Number(this.assetData.PropertyInfos[0].PropertyValue);
const width = 300; const width = 300;
const height = 50; const height = 50;
for (let i = 0; i < number; i++) { for (let i = 0; i < number; i++) {

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

@ -166,7 +166,7 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV
* - * -
* - * -
*/ */
public VERSION = '1.4.1.20210303_rc'; public VERSION = '1.4.2.20210325_rc';
/** /**
* *
*/ */
@ -1180,7 +1180,7 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV
TemplateId: null, TemplateId: null,
FloorId: this.canvasData.selectStorey.id, FloorId: this.canvasData.selectStorey.id,
Angle: 0, Angle: 0,
Enabled: null, Enabled: true,
FillMode: null, FillMode: null,
FireElementId: null, FireElementId: null,
FixedSize: null, FixedSize: null,
@ -1207,7 +1207,7 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV
PhysicalUnit: '', PhysicalUnit: '',
PropertyName: '列', PropertyName: '列',
PropertyType: 2, PropertyType: 2,
PropertyValue: 2, PropertyValue: '2',
}, },
], ],
Scale: 1, Scale: 1,

Loading…
Cancel
Save