@jnrs/lingshu-smart 2.2.46 → 2.2.47

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (30) hide show
  1. package/dist/components/debug/DataLogPanel.vue.d.ts +16 -1
  2. package/dist/components/debug/ScriptRunner/ConfigPanel.vue.d.ts +0 -1
  3. package/dist/components/debug/ScriptRunner/script.d.ts +12 -3
  4. package/dist/components/index.js +4930 -4674
  5. package/dist/components/preview/index.vue.d.ts +1321 -1555
  6. package/dist/controller/AppController.d.ts +10 -1
  7. package/dist/{guards-aLOXCeCF.js → guards-Bi8oNtaY.js} +2 -2
  8. package/dist/index.js +1 -1
  9. package/dist/lingshu-smart/cases.json +2679 -2656
  10. package/dist/lingshu-smart/wsProxyConfig.json +159 -138
  11. package/dist/playground/ViewPageDemo.vue.d.ts +2662 -3130
  12. package/dist/stores/index.js +1 -1
  13. package/dist/stores/useAppStore.d.ts +4016 -4718
  14. package/dist/stores/useDataStore.d.ts +4527 -5220
  15. package/dist/stores/useDebugStore.d.ts +4 -1
  16. package/dist/types/components/operating.types.d.ts +8 -8
  17. package/dist/types/guards.d.ts +3 -1
  18. package/dist/types/models/config.types.d.ts +18 -4
  19. package/dist/types/models/operating.types.d.ts +23 -33
  20. package/dist/ui/abstract/ModelAbs.d.ts +5 -0
  21. package/dist/ui/components/StationSlotGroup.d.ts +2 -2
  22. package/dist/ui/models/DoubleJointRobot.d.ts +2 -0
  23. package/dist/ui/models/MachineTool.d.ts +0 -1
  24. package/dist/ui/models/Pallet.d.ts +12 -7
  25. package/dist/ui/models/Rail.d.ts +9 -2
  26. package/dist/ui/models/ResourceOperationWindow.d.ts +2 -0
  27. package/dist/ui/models/Rgv.d.ts +2 -4
  28. package/dist/ui/models/ShuttleStation.d.ts +0 -2
  29. package/dist/{useAppStore-CVyLAMtL.js → useAppStore-CevWqcmT.js} +1588 -1566
  30. package/package.json +1 -1
@@ -13,6 +13,7 @@ export declare const useDebugStore: import('pinia').StoreDefinition<"@jnrs/lings
13
13
  debugPanelVisible: import('vue').Ref<boolean, boolean>;
14
14
  scriptSteps: import('vue').WritableComputedRef<ScriptStep[], ScriptStep[]>;
15
15
  setScriptSteps: (list: ScriptStep[]) => void;
16
+ scriptLooping: import('vue').WritableComputedRef<boolean, boolean>;
16
17
  activeCaseId: import('vue').WritableComputedRef<string, string>;
17
18
  setWsProxyActiveCaseId: (caseId: string) => void;
18
19
  wsProxyManualModified: import('vue').WritableComputedRef<boolean, boolean>;
@@ -40,6 +41,7 @@ export declare const useDebugStore: import('pinia').StoreDefinition<"@jnrs/lings
40
41
  debugPanelVisible: import('vue').Ref<boolean, boolean>;
41
42
  scriptSteps: import('vue').WritableComputedRef<ScriptStep[], ScriptStep[]>;
42
43
  setScriptSteps: (list: ScriptStep[]) => void;
44
+ scriptLooping: import('vue').WritableComputedRef<boolean, boolean>;
43
45
  activeCaseId: import('vue').WritableComputedRef<string, string>;
44
46
  setWsProxyActiveCaseId: (caseId: string) => void;
45
47
  wsProxyManualModified: import('vue').WritableComputedRef<boolean, boolean>;
@@ -56,7 +58,7 @@ export declare const useDebugStore: import('pinia').StoreDefinition<"@jnrs/lings
56
58
  toggleTheme: () => void;
57
59
  showDebugPanel: () => void;
58
60
  hideDebugPanel: () => void;
