From aefdab2bb588347edd5bc232740decbe37bdf630 Mon Sep 17 00:00:00 2001 From: liuxianghui <519646741@qq.com> Date: Sat, 27 Nov 2021 15:01:20 +0800 Subject: [PATCH] =?UTF-8?q?=E6=AF=97=E9=82=BB=E6=95=B0=E6=8D=AE=EF=BC=8C?= =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E6=96=B9=E5=90=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../controller/event-manager/events/event-loading-change.ts | 2 +- .../facility/property-data/out/property-data-pl.ts | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) 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; }