@kengic/vue 0.30.1-beta.57 → 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,8 +193,9 @@ export declare class AgentDto {
|
|
|
191
193
|
z?: number | null;
|
|
192
194
|
constructor(obj?: AgentDto);
|
|
193
195
|
}
|
|
196
|
+
/** 更新代理状态. */
|
|
194
197
|
export declare class AgentStatusUpdateRequest {
|
|
195
|
-
/**
|
|
198
|
+
/** 代理主键. */
|
|
196
199
|
agentId?: string | null;
|
|
197
200
|
/** 角度(度),0度表示向右(正X方向),90度表示向上(正Y方向). */
|
|
198
201
|
angle?: number | null;
|
|
@@ -1247,6 +1250,10 @@ export declare type INodeProperty = {
|
|
|
1247
1250
|
* 代理者--移动--当前所在连线.
|
|
1248
1251
|
*/
|
|
1249
1252
|
$Agent$Move$CurrentEdge?: Q.Edge;
|
|
1253
|
+
/**
|
|
1254
|
+
* 代理者--移动--当前速度.
|
|
1255
|
+
*/
|
|
1256
|
+
$Agent$Move$CurrentVelocity?: number;
|
|
1250
1257
|
/**
|
|
1251
1258
|
* <p>代理者--移动--移动方向.</p>
|
|
1252
1259
|
* <p>每个叠盘机的正下方都有一个普通输送机, 因此如果是叠盘, 则是从普通输送机到叠盘机, 此时坐标不会变化, 因此如果是拆盘, 则是从叠盘机到普通输送机, 此时坐标也不会变化,</p>
|
|
@@ -1256,14 +1263,6 @@ export declare type INodeProperty = {
|
|
|
1256
1263
|
* 代理者--移动--第一次执行移动的时刻.
|
|
1257
1264
|
*/
|
|
1258
1265
|
$Agent$Move$FirstMoveTime?: number;
|
|
1259
|
-
/**
|
|
1260
|
-
* 代理者--移动--起始 X.
|
|
1261
|
-
*/
|
|
1262
|
-
$Agent$Move$FromX?: number;
|
|
1263
|
-
/**
|
|
1264
|
-
* 代理者--移动--起始 Y.
|
|
1265
|
-
*/
|
|
1266
|
-
$Agent$Move$FromY?: number;
|
|
1267
1266
|
/**
|
|
1268
1267
|
* 代理者--移动--是否到达目的站点.
|
|
1269
1268
|
*/
|
|
@@ -1271,7 +1270,7 @@ export declare type INodeProperty = {
|
|
|
1271
1270
|
/**
|
|
1272
1271
|
* 代理者--移动--是否正在移动.
|
|
1273
1272
|
*/
|
|
1274
|
-
$Agent$Move$
|
|
1273
|
+
$Agent$Move$IsMoveDoing?: boolean;
|
|
1275
1274
|
/**
|
|
1276
1275
|
* 代理者--移动--上一次执行移动的时刻.
|
|
1277
1276
|
*/
|
|
@@ -1279,15 +1278,7 @@ export declare type INodeProperty = {
|
|
|
1279
1278
|
/**
|
|
1280
1279
|
* 代理者--移动--目标编码.
|
|
1281
1280
|
*/
|
|
1282
|
-
$Agent$Move$
|
|
1283
|
-
/**
|
|
1284
|
-
* 代理者--移动--目标 X.
|
|
1285
|
-
*/
|
|
1286
|
-
$Agent$Move$ToX?: number;
|
|
1287
|
-
/**
|
|
1288
|
-
* 代理者--移动--目标 Y.
|
|
1289
|
-
*/
|
|
1290
|
-
$Agent$Move$ToY?: number;
|
|
1281
|
+
$Agent$Move$ToStationCode?: string;
|
|
1291
1282
|
/**
|
|
1292
1283
|
* 创建者--计时器.
|
|
1293
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.
|
|
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",
|