diff --git a/src/app/babylon/controller/event-manager/events/event-loading-change.ts b/src/app/babylon/controller/event-manager/events/event-loading-change.ts index bc18520..48a6788 100644 --- a/src/app/babylon/controller/event-manager/events/event-loading-change.ts +++ b/src/app/babylon/controller/event-manager/events/event-loading-change.ts @@ -7,7 +7,7 @@ import { EventManager } from "../event-manager"; export class Event_LoadingChange extends Event_Base { /** - * loading中 + * 当前是否loading中 */ static isLoading: boolean = false; diff --git a/src/app/babylon/model/data/institution/facility/property-data/out/property-data-pl.ts b/src/app/babylon/model/data/institution/facility/property-data/out/property-data-pl.ts index d9775ef..bb89bb9 100644 --- a/src/app/babylon/model/data/institution/facility/property-data/out/property-data-pl.ts +++ b/src/app/babylon/model/data/institution/facility/property-data/out/property-data-pl.ts @@ -16,7 +16,8 @@ export class tableRow { export class PropertyData_PL extends PropertyData_Base { direction: number = 0; //毗邻所属方向 0,1,2,3 --- 东南西北 - info: string = ""; + textDirection: string = "";//用户手输的方向 + info: string = ""; //用户输入的内容 tableData: tableData[] = []; constructor(key: string, direction: number, info: string, tableData: tableData[]) { super(key, FacilityType.PL); @@ -27,6 +28,7 @@ export class PropertyData_PL extends PropertyData_Base { clone(key: string) { let result = new PropertyData_PL(key, this.direction, this.info, this.tableData); + result.textDirection = this.textDirection; return result; }