陈鹏飞 3 years ago
parent
commit
a96699b30a
  1. 2
      src/app/babylon/controller/event-manager/events/event-loading-change.ts
  2. 4
      src/app/babylon/model/data/institution/facility/property-data/out/property-data-pl.ts

2
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;

4
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;
}

Loading…
Cancel
Save