目录修改
This commit is contained in:
parent
82ef30607f
commit
a2d2d3ef33
@ -1,8 +1,6 @@
|
||||
import { GraphicState, distance2, getRectangleCenter } from 'jl-graphic';
|
||||
import { GPConsts } from './PlatformConfig';
|
||||
import { JlPlatform } from './JlPlatform';
|
||||
import { GPStation } from '../Station/GPStation';
|
||||
import { JlSection } from '../Section/common/Section';
|
||||
import { GraphicState } from 'jl-graphic';
|
||||
import { GPConsts } from './common/PlatformConfig';
|
||||
import { JlPlatform } from './common/JlPlatform';
|
||||
|
||||
export interface IGPPlatformState extends GraphicState {
|
||||
id?: number;
|
||||
|
@ -1,7 +1,6 @@
|
||||
import { GraphicState, distance2, getRectangleCenter } from 'jl-graphic';
|
||||
import { THConsts } from './PlatformConfig';
|
||||
import { JlPlatform, DoorCodeLozenge } from './JlPlatform';
|
||||
import { JlSection } from '../Section/common/Section';
|
||||
import { GraphicState } from 'jl-graphic';
|
||||
import { THConsts } from './common/PlatformConfig';
|
||||
import { JlPlatform, DoorCodeLozenge } from './common/JlPlatform';
|
||||
import { THStation } from '../Station/THStation';
|
||||
|
||||
export interface ITHPlatformState extends GraphicState {
|
||||
|
@ -13,8 +13,8 @@ import {
|
||||
LozengeConstsConfig,
|
||||
PlatformConstsConfig,
|
||||
} from './PlatformConfig';
|
||||
import { JlSection } from '../Section/common/Section';
|
||||
import { JlStation } from '../Station/JlStation';
|
||||
import { JlSection } from '../../Section/common/Section';
|
||||
import { JlStation } from '../../Station/common/JlStation';
|
||||
|
||||
//子元素--矩形
|
||||
class RectGraphic extends Container {
|
@ -1,8 +1,8 @@
|
||||
import { JlGraphicTemplate } from 'jl-graphic';
|
||||
import { JlPlatform } from './JlPlatform';
|
||||
import { IPlatformData } from './PlatformConfig';
|
||||
import { ITHPlatformState, THPlatform } from './THPlatform';
|
||||
import { GPPlatform, IGPPlatformState } from './GPPlatform';
|
||||
import { ITHPlatformState, THPlatform } from '../THPlatform';
|
||||
import { GPPlatform, IGPPlatformState } from '../GPPlatform';
|
||||
import { StyleType } from 'common/common';
|
||||
|
||||
export class PlatformTemplate extends JlGraphicTemplate<JlPlatform> {
|
@ -1,7 +1,7 @@
|
||||
import {
|
||||
JlSection as SectionBase,
|
||||
SectionDisplayConfig,
|
||||
} from '../common/Section';
|
||||
} from './common/Section';
|
||||
|
||||
const displayConfig: SectionDisplayConfig = {
|
||||
lineColor: '#5578b6',
|
||||
@ -16,4 +16,4 @@ export class Section extends SectionBase {
|
||||
}
|
||||
}
|
||||
|
||||
export { SectionTemplate } from '../common/Section';
|
||||
export { SectionTemplate } from './common/Section';
|
@ -1,5 +1,5 @@
|
||||
import { GraphicState } from 'jl-graphic';
|
||||
import { JlStation } from './JlStation';
|
||||
import { JlStation } from './common/JlStation';
|
||||
import { StyleType } from 'common/common';
|
||||
|
||||
export interface IGPStationState extends GraphicState {
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { GraphicState } from 'jl-graphic';
|
||||
import { ConstrolGraphic, JlStation } from './JlStation';
|
||||
import { THConsts } from './StationConfig';
|
||||
import { ConstrolGraphic, JlStation } from './common/JlStation';
|
||||
import { THConsts } from './common/StationConfig';
|
||||
import { StyleType } from 'common/common';
|
||||
|
||||
export interface ITHStationState extends GraphicState {
|
||||
|
@ -1,8 +1,8 @@
|
||||
import { JlGraphicTemplate } from 'jl-graphic';
|
||||
import { JlStation } from './JlStation';
|
||||
import { IStationData } from './StationConfig';
|
||||
import { THStation, ITHStationState } from './THStation';
|
||||
import { GPStation, IGPStationState } from './GPStation';
|
||||
import { THStation, ITHStationState } from '../THStation';
|
||||
import { GPStation, IGPStationState } from '../GPStation';
|
||||
import { StyleType } from 'common/common';
|
||||
|
||||
export class StationTemplate extends JlGraphicTemplate<JlStation> {
|
Loading…
Reference in New Issue
Block a user