@kengic/vue 0.29.1-beta.0 → 0.29.1-beta.10
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.
- package/CHANGELOG.md +1 -1
- package/README.md +3 -2
- package/dist/index.css +1 -1
- package/dist/kengic-vue.js +27675 -27177
- package/dist/project/build/script/postBuild.ts +1 -1
- package/dist/src/page/KgCircleVis/components/KgCircleVis.Canvas.service.d.ts +15 -3
- package/dist/src/page/KgCircleVis/components/KgCircleVis.Setting.d.ts +5 -0
- package/dist/src/page/KgCircleVis/components/KgCircleVis.store.d.ts +78 -4
- package/dist/src/page/KgCircleVis/components/KgCircleVis.vm.d.ts +5 -1
- package/package.json +1 -1
@@ -1,15 +1,27 @@
|
|
1
1
|
/** 节点类型. */
|
2
2
|
export declare const NODE_KEY: {
|
3
|
+
/** 巷道. */
|
4
|
+
AISLE: string;
|
5
|
+
/** 巷道:巷道编号. */
|
6
|
+
AISLE__UI__TEXT: string;
|
3
7
|
/** 轨道. */
|
4
8
|
PATH: string;
|
5
9
|
/** 小车. */
|
6
10
|
RGV: string;
|
11
|
+
/** 小车:路线. */
|
12
|
+
RGV__PATH: string;
|
13
|
+
/** 小车:路线:小车和路线的连线. */
|
14
|
+
RGV__PATH__LINE: string;
|
15
|
+
/** 小车:路线:路线上的小车. */
|
16
|
+
RGV__PATH__RGV: string;
|
7
17
|
/** 小车:托盘. */
|
8
|
-
|
18
|
+
RGV__UI__CONTAINER: string;
|
9
19
|
/** 小车:选中. */
|
10
|
-
|
20
|
+
RGV__UI__SELECT: string;
|
11
21
|
/** 小车:小车编号. */
|
12
|
-
|
22
|
+
RGV__UI__TEXT: string;
|
23
|
+
/** 小车:小车编号背景. */
|
24
|
+
RGV__UI__TEXT_BACKGROUND: string;
|
13
25
|
/** 站点. */
|
14
26
|
STATION: string;
|
15
27
|
/** 站点:方向. */
|
@@ -0,0 +1,5 @@
|
|
1
|
+
import './KgCircleVis.css';
|
2
|
+
/**
|
3
|
+
* 环穿可视化:设置面板.
|
4
|
+
*/
|
5
|
+
export declare const KgCircleVisSetting: import("vue").DefineComponent<{}, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
@@ -160,6 +160,55 @@ export interface IKgCircleVisStoreState {
|
|
160
160
|
* 库区下拉列表:当前选中的值.
|
161
161
|
*/
|
162
162
|
$AreaSelect$value: string | null;
|
163
|
+
/**
|
164
|
+
* 画布:设置:当前展开面板.
|
165
|
+
*/
|
166
|
+
$Canvas$Setting$CollapseActiveKey: Array<string>;
|
167
|
+
/**
|
168
|
+
* 画布:设置:是否绘制巷道.
|
169
|
+
*/
|
170
|
+
$Canvas$Setting$IsAisleVisible: boolean;
|
171
|
+
/**
|
172
|
+
* 画布:设置:是否显示.
|
173
|
+
*/
|
174
|
+
$Canvas$Setting$IsLegendVisible: boolean;
|
175
|
+
/**
|
176
|
+
* 画布:设置:是否绘制小车路线:小车在路线上.
|
177
|
+
*/
|
178
|
+
$Canvas$Setting$IsRgvOnPath: boolean;
|
179
|
+
/**
|
180
|
+
* 画布:设置:是否绘制小车路线:是否显示垂直连线.
|
181
|
+
*/
|
182
|
+
$Canvas$Setting$IsRgvPathLineVisible: boolean;
|
183
|
+
/**
|
184
|
+
* 画布:设置:是否绘制小车路线.
|
185
|
+
*/
|
186
|
+
$Canvas$Setting$IsRgvPathVisible: boolean;
|
187
|
+
/**
|
188
|
+
* 画布:设置:选中是否闪烁.
|
189
|
+
*/
|
190
|
+
$Canvas$Setting$IsSelectBlinkOn: boolean;
|
191
|
+
/**
|
192
|
+
* 画布:设置:小车间距.
|
193
|
+
*/
|
194
|
+
$Canvas$Setting$RgvMarginY: number;
|
195
|
+
/**
|
196
|
+
* <p>画布:设置:小车属性.</p>
|
197
|
+
* <ul>
|
198
|
+
* <li>key: 小车编号</li>
|
199
|
+
* <li>value: 小车属性</li>
|
200
|
+
* </ul>
|
201
|
+
*/
|
202
|
+
$Canvas$Setting$RgvProperty: Record<string, {
|
203
|
+
/**
|
204
|
+
* 路径颜色.
|
205
|
+
*/
|
206
|
+
pathColor: string;
|
207
|
+
}>;
|
208
|
+
/**
|
209
|
+
* 画布:设置:闪烁间隔毫秒.
|
210
|
+
*/
|
211
|
+
$Canvas$Setting$SelectBlinkInterval: number;
|
163
212
|
/**
|
164
213
|
* 画布:当前选中的小车列表.
|
165
214
|
*/
|
@@ -193,9 +242,9 @@ export interface IKgCircleVisStoreState {
|
|
193
242
|
*/
|
194
243
|
$Canvas$statusIsRequesting: boolean;
|
195
244
|
/**
|
196
|
-
*
|
245
|
+
* 设置:是否显示.
|
197
246
|
*/
|
198
|
-
$
|
247
|
+
$Setting$isVisible: boolean;
|
199
248
|
/**
|
200
249
|
* 标签页:当前标签页.
|
201
250
|
*/
|
@@ -216,6 +265,22 @@ export interface IKgCircleVisStoreState {
|
|
216
265
|
export interface IKgCircleVisStoreGetters {
|
217
266
|
$AreaSelect$getIsRequesting(): boolean;
|
218
267
|
$AreaSelect$getValue(): string | null;
|
268
|
+
/**
|
269
|
+
* 获取小车路径颜色.
|
270
|
+
*
|
271
|
+
* @param rgvNo 小车编号.
|
272
|
+
* @param index 小车序号.
|
273
|
+
*/
|
274
|
+
$Canvas$Setting$RgvProperty$pathColor(): (rgvNo?: string | null | undefined, index?: number | null | undefined) => string;
|
275
|
+
$Canvas$Setting$getCollapseActiveKey(): Array<string>;
|
276
|
+
$Canvas$Setting$getIsAisleVisible(): boolean;
|
277
|
+
$Canvas$Setting$getIsLegendVisible(): boolean;
|
278
|
+
$Canvas$Setting$getIsRgvOnPath(): boolean;
|
279
|
+
$Canvas$Setting$getIsRgvPathLineVisible(): boolean;
|
280
|
+
$Canvas$Setting$getIsRgvPathVisible(): boolean;
|
281
|
+
$Canvas$Setting$getIsSelectBlinkOn(): boolean;
|
282
|
+
$Canvas$Setting$getRgvMarginY(): number;
|
283
|
+
$Canvas$Setting$getSelectBlinkInterval(): number;
|
219
284
|
$Canvas$getCurrentRgvList(): Array<StatusRgvVO>;
|
220
285
|
$Canvas$getCurrentStationList(): Array<MapStationVO>;
|
221
286
|
$Canvas$getMapData(): MapDTO | null;
|
@@ -224,11 +289,11 @@ export interface IKgCircleVisStoreGetters {
|
|
224
289
|
$Canvas$getStatusData(): StatusDTO | null;
|
225
290
|
$Canvas$getStatusDataList(): Array<StatusDTO>;
|
226
291
|
$Canvas$getStatusIsRequesting(): boolean;
|
227
|
-
$Legend$getIsVisible(): boolean;
|
228
292
|
/**
|
229
293
|
* 离线区:离线小车列表.
|
230
294
|
*/
|
231
295
|
$Offline$getRgvList(): Array<StatusRgvVO>;
|
296
|
+
$Setting$getIsVisible(): boolean;
|
232
297
|
$Tab$getActiveKey(): string | number;
|
233
298
|
$Tab$getRgvList(): Array<StatusRgvVO>;
|
234
299
|
getGraph(): Q.Graph | null;
|
@@ -237,6 +302,15 @@ export interface IKgCircleVisStoreGetters {
|
|
237
302
|
export interface IKgCircleVisStoreActions {
|
238
303
|
$AreaSelect$setIsRequesting(value: boolean | null | undefined): void;
|
239
304
|
$AreaSelect$setValue(value: string | null | undefined): void;
|
305
|
+
$Canvas$Setting$setCollapseActiveKey(value: Array<string> | null | undefined): void;
|
306
|
+
$Canvas$Setting$setIsAisleVisible(value: boolean | null | undefined): void;
|
307
|
+
$Canvas$Setting$setIsLegendVisible(value: boolean | null | undefined): void;
|
308
|
+
$Canvas$Setting$setIsRgvOnPath(value: boolean | null | undefined): void;
|
309
|
+
$Canvas$Setting$setIsRgvPathLineVisible(value: boolean | null | undefined): void;
|
310
|
+
$Canvas$Setting$setIsRgvPathVisible(value: boolean | null | undefined): void;
|
311
|
+
$Canvas$Setting$setIsSelectBlinkOn(value: boolean | null | undefined): void;
|
312
|
+
$Canvas$Setting$setRgvMarginY(value: number | null | undefined): void;
|
313
|
+
$Canvas$Setting$setSelectBlinkInterval(value: number | null | undefined): void;
|
240
314
|
/**
|
241
315
|
* 画布:往地图数据列尾插入一个数据.
|
242
316
|
*
|
@@ -257,7 +331,7 @@ export interface IKgCircleVisStoreActions {
|
|
257
331
|
$Canvas$setStatusData(value: StatusDTO | null | undefined): void;
|
258
332
|
$Canvas$setStatusDataList(value: Array<StatusDTO> | null | undefined): void;
|
259
333
|
$Canvas$setStatusIsRequesting(value: boolean | null | undefined): void;
|
260
|
-
$
|
334
|
+
$Setting$setIsVisible(value: boolean | null | undefined): void;
|
261
335
|
/**
|
262
336
|
* 标签页:从标签页列表中删除某个小车.
|
263
337
|
*
|
@@ -38,7 +38,7 @@ export declare type MapStationDTO = {
|
|
38
38
|
* 地图数据.
|
39
39
|
*/
|
40
40
|
export declare type MapDTO = {
|
41
|
-
/**
|
41
|
+
/** 站点列表. */
|
42
42
|
conveyor: Array<MapStationVO>;
|
43
43
|
/** 轨道. */
|
44
44
|
map: MapMapDTO;
|
@@ -121,3 +121,7 @@ export declare const TAB_KEY: {
|
|
121
121
|
/** 日志. */
|
122
122
|
LOG: string;
|
123
123
|
};
|
124
|
+
/**
|
125
|
+
* 小车路径颜色列表.
|
126
|
+
*/
|
127
|
+
export declare const PATH_COLOR_LIST: string[];
|
package/package.json
CHANGED