@kengic/vue 0.28.2-beta.23 → 0.28.2-beta.24

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.
@@ -2,6 +2,18 @@
2
2
  * DDA 界面标识常量.
3
3
  */
4
4
  export declare const FORM_IDS: {
5
+ /**
6
+ * 环穿可视化:日志.
7
+ */
8
+ KG_CIRCLE_VIS__LOG: string;
9
+ /**
10
+ * 环穿可视化:小车信息汇总.
11
+ */
12
+ KG_CIRCLE_VIS__RGV_SUMMARY: string;
13
+ /**
14
+ * 环穿可视化:任务信息汇总.
15
+ */
16
+ KG_CIRCLE_VIS__TASK_SUMMARY: string;
5
17
  KG_PAGE_DDA__CREATE__BUTTON: string;
6
18
  KG_SQL_CLIENT__RESULT_TAB: string;
7
19
  /**
@@ -1,13 +1,26 @@
1
1
  import { Q } from '@thymine/xunee';
2
- import { MapStationDTO, StatusRgvVO } from './KgCircleVis.vm';
3
2
  /** 节点类型. */
4
3
  export declare const NODE_KEY: {
5
4
  /** 轨道. */
6
5
  PATH: string;
7
6
  /** 小车. */
8
7
  RGV: string;
9
- /** 站台. */
8
+ /** 小车:托盘. */
9
+ RGV_UI_CONTAINER: string;
10
+ /** 小车:选中. */
11
+ RGV_UI_SELECT: string;
12
+ /** 小车:小车编号. */
13
+ RGV_UI_TEXT: string;
14
+ /** 站点. */
10
15
  STATION: string;
16
+ /** 站点:方向. */
17
+ STATION_UI_ARROW: string;
18
+ /** 站点:有货. */
19
+ STATION_UI_CENTER_RECT: string;
20
+ /** 站点:选中. */
21
+ STATION_UI_SELECT: string;
22
+ /** 站点:线体编号. */
23
+ STATION_UI_TEXT: string;
11
24
  };
12
25
  export declare type IUseDraw = {
13
26
  /**
@@ -15,17 +28,9 @@ export declare type IUseDraw = {
15
28
  */
16
29
  draw(param?: IUseDrawDrawParam): void;
17
30
  /**
18
- * 选中小车.
19
- *
20
- * @param rgv 小车. 如果为空, 表示清空选中.
21
- */
22
- selectRgv(rgv: StatusRgvVO | null): void;
23
- /**
24
- * 选中站点.
25
- *
26
- * @param station 站点. 如果为空, 表示清空选中.
31
+ * 选中小车或者选中站点发生变更.
27
32
  */
28
- selectStation(station: MapStationDTO | null): void;
33
+ onSelectChange(): void;
29
34
  };
30
35
  declare type IUseDrawDrawParam = {
31
36
  /**
@@ -0,0 +1,5 @@
1
+ import './KgCircleVis.css';
2
+ /**
3
+ * 环穿可视化:小车信息.
4
+ */
5
+ export declare const KgCircleVisTabRgv: 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<{}>>, {}>;
@@ -149,13 +149,13 @@ export interface IKgCircleVisStoreState {
149
149
  */
150
150
  areaSelectValue: string | null;
151
151
  /**
152
- * 画布:当前选中的小车.
152
+ * 画布:当前选中的小车列表.
153
153
  */
154
- canvasCurrentRgv: StatusRgvVO | null;
154
+ canvasCurrentRgvList: Array<StatusRgvVO>;
155
155
  /**
156
- * 画布:当前选中的站点.
156
+ * 画布:当前选中的站点列表.
157
157
  */
158
- canvasCurrentStation: MapStationDTO | null;
158
+ canvasCurrentStationList: Array<MapStationDTO>;
159
159
  /**
160
160
  * 画布:图形地图数据列表. 等待被绘制的地图数据列表, 每次绘制都从队首取一个数据进行绘制, 当队列为空时暂停绘制.
161
161
  */
@@ -192,8 +192,8 @@ export interface IKgCircleVisStoreState {
192
192
  export interface IKgCircleVisStoreGetters {
193
193
  getAreaSelectIsRequesting(): boolean;
194
194
  getAreaSelectValue(): string | null;
195
- getCanvasCurrentRgv(): StatusRgvVO | null;
196
- getCanvasCurrentStation(): MapStationDTO | null;
195
+ getCanvasCurrentRgvList(): Array<StatusRgvVO>;
196
+ getCanvasCurrentStationList(): Array<MapStationDTO>;
197
197
  getCanvasMapDataList(): Array<MapDTO>;
198
198
  getCanvasMapIsRequesting(): boolean;
199
199
  getCanvasStatusData(): StatusDTO | null;
@@ -222,8 +222,8 @@ export interface IKgCircleVisStoreActions {
222
222
  pushCanvasStatusDataList(value: StatusDTO | null | undefined): void;
223
223
  setAreaSelectIsRequesting(value: boolean | null | undefined): void;
224
224
  setAreaSelectValue(value: string | null | undefined): void;
225
- setCanvasCurrentRgv(value: StatusRgvVO | null | undefined): void;
226
- setCanvasCurrentStation(value: MapStationDTO | null | undefined): void;
225
+ setCanvasCurrentRgvList(value: Array<StatusRgvVO> | null | undefined): void;
226
+ setCanvasCurrentStationList(value: Array<MapStationDTO> | null | undefined): void;
227
227
  setCanvasMapDataList(value: Array<MapDTO> | null | undefined): void;
228
228
  setCanvasMapIsRequesting(value: boolean | null | undefined): void;
229
229
  setCanvasStatusData(value: StatusDTO | null | undefined): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kengic/vue",
3
- "version": "0.28.2-beta.23",
3
+ "version": "0.28.2-beta.24",
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",