59
- }, "logLevel" | "shadowsEnabled" | "animationsEnabled" | "fpsMode" | "interactionsDisabled" | "locale" | "theme" | "wsProxyManualModified" | "perfStatsCollapsed" | "scriptSteps" | "activeCaseId">, Pick<{
61
+ }, "logLevel" | "shadowsEnabled" | "animationsEnabled" | "fpsMode" | "interactionsDisabled" | "locale" | "theme" | "wsProxyManualModified" | "perfStatsCollapsed" | "scriptLooping" | "scriptSteps" | "activeCaseId">, Pick<{
60
62
  logLevel: import('vue').WritableComputedRef<LogLevel, LogLevel>;
61
63
  shadowsEnabled: import('vue').WritableComputedRef<boolean, boolean>;
62
64
  animationsEnabled: import('vue').WritableComputedRef<boolean, boolean>;
@@ -67,6 +69,7 @@ export declare const useDebugStore: import('pinia').StoreDefinition<"@jnrs/lings
67
69
  debugPanelVisible: import('vue').Ref<boolean, boolean>;
68
70
  scriptSteps: import('vue').WritableComputedRef<ScriptStep[], ScriptStep[]>;
69
71
  setScriptSteps: (list: ScriptStep[]) => void;
72
+ scriptLooping: import('vue').WritableComputedRef<boolean, boolean>;
70
73
  activeCaseId: import('vue').WritableComputedRef<string, string>;
71
74
  setWsProxyActiveCaseId: (caseId: string) => void;
72
75
  wsProxyManualModified: import('vue').WritableComputedRef<boolean, boolean>;
@@ -16,26 +16,26 @@ export interface IResourceOperating {
16
16
  rawData: IRowData;
17
17
  }
18
18
  /**
19
- * 状态灯操作
19
+ * 状态灯操作(字段缺失即跳过,保持当前状态)
20
20
  */
21
21
  export interface ILightOperating {
22
- color: string;
22
+ color?: string;
23
23
  blinking?: boolean;
24
24
  rotating?: boolean;
25
25
  }
26
26
  /**
27
- * 进度条操作
27
+ * 进度条操作(字段缺失即跳过,保持当前状态)
28
28
  */
29
29
  export interface IProgressOperating {
30
- percent: number;
31
- textContent: string;
30
+ percent?: number;
31
+ textContent?: string;
32
32
  }
33
33
  /**
34
- * 出入口操作
34
+ * 出入口操作(字段缺失即跳过,保持当前状态)
35
35
  */
36
36
  export interface IEntranceOperating {
37
- isIn: boolean;
38
- isOut: boolean;
37
+ isIn?: boolean;
38
+ isOut?: boolean;
39
39
  }
40
40
  /**
41
41
  * 子组件运转状态的联合类型
@@ -3,9 +3,11 @@ export declare function isMachineTool(layer: ILayer | null): layer is import('./
3
3
  export declare function hasStationSlotGroup(layer: ILayer | null): layer is Extract<ILayer, {
4
4
  stationSlotGroup?: any;
5
5
  }>;
6
- export declare function isStationSlotGroupBoth(layer: ILayer | null): layer is Extract<ILayer, {
6
+ export declare function isStationSlotGroupBoth(layer: ILayer | null): layer is Exclude<Extract<ILayer, {
7
7
  stationSlotGroupPallet?: any;
8
8
  stationSlotGroupTool?: any;
9
+ }>, {
10
+ className: EnumModel.PALLET;
9
11
  }>;
10
12
  export declare function hasStationSlotLayers(layer: ILayer | null): layer is Extract<ILayer, {
11
13
  stationSlotGroups?: any[];
@@ -11,6 +11,7 @@ export interface IModel extends IBaseConfig, IEventState {
11
11
  nameplate?: string;
12
12
  lightEnabled?: boolean;
13
13
  nameplateEnabled?: boolean;
14
+ progressEnabled?: boolean;
14
15
  model?: string;
15
16
  manufacturer?: string;
16
17
  group?: string;
@@ -150,16 +151,29 @@ export interface IResourceStoreConfig extends IModel {
150
151
  stationSlotGroupTool?: IStationSlotGroupConfig;
151
152
  }
152
153
  /**
153
- * 托盘(独立设备)
154
- * 参考 ResourceStore:带铭牌、状态灯;主体背景色可配置(默认 #3C3C3C)
155
- * 支持托盘/刀具两个独立工位组
154
+ * 通用托盘工位层配置
155
+ */
156
+ export interface IPalletLayerConfig {
157
+ /** 层索引(从 1 开始) */
158
+ index: number;
159
+ /** 工位组配置(层内工位 resourceType 可任意配置,托盘或刀具) */
160
+ stationSlotGroup: IStationSlotGroupConfig;
161
+ }
162
+ /**
163
+ * 通用托盘(独立设备)
164
+ * 参考接驳站:支持多层工位组(每层一个工位组,可任意放置若干层);
165
+ * 层内工位 resourceType 可任意配置(托盘/刀具),替代原刀盘功能;
166
+ * 主体背景色可配置(默认 #3C3C3C),带铭牌、状态灯。
156
167
  */
157
168
  export interface IPalletConfig extends IModel {
158
169
  className: EnumModel.PALLET;
159
170
  /** 主体背景色(默认 '#3C3C3C') */
160
171
  backgroundColor?: string;
161
- flowOptions?: IFlowConfig;
172
+ /** 多工位层配置数组(一层=一个工位组) */
173
+ stationSlotGroups?: IPalletLayerConfig[];
174
+ /** 兼容旧配置:托盘工位组(无 stationSlotGroups 时迁移为第 1 层) */
162
175
  stationSlotGroupPallet?: IStationSlotGroupConfig;
176
+ /** 兼容旧配置:刀具工位组(无 stationSlotGroups 时迁移为第 2 层) */
163
177
  stationSlotGroupTool?: IStationSlotGroupConfig;
164
178
  linkEquipId?: string;
165
179
  }
@@ -4,12 +4,14 @@ import { ILightOperating, IProgressOperating, IEntranceOperating, IResourceOpera
4
4
  /** 操作类型:model 画布模型操作;resource 全局资源操作;resetAll 全部复位操作 */
5
5
  export type EnumOperatingType = 'model' | 'resource' | 'resetAll';
6
6
  /**
7
- * 设备运转基类
7
+ * 设备运转基类(业务字段均为「缺失即跳过」语义:未携带的字段不设置,保持模型当前状态)
8
8
  */
9
9
  export interface IModelOperating {
10
10
  operatingType?: 'model';
11
11
  id: string;
12
12
  className: EnumModel;
13
+ /** 工位序号:同 id 多实例(同设备多工位 UI)时的目标实例消歧;缺省时回退 resource.index */
14
+ stationIndex?: number;
13
15
  rawData: IRowData;
14
16
  resource?: IResourceOperating;
15
17
  }
@@ -58,11 +60,11 @@ export interface ILoadingStationOperating extends IModelOperating {
58
60
  export interface IShuttleStationOperating extends IModelOperating {
59
61
  className: EnumModel.SHUTTLE_STATION;
60
62
  light?: Omit<ILightOperating, 'rotating'>;
61
- /** 各层工位组状态灯颜色,键为层索引(1-based),值为状态码或颜色字符串
62
- * 代理器 dictColorMap / objDict 转换后值为颜色字符串;未转换时值为状态数字码
63
- * 如 { 1: 'red', 2: 100, 3: 'green' }
63
+ /**
64
+ * 各层工位组状态灯颜色,键为层索引(1-based),值为颜色字符串(由消息侧完成状态码→颜色转换)
65
+ * 如 { 1: '#FF4444', 2: '#00FF7F' }
64
66
  */
65
- layerLightColor?: Record<number, number | string>;
67
+ layerLightColor?: Record<number, string>;
66
68
  /**
67
69
  * 各层工位组状态灯闪烁,键为层索引(1-based),值为是否闪烁(配合 layerLightColor 状态灯使用)
68
70
  * 如 { 1: false, 2: true, 3: true }
@@ -83,13 +85,6 @@ export interface IMaterialTrackOperating extends IModelOperating {
83
85
  /** 各层工位组显示状态,键为层索引(1-based),值为是否可见(通过工位组 visible 属性显隐) */
84
86
  layerVisible?: Record<number, boolean>;
85
87
  }
86
- /**
87
- * 打标机站点状态
88
- */
89
- export interface ILaserSiteState {
90
- site: number;
91
- active: boolean;
92
- }
93
88
  /**
94
89
  * 打标机运转状态
95
90
  */
@@ -98,7 +93,9 @@ export interface IMarkingMachineOperating extends IModelOperating {
98
93
  light?: Omit<ILightOperating, 'rotating'>;
99
94
  progress?: IProgressOperating;
100
95
  entrance?: IEntranceOperating;
101
- laserSiteNumberArray?: ILaserSiteState[];
96
+ /** 各激光工位是否打标中,键为工位序号(1-based),值为是否激活
97
+ * 如 { 1: true, 2: false }(与 layerVisible 等「序号→状态」字段结构统一) */
98
+ laserSites?: Record<number, boolean>;
102
99
  }
103
100
  /**
104
101
  * 清洗机运转状态
@@ -146,13 +143,9 @@ export interface IRGVOperating extends IModelOperating {
146
143
  forkZ?: number;
147
144
  }
148
145
  /**
149
- * 轨道运转状态
146
+ * 轨道运转状态(已移除:拖链定位由画布内部联动驱动——设备移动时逐帧跟随,
147
+ * 不再提供 socket 消息驱动的入口,避免消息侧携带其他设备 id(botId)实现联动)
150
148
  */
151
- export interface IRailOperating extends IModelOperating {
152
- className: EnumModel.RAIL;
153
- x?: number;
154
- botId?: string;
155
- }
156
149
  /**
157
150
  * 资源库运转状态
158
151
  */
@@ -161,13 +154,14 @@ export interface IResourceStoreOperating extends IModelOperating {
161
154
  light?: ILightOperating;
162
155
  x?: number;
163
156
  resource?: IResourceOperating;
164
- /** 各工位背景颜色,键为工位序号 index(1-based),值为状态码或颜色字符串
165
- * 代理器转换后值为颜色字符串;未转换时值为状态数字码(内部映射为颜色)
166
- * 如 { 1: 'red', 2: 100, 3: '#66DC7A' } */
167
- stationColor?: Record<number, number | string>;
157
+ /** 各工位背景颜色,键为工位序号 index(1-based),值为颜色字符串(由消息侧完成状态码→颜色转换)
158
+ * 如 { 1: '#FF4444', 2: '#00FF7F' } */
159
+ stationColor?: Record<number, string>;
168
160
  }
169
161
  /**
170
- * 托盘运转状态
162
+ * 通用托盘运转状态
163
+ * resource 支持多层工位组:通过 resource.layer(1-based)定位到指定层;
164
+ * 未传入 layer 时默认识别为第一层。
171
165
  */
172
166
  export interface IPalletOperating extends IModelOperating {
173
167
  className: EnumModel.PALLET;
@@ -175,10 +169,8 @@ export interface IPalletOperating extends IModelOperating {
175
169
  x?: number;
176
170
  y?: number;
177
171
  resource?: IResourceOperating;
178
- /** 各工位背景颜色,键为工位序号 index(1-based),值为状态码或颜色字符串
179
- * 代理器转换后值为颜色字符串;未转换时值为状态数字码(内部映射为颜色)
180
- * 如 { 1: 'red', 2: 100, 3: '#66DC7A' } */
181
- stationColor?: Record<number, number | string>;
172
+ /** 各工位背景颜色,键为工位序号 index(1-based),值为颜色字符串(由消息侧完成状态码→颜色转换) */
173
+ stationColor?: Record<number, string>;
182
174
  }
183
175
  /**
184
176
  * 资源操作窗口运转状态
@@ -187,12 +179,10 @@ export interface IResourceOperationWindowOperating extends IModelOperating {
187
179
  className: EnumModel.RESOURCE_OPERATION_WINDOW;
188
180
  light?: Omit<ILightOperating, 'rotating'>;
189
181
  resource?: IResourceOperating;
190
- /** 各工位背景颜色,键为工位序号 index(1-based),值为状态码或颜色字符串
191
- * 代理器转换后值为颜色字符串;未转换时值为状态数字码(内部映射为颜色)
192
- * 如 { 1: 'red', 2: 100, 3: '#66DC7A' } */
193
- stationColor?: Record<number, number | string>;
182
+ /** 各工位背景颜色,键为工位序号 index(1-based),值为颜色字符串(由消息侧完成状态码→颜色转换) */
183
+ stationColor?: Record<number, string>;
194
184
  }
195
185
  /**
196
186
  * 设备层运转状态的联合类型
197
187
  */
198
- export type ILayerOperating = IMachineToolOperating | ILoadingStationOperating | IShuttleStationOperating | IMaterialTrackOperating | IMarkingMachineOperating | ICleaningMachineOperating | ISingleJointRobotOperating | IDoubleJointRobotOperating | IRGVOperating | IRailOperating | IResourceStoreOperating | IPalletOperating | IResourceOperationWindowOperating | IGlobalResourceOperating | IResetAllOperating;
188
+ export type ILayerOperating = IMachineToolOperating | ILoadingStationOperating | IShuttleStationOperating | IMaterialTrackOperating | IMarkingMachineOperating | ICleaningMachineOperating | ISingleJointRobotOperating | IDoubleJointRobotOperating | IRGVOperating | IResourceStoreOperating | IPalletOperating | IResourceOperationWindowOperating | IGlobalResourceOperating | IResetAllOperating;
@@ -4,6 +4,11 @@ import { BaseAbs } from './BaseAbs';
4
4
  export declare abstract class ModelAbs<T extends ILayer = ILayer> extends BaseAbs<T> {
5
5
  private eventHandler;
6
6
  protected abstract operating(data: ILayerOperating): void;
7
+ /**
8
+ * 设备沿 x 移动的动画时长(秒)
9
+ * 托盘跟随等联动使用该值保持动画同步;子类可覆盖(如双关节机器人 0.5s)
10
+ */
11
+ get moveDuration(): number;
7
12
  handleOperation: (data: ILayerOperating) => void;
8
13
  /**
9
14
  * 将最近一次 operating 接收到的原始数据写入模型 config 及整棵 UI 树的 data 属性,
@@ -32,9 +32,9 @@ export declare class StationSlotGroup extends ComponentAbs<IStationSlotGroupConf
32
32
  /**
33
33
  * 按工位序号修改工位填充颜色
34
34
  * @param index 工位序号(IStationSlotConfig.index)
35
- * @param color 目标颜色:颜色字符串直接使用,数字状态码内部映射为颜色;缺省时使用工位默认背景色
35
+ * @param color 目标颜色字符串(状态码→颜色由消息侧完成);缺省时使用工位默认背景色
36
36
  */
37
- setSiteWorkingColor(index: number, color?: string | number): void;
37
+ setSiteWorkingColor(index: number, color?: string): void;
38
38
  /**
39
39
  * 判断本组是否包含指定工位序号
40
40
  */
@@ -16,6 +16,8 @@ export declare class DoubleJointRobot extends ModelAbs<IDoubleJointRobotConfig>
16
16
  private stationSlotGroupTool;
17
17
  get currentFixture(): EnumResourceType;
18
18
  set currentFixture(type: EnumResourceType);
19
+ /** 移动动画时长:与 moveX 默认 0.5s 一致,供托盘跟随等联动同步 */
20
+ get moveDuration(): number;
19
21
  protected createUi(): Box;
20
22
  protected operating(data: IDoubleJointRobotOperating): void;
21
23
  protected collectStationSlotGroups(): StationSlotGroup[];
@@ -15,7 +15,6 @@ export declare class MachineTool extends ModelAbs<IMachineToolConfig> {
15
15
  /** 工位容器玻璃背景(isWorking 时呼吸闪动) */
16
16
  private glass;
17
17
  private stationContainerBaseRotation;
18
- private animating;
19
18
  protected createUi(): Box;
20
19
  protected operating(data: IMachineToolOperating): void;
21
20
  /** 玻璃背景呼吸效果:工作中开启动画(明暗往复),结束恢复常亮 */
@@ -3,21 +3,26 @@ import { Box } from 'leafer';
3
3
  import { ModelAbs } from '../abstract/ModelAbs';
4
4
  import { StationSlotGroup } from '../components/StationSlotGroup';
5
5
  /**
6
- * 托盘(独立设备)
7
- * 参考 ResourceStore:带铭牌、状态灯、托盘/刀具双工位组;
8
- * 主体样式参考 ShuttleStation 的 layerContainer(内嵌纹理、溢出隐藏),支持修改背景色。
9
- * operating 支持:light / x / y / resource / stationColor(按工位序号修改工位背景颜色)
6
+ * 通用托盘(独立设备)
7
+ * 参考接驳站的多层工位组结构:可任意放置若干层,每层 = 一个工位组容器(层内工位 resourceType 可托盘或刀具),
8
+ * 替代原刀盘功能;主体样式保留原托盘(内嵌纹理、溢出隐藏),支持修改背景色,带铭牌、状态灯。
9
+ * operating 支持:light / x / y / resource(按层定位,layer 缺省默认识别为第一层)/ stationColor(按工位序号修改工位背景颜色)
10
10
  */
11
11
  export declare class Pallet extends ModelAbs<IPalletConfig> {
12
12
  private static readonly CORNER_RADIUS;
13
+ private static readonly LAYER_PADDING;
14
+ private static readonly LAYER_GAP;
13
15
  private light;
14
- private stationSlotGroupPallet;
15
- private stationSlotGroupTool;
16
+ private layerGroups;
17
+ private resolveLayers;
18
+ private buildLayers;
16
19
  protected createUi(): Box;
17
20
  private moveX;
18
21
  private moveY;
19
22
  protected operating(data: IPalletOperating): void;
20
- /** 按工位序号修改工位背景颜色:在托盘/刀具工位组中查找包含该序号的工位槽并改色 */
23
+ /** 资源增删:data.resource 提供 layer(>0) 时定位到该层;缺省时默认识别为第一层 */
24
+ private handleResourceOperating;
25
+ /** 按工位序号修改工位背景颜色:在所有层工位组中查找包含该序号的工位槽并改色 */
21
26
  private applyStationColor;
22
27
  /**
23
28
  * 判断本托盘是否包含指定工位号
@@ -1,4 +1,4 @@
1
- import { IRailConfig, IRailOperating } from '../../types';
1
+ import { IRailConfig, ILayerOperating } from '../../types';
2
2
  import { Box } from 'leafer';
3
3
  import { ModelAbs } from '../abstract/ModelAbs';
4
4
  /**
@@ -8,7 +8,14 @@ export declare class Rail extends ModelAbs<IRailConfig> {
8
8
  private static readonly DEFAULT_HEIGHT;
9
9
  private chains;
10
10
  protected createUi(): Box;
11
- protected operating(data: IRailOperating): void;
11
+ /** 拖链不消费 socket operating:定位由画布内部联动驱动
12
+ * (设备移动时 AppController 逐帧调用 followChain,保证拖链与设备相对静止) */
13
+ protected operating(_data: ILayerOperating): void;
14
+ /**
15
+ * 逐帧跟随(AppController 托盘/拖链联动调用):
16
+ * 以设备实时位置直接驱动拖链,保证拖链与设备移动时相对静止
17
+ */
18
+ followChain(botId: string, x: number): void;
12
19
  private initChains;
13
20
  private createChain;
14
21
  private moveChain;
@@ -14,6 +14,8 @@ import { StationSlotGroup } from '../components/StationSlotGroup';
14
14
  export declare class ResourceOperationWindow extends ModelAbs<IResourceOperationWindowConfig> {
15
15
  private static readonly DEFAULT_RING_THICKNESS;
16
16
  private static readonly LIGHT_Y_OFFSET;
17
+ /** 状态灯固定宽度(与资源库状态灯一致) */
18
+ private static readonly LIGHT_WIDTH;
17
19
  private static readonly NAME_PLATE_Y_OFFSET;
18
20
  private static readonly LIGHT_CORNER_RADIUS;
19
21
  /** 环状矩形外壁填充色 */
@@ -20,15 +20,13 @@ export declare class Rgv extends ModelAbs<IRGVConfig> {
20
20
  private handleRotate;
21
21
  private moveX;
22
22
  /**
23
- * forks 前后移动
23
+ * forks 前后移动(直接赋值,高频移动不走动画)
24
24
  * @param percent 移动比例,[-1,1]
25
- * @param duration 动画持续时间
26
25
  */
27
26
  private handleForkMove;
28
27
  /**
29
- * forks 上下移动
28
+ * forks 上下移动(直接赋值,高频移动不走动画)
30
29
  * @param percent 移动比例,[0,1]
31
- * @param duration 动画持续时间
32
30
  */
33
31
  private handleForkMoveUpDown;
34
32
  }
@@ -32,6 +32,4 @@ export declare class ShuttleStation extends ModelAbs<IShuttleStationConfig> {
32
32
  /** 资源增删:data.resource 提供 layer(>0) 时定位到该层;缺省时仅当唯一一层包含该工位序号才操作 */
33
33
  private handleResourceOperating;
34
34
  private applyLayerLightColor;
35
- private resolveStatusColor;
36
- private statusToColor;
37
35
  }