@kengic/vue 0.30.1-beta.56 → 0.30.1-beta.58

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.
@@ -89,6 +89,8 @@ export declare class AgentCreatedMessage {
89
89
  messageId?: string | null;
90
90
  /** 场景ID. */
91
91
  sceneId?: string | null;
92
+ /** 当前所在站点编码. */
93
+ sourceStationCode?: string | null;
92
94
  /** 目标站点ID. */
93
95
  targetStationId?: string | null;
94
96
  /** 时间戳. */
@@ -191,11 +193,14 @@ export declare class AgentDto {
191
193
  z?: number | null;
192
194
  constructor(obj?: AgentDto);
193
195
  }
196
+ /** 更新代理状态. */
194
197
  export declare class AgentStatusUpdateRequest {
195
- /** Agent Id. */
198
+ /** 代理主键. */
196
199
  agentId?: string | null;
197
200
  /** 角度(度),0度表示向右(正X方向),90度表示向上(正Y方向). */
198
201
  angle?: number | null;
202
+ /** 当前站点编号. */
203
+ stationCode?: string | null;
199
204
  /** Status. */
200
205
  status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | null;
201
206
  /** X. */
@@ -1237,27 +1242,35 @@ export declare type IDragDataTransferData = {
1237
1242
  * 节点数据.
1238
1243
  */
1239
1244
  export declare type INodeProperty = {
1245
+ /**
1246
+ * 代理者--当前所在站点编号.
1247
+ */
1248
+ $Agent$CurrentStationCode?: string;
1240
1249
  /**
1241
1250
  * 代理者--移动--当前所在连线.
1242
1251
  */
1243
1252
  $Agent$Move$CurrentEdge?: Q.Edge;
1253
+ /**
1254
+ * 代理者--移动--当前速度.
1255
+ */
1256
+ $Agent$Move$CurrentVelocity?: number;
1244
1257
  /**
1245
1258
  * <p>代理者--移动--移动方向.</p>
1246
1259
  * <p>每个叠盘机的正下方都有一个普通输送机, 因此如果是叠盘, 则是从普通输送机到叠盘机, 此时坐标不会变化, 因此如果是拆盘, 则是从叠盘机到普通输送机, 此时坐标也不会变化,</p>
1247
1260
  */
1248
1261
  $Agent$Move$Direction?: 'UP' | 'DOWN' | 'LEFT' | 'RIGHT' | 'DPJ';
1249
1262
  /**
1250
- * 代理者--移动--起始 X.
1263
+ * 代理者--移动--第一次执行移动的时刻.
1251
1264
  */
1252
- $Agent$Move$FromX?: number;
1265
+ $Agent$Move$FirstMoveTime?: number;
1253
1266
  /**
1254
- * 代理者--移动--起始 Y.
1267
+ * 代理者--移动--是否到达目的站点.
1255
1268
  */
1256
- $Agent$Move$FromY?: number;
1269
+ $Agent$Move$IsArrive?: boolean;
1257
1270
  /**
1258
1271
  * 代理者--移动--是否正在移动.
1259
1272
  */
1260
- $Agent$Move$IsMoving?: boolean;
1273
+ $Agent$Move$IsMoveDoing?: boolean;
1261
1274
  /**
1262
1275
  * 代理者--移动--上一次执行移动的时刻.
1263
1276
  */
@@ -1265,15 +1278,7 @@ export declare type INodeProperty = {
1265
1278
  /**
1266
1279
  * 代理者--移动--目标编码.
1267
1280
  */
1268
- $Agent$Move$ToCode?: string;
1269
- /**
1270
- * 代理者--移动--目标 X.
1271
- */
1272
- $Agent$Move$ToX?: number;
1273
- /**
1274
- * 代理者--移动--目标 Y.
1275
- */
1276
- $Agent$Move$ToY?: number;
1281
+ $Agent$Move$ToStationCode?: string;
1277
1282
  /**
1278
1283
  * 创建者--计时器.
1279
1284
  */
@@ -15,12 +15,6 @@ export interface IKgSimulatorStoreGetters {
15
15
  * @default 16 m/min, 16*1000/(60*1000) mm/ms
16
16
  */
17
17
  $Config$CircularConveyor$Agent$GlobalMaxVelocity: number;
18
- /**
19
- * 配置--环形输送线--代理者--移动动画时间间隔, 单位毫秒.
20
- *
21
- * @default 25 毫秒
22
- */
23
- $Config$CircularConveyor$Agent$MoveAnimationInterval: number;
24
18
  /**
25
19
  * 配置--环形输送线--接口地址--创建代理者.
26
20
  *
@@ -244,12 +238,6 @@ export interface IKgSimulatorStoreActions {
244
238
  * @see IKgSimulatorStoreGetters.$Config$CircularConveyor$Agent$GlobalMaxVelocity
245
239
  */
246
240
  set$Config$CircularConveyor$Agent$GlobalMaxVelocity(value: number | null | undefined): void;
247
- /**
248
- * 配置--环形输送线--代理者--移动动画时间间隔, 单位毫秒. 默认为 25 毫秒.
249
- *
250
- * @see IKgSimulatorStoreGetters.$Config$CircularConveyor$Agent$MoveAnimationInterval
251
- */
252
- set$Config$CircularConveyor$Agent$MoveAnimationInterval(value: number | null | undefined): void;
253
241
  /**
254
242
  * 配置--环形输送线--接口地址--创建代理者. 默认为 '/Agent/CreateAgent'.
255
243
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kengic/vue",
3
- "version": "0.30.1-beta.56",
3
+ "version": "0.30.1-beta.58",
4
4
  "scripts": {
5
5
  "build": "npm run use-node && rimraf dist && vue-tsc && vite build",
6
6
  "build:dev": "npm run use-node && rimraf dist && vue-tsc && vite build --mode development",