@kengic/vue 0.28.2-beta.8 → 0.28.3-beta.0

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 (53) hide show
  1. package/dist/clock-circle-outline.c90a0ae1.mjs +8 -0
  2. package/dist/file-text-outline.bae206dd.mjs +8 -0
  3. package/dist/index.css +1 -1
  4. package/dist/kengic-vue.js +29450 -27070
  5. package/dist/src/api/WMS/Controllers/SqlClientController/ExecutePage.d.ts +16 -0
  6. package/dist/src/api/WMS/Controllers/SqlClientController/index.d.ts +1 -0
  7. package/dist/src/api/WMS/models.d.ts +2 -0
  8. package/dist/src/component/KgCanvas/KgCanvas.d.ts +9 -3
  9. package/dist/src/component/KgCanvas/KgCanvas.service.d.ts +2 -2
  10. package/dist/src/component/KgForm.Item/KgForm.Item.service.d.ts +1 -1
  11. package/dist/src/component/KgForm.Item/components/KgForm.Item.Image.d.ts +6 -0
  12. package/dist/src/component/KgResizable/KgResizable.d.ts +28 -0
  13. package/dist/src/component/KgSubmit/KgSubmit.hooks.d.ts +5 -5
  14. package/dist/src/component/KgSubmit/KgSubmit.store.d.ts +3 -4
  15. package/dist/src/component/KgTable/KgTable.event.d.ts +9 -3
  16. package/dist/src/component/KgTable/KgTable.hooks.d.ts +7 -1
  17. package/dist/src/component/KgTable/KgTable.service.d.ts +1 -1
  18. package/dist/src/component/KgVar/KgVar.hooks.d.ts +11 -1
  19. package/dist/src/component/KgVar/KgVar.store.d.ts +47 -32
  20. package/dist/src/config/config.hooks.d.ts +23 -5
  21. package/dist/src/config/config.store.d.ts +58 -49
  22. package/dist/src/const/const.vm.d.ts +195 -103
  23. package/dist/src/const/form-id.const.d.ts +20 -0
  24. package/dist/src/i18n/cs_CZ.d.ts +9 -0
  25. package/dist/src/i18n/en.d.ts +10 -1
  26. package/dist/src/i18n/es_ES.d.ts +9 -0
  27. package/dist/src/i18n/fr_FR.d.ts +9 -0
  28. package/dist/src/i18n/i18n.setup.d.ts +3 -0
  29. package/dist/src/i18n/km_KH.d.ts +9 -0
  30. package/dist/src/i18n/ko_KR.d.ts +9 -0
  31. package/dist/src/i18n/vi_VN.d.ts +9 -0
  32. package/dist/src/i18n/zh_CN.d.ts +22 -13
  33. package/dist/src/page/KgCircleVis/KgPageCircleVis.d.ts +11 -0
  34. package/dist/src/page/KgCircleVis/components/KgCircleVis.AreaSelect.d.ts +5 -0
  35. package/dist/src/page/KgCircleVis/components/KgCircleVis.Canvas.d.ts +5 -0
  36. package/dist/src/page/KgCircleVis/components/KgCircleVis.Canvas.service.d.ts +51 -0
  37. package/dist/src/page/KgCircleVis/components/KgCircleVis.Legend.d.ts +5 -0
  38. package/dist/src/page/KgCircleVis/components/KgCircleVis.Offline.d.ts +5 -0
  39. package/dist/src/page/KgCircleVis/components/KgCircleVis.Tab.Log.d.ts +5 -0
  40. package/dist/src/page/KgCircleVis/components/KgCircleVis.Tab.Rgv.d.ts +33 -0
  41. package/dist/src/page/KgCircleVis/components/KgCircleVis.d.ts +5 -0
  42. package/dist/src/page/KgCircleVis/components/KgCircleVis.hooks.d.ts +29 -0
  43. package/dist/src/page/KgCircleVis/components/KgCircleVis.store.d.ts +282 -0
  44. package/dist/src/page/KgCircleVis/components/KgCircleVis.vm.d.ts +119 -0
  45. package/dist/src/page/KgCircleVis/index.d.ts +1 -0
  46. package/dist/src/page/KgPageSqlClient/components/KgSqlClient.Editor.d.ts +3 -1
  47. package/dist/src/page/KgPageSqlClient/components/KgSqlClient.Toolbar.Top.d.ts +7 -0
  48. package/dist/src/page/index.d.ts +2 -0
  49. package/dist/src/project/src/api/sys/menu.d.ts +2 -2
  50. package/dist/src/store/index.d.ts +1 -1
  51. package/dist/src/util/kg.util.d.ts +19 -23
  52. package/package.json +10 -7
  53. package/dist/src/page/KgPageSqlClient/components/KgSqlClient.Toolbar.d.ts +0 -7
@@ -104,6 +104,25 @@ declare const _default: {
104
104
  formTitle: string;
105
105
  pleaseSelectVarProfileMaster: string;
106
106
  };
107
+ KgSqlClient: {
108
+ ResultTab: {
109
+ ellapseLabel: string;
110
+ messageLabel: string;
111
+ resultStatusLabel: string;
112
+ rowsAffected: string;
113
+ rowsTotalLabel: string;
114
+ tabTitlePrefix: string;
115
+ };
116
+ Toolbar: {
117
+ Top: {
118
+ deleteCurrentTemplate: string;
119
+ saveAsTemplate: string;
120
+ saveCurrentTemplate: string;
121
+ viewHistory: string;
122
+ viewTemplate: string;
123
+ };
124
+ };
125
+ };
107
126
  KgTable: {
108
127
  apiNotSupportDynamicQuery: string;
109
128
  column: string;
@@ -222,16 +241,6 @@ declare const _default: {
222
241
  title: string;
223
242
  warehouse: string;
224
243
  };
225
- KgSqlClient: {
226
- ResultTab: {
227
- resultStatusLabel: string;
228
- ellapseLabel: string;
229
- rowsTotalLabel: string;
230
- messageLabel: string;
231
- tabTitlePrefix: string;
232
- rowsAffected: string;
233
- };
234
- };
235
244
  action: string;
236
245
  add: string;
237
246
  allUser: string;
@@ -256,18 +265,17 @@ declare const _default: {
256
265
  executeSuccess: string;
257
266
  export: string;
258
267
  exportSuccess: string;
268
+ fail: string;
259
269
  formId: string;
260
270
  formName: string;
261
- millisecond: string;
262
- fail: string;
263
271
  formValidationFail: string;
264
272
  import: string;
265
273
  'import-template': string;
266
274
  importSuccess: string;
267
275
  importTemplate: string;
268
- success: string;
269
276
  loading: string;
270
277
  lookup: string;
278
+ millisecond: string;
271
279
  no: string;
272
280
  ok: string;
273
281
  query: string;
@@ -279,6 +287,7 @@ declare const _default: {
279
287
  selectAll: string;
280
288
  show: string;
281
289
  succeed: string;
290
+ success: string;
282
291
  tip: string;
283
292
  update: string;
284
293
  updateSuccess: string;
@@ -0,0 +1,11 @@
1
+ /**
2
+ * 环穿可视化.
3
+ */
4
+ declare const _default: import("vue").DefineComponent<Readonly<import("vue").ComponentPropsOptions<{
5
+ [x: string]: unknown;
6
+ }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, readonly string[] | Readonly<import("vue").ExtractPropTypes<Readonly<import("vue").ComponentObjectPropsOptions<{
7
+ [x: string]: unknown;
8
+ }>>>>, {
9
+ [x: number]: string;
10
+ } | {}>;
11
+ export default _default;
@@ -0,0 +1,5 @@
1
+ import './KgCircleVis.css';
2
+ /**
3
+ * 环穿可视化:库区下拉列表.
4
+ */
5
+ export declare const KgCircleVisAreaSelect: 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<{}>>, {}>;
@@ -0,0 +1,5 @@
1
+ import './KgCircleVis.css';
2
+ /**
3
+ * 环穿可视化:画布.
4
+ */
5
+ export declare const KgCircleVisCanvas: 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<{}>>, {}>;
@@ -0,0 +1,51 @@
1
+ /** 节点类型. */
2
+ export declare const NODE_KEY: {
3
+ /** 轨道. */
4
+ PATH: string;
5
+ /** 小车. */
6
+ RGV: string;
7
+ /** 小车:托盘. */
8
+ RGV_UI_CONTAINER: string;
9
+ /** 小车:选中. */
10
+ RGV_UI_SELECT: string;
11
+ /** 小车:小车编号. */
12
+ RGV_UI_TEXT: string;
13
+ /** 站点. */
14
+ STATION: string;
15
+ /** 站点:方向. */
16
+ STATION_UI_ARROW: string;
17
+ /** 站点:有货. */
18
+ STATION_UI_CENTER_RECT: string;
19
+ /** 站点:选中. */
20
+ STATION_UI_SELECT: string;
21
+ /** 站点:线体编号. */
22
+ STATION_UI_TEXT: string;
23
+ };
24
+ export declare type IUseDraw = {
25
+ /**
26
+ * 绘制图形.
27
+ */
28
+ draw(param?: IUseDrawDrawParam): void;
29
+ /**
30
+ * 选中小车或者选中站点发生变更.
31
+ */
32
+ onSelectChange(): void;
33
+ };
34
+ declare type IUseDrawDrawParam = {
35
+ /**
36
+ * 是否纵览比例.
37
+ *
38
+ * @default false
39
+ */
40
+ isZoomToOverview?: boolean;
41
+ /**
42
+ * <p>绘制类型.</p>
43
+ * <ul>
44
+ * <li>MAP: 绘制轨道和站点</li>
45
+ * <li>STATUS: 绘制小车</li>
46
+ * </ul>
47
+ */
48
+ type: 'MAP' | 'STATUS';
49
+ };
50
+ export declare function useDraw(): IUseDraw;
51
+ export {};
@@ -0,0 +1,5 @@
1
+ import './KgCircleVis.css';
2
+ /**
3
+ * 环穿可视化:图例.
4
+ */
5
+ export declare const KgCircleVisLegend: 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<{}>>, {}>;
@@ -0,0 +1,5 @@
1
+ import './KgCircleVis.css';
2
+ /**
3
+ * 环穿可视化:离线区.
4
+ */
5
+ export declare const KgCircleVisOffline: 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<{}>>, {}>;
@@ -0,0 +1,5 @@
1
+ import './KgCircleVis.css';
2
+ /**
3
+ * 环穿可视化:日志.
4
+ */
5
+ export declare const KgCircleVisTabLog: 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<{}>>, {}>;
@@ -0,0 +1,33 @@
1
+ import { ExtractPropTypes, PropType } from 'vue';
2
+ import './KgCircleVis.css';
3
+ import { StatusRgvVO } from './KgCircleVis.vm';
4
+ export declare const getProps: () => {
5
+ /**
6
+ * 小车.
7
+ */
8
+ rgv: {
9
+ required: boolean;
10
+ type: PropType<StatusRgvVO>;
11
+ };
12
+ };
13
+ export declare type KgCircleVisTabRgvProps = Partial<ExtractPropTypes<ReturnType<typeof getProps>>>;
14
+ /**
15
+ * 环穿可视化:小车信息.
16
+ */
17
+ export declare const KgCircleVisTabRgv: import("vue").DefineComponent<{
18
+ /**
19
+ * 小车.
20
+ */
21
+ rgv: {
22
+ required: boolean;
23
+ type: PropType<StatusRgvVO>;
24
+ };
25
+ }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
26
+ /**
27
+ * 小车.
28
+ */
29
+ rgv: {
30
+ required: boolean;
31
+ type: PropType<StatusRgvVO>;
32
+ };
33
+ }>>, {}>;
@@ -0,0 +1,5 @@
1
+ import './KgCircleVis.css';
2
+ /**
3
+ * 环穿可视化.
4
+ */
5
+ export declare const KgCircleVis: 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<{}>>, {}>;
@@ -0,0 +1,29 @@
1
+ import { Q } from '@thymine/xunee';
2
+ import { IKgCircleVisProps, IKgCircleVisStore } from './KgCircleVis.store';
3
+ import { MapDTO, StatusDTO } from './KgCircleVis.vm';
4
+ export declare type IUseKgCircleVis = {
5
+ /**
6
+ * 画布:取下一个地图数据. 从地图数据列表队首取一个数据, 并且从列表中删除该数据. 如果列表为空, 则返回空.
7
+ */
8
+ $Canvas$popMapData(): MapDTO | null;
9
+ /**
10
+ * 画布:取下一个状态数据. 从状态数据列表队首取一个数据, 并且从列表中删除该数据. 如果列表为空, 则返回空.
11
+ */
12
+ $Canvas$popStatusData(): StatusDTO | null;
13
+ /**
14
+ * 画布对象.
15
+ */
16
+ graph: Q.Graph | null;
17
+ /**
18
+ * 设置参数.
19
+ *
20
+ * @param props 参数.
21
+ */
22
+ setProps(props: IKgCircleVisProps | null | undefined): void;
23
+ /** 状态数据. */
24
+ store: IKgCircleVisStore;
25
+ };
26
+ /**
27
+ *
28
+ */
29
+ export declare function useKgCircleVis(): IUseKgCircleVis;
@@ -0,0 +1,282 @@
1
+ import { Q } from '@thymine/xunee';
2
+ import { StoreDefinition } from 'pinia';
3
+ import { MapDTO, MapStationVO, StatusDTO, StatusRgvVO } from './KgCircleVis.vm';
4
+ export declare type IKgCircleVisProps = {
5
+ /**
6
+ * 接口地址.
7
+ */
8
+ api?: {
9
+ /**
10
+ * 地图数据.
11
+ *
12
+ * @default /apigateway/wasserver/api/v1/CircleRgvMap/GetMap
13
+ */
14
+ GetMap?: string;
15
+ /**
16
+ * 小车信息汇总.
17
+ *
18
+ * @default /apigateway/circle-rgv-system/getRgvStatus
19
+ */
20
+ GetRgvStatus?: string;
21
+ /**
22
+ * 任务信息汇总.
23
+ *
24
+ * @default /apigateway/circle-rgv-system/getRgvTasks
25
+ */
26
+ GetRgvTasks?: string;
27
+ /**
28
+ * 小车状态信息.
29
+ *
30
+ * @default /apigateway/wasserver/api/v1/CircleRgvState/GetSingleRgvState
31
+ */
32
+ GetSingleRgvState?: string;
33
+ /**
34
+ * 小车任务信息.
35
+ *
36
+ * @default /apigateway/wasserver/api/v1/CircleRgvState/GetSingleRgvTask
37
+ */
38
+ GetSingleRgvTask?: string;
39
+ /**
40
+ * 状态数据.
41
+ *
42
+ * @default /apigateway/wasserver/api/v1/CircleRgvState/GetState
43
+ */
44
+ GetState?: string;
45
+ /**
46
+ * 创建环穿任务.
47
+ *
48
+ * @default /apigateway/wasserver/api/v1/CircleRgvState/ManualCreateWorkTask
49
+ */
50
+ ManualCreateWorkTask?: string;
51
+ /**
52
+ * 日志.
53
+ *
54
+ * @default /kengic-boot/wcs/wmsApi/ReceiveMoveTask
55
+ */
56
+ ReceiveMoveTask?: string;
57
+ /**
58
+ * 小车上线下线.
59
+ *
60
+ * @default /apigateway/wasserver/api/v1/CircleRgvState/RgvOnlineOrOffline
61
+ */
62
+ RgvOnlineOrOffline?: string;
63
+ /**
64
+ * 任务操作.
65
+ *
66
+ * @default /apigateway/wasserver/api/v1/CircleRgvState/RgvTaskOperate
67
+ */
68
+ RgvTaskOperate?: string;
69
+ };
70
+ /**
71
+ * 页面底部默认高度.
72
+ *
73
+ * @default 639.
74
+ */
75
+ bottomDefaultHeight?: number;
76
+ /**
77
+ * 是否支持缩放以及拖拽.
78
+ *
79
+ * @default true
80
+ */
81
+ isScalable?: boolean;
82
+ /**
83
+ * 请求状态数据的时间间隔.
84
+ *
85
+ * @default 1000 毫秒.
86
+ */
87
+ requestStatusInterval?: number;
88
+ /**
89
+ * 小车刻度误差.
90
+ *
91
+ * @default 10.
92
+ */
93
+ rgvCoordinateDeviation?: number;
94
+ /**
95
+ * 小车不同状态时的颜色.
96
+ */
97
+ rgvStatusColor?: {
98
+ /**
99
+ * 驱赶.
100
+ *
101
+ * @default '#ffd262'
102
+ */
103
+ drive: string;
104
+ /**
105
+ * 取货.
106
+ *
107
+ * @default #2ecc27
108
+ */
109
+ get: string;
110
+ /**
111
+ * 空闲.
112
+ *
113
+ * @default '#000000'
114
+ */
115
+ idle: string;
116
+ /**
117
+ * 手动.
118
+ *
119
+ * @default '#765708'
120
+ */
121
+ manual: string;
122
+ /**
123
+ * 离线.
124
+ *
125
+ * @default '#7f7f7f'
126
+ */
127
+ offline: string;
128
+ /**
129
+ * 放货.
130
+ *
131
+ * @default '#1890ff'
132
+ */
133
+ put: string;
134
+ /**
135
+ * 报警.
136
+ *
137
+ * @default '#ff3a3a'
138
+ */
139
+ warn: string;
140
+ };
141
+ /**
142
+ * 绘制时的线宽.
143
+ *
144
+ * @default 10.
145
+ */
146
+ strokeLineWidth?: number;
147
+ /**
148
+ * 更新状态数据的时间间隔.
149
+ *
150
+ * @default 100 毫秒.
151
+ */
152
+ updateStatusInterval?: number;
153
+ };
154
+ export interface IKgCircleVisStoreState {
155
+ /**
156
+ * 库区下拉列表:是否正在请求数据.
157
+ */
158
+ $AreaSelect$isRequesting: boolean;
159
+ /**
160
+ * 库区下拉列表:当前选中的值.
161
+ */
162
+ $AreaSelect$value: string | null;
163
+ /**
164
+ * 画布:当前选中的小车列表.
165
+ */
166
+ $Canvas$currentRgvList: Array<StatusRgvVO>;
167
+ /**
168
+ * 画布:当前选中的站点列表.
169
+ */
170
+ $Canvas$currentStationList: Array<MapStationVO>;
171
+ /**
172
+ * 画布:最新地图数据.
173
+ */
174
+ $Canvas$mapData: MapDTO | null;
175
+ /**
176
+ * 画布:地图数据列表. 等待被绘制的地图数据列表, 每次绘制都从队首取一个数据进行绘制, 当队列为空时暂停绘制.
177
+ */
178
+ $Canvas$mapDataList: Array<MapDTO>;
179
+ /**
180
+ * 画布:是否正在请求地图数据.
181
+ */
182
+ $Canvas$mapIsRequesting: boolean;
183
+ /**
184
+ * 画布:最新状态数据.
185
+ */
186
+ $Canvas$statusData: StatusDTO | null;
187
+ /**
188
+ * 画布:状态数据列表. 等待被绘制的状态数据列表, 每次绘制都从队首取一个数据进行绘制, 当队列为空时暂停绘制.
189
+ */
190
+ $Canvas$statusDataList: Array<StatusDTO>;
191
+ /**
192
+ * 画布:是否正在请求状态数据.
193
+ */
194
+ $Canvas$statusIsRequesting: boolean;
195
+ /**
196
+ * 图例:是否显示.
197
+ */
198
+ $Legend$isVisible: boolean;
199
+ /**
200
+ * 标签页:当前标签页.
201
+ */
202
+ $Tab$activeKey: string | number;
203
+ /**
204
+ * 标签页:小车列表.
205
+ */
206
+ $Tab$rgvList: Array<StatusRgvVO>;
207
+ /**
208
+ * 画布对象.
209
+ */
210
+ graph: Q.Graph | null;
211
+ /**
212
+ * 参数.
213
+ */
214
+ props: IKgCircleVisProps | null;
215
+ }
216
+ export interface IKgCircleVisStoreGetters {
217
+ $AreaSelect$getIsRequesting(): boolean;
218
+ $AreaSelect$getValue(): string | null;
219
+ $Canvas$getCurrentRgvList(): Array<StatusRgvVO>;
220
+ $Canvas$getCurrentStationList(): Array<MapStationVO>;
221
+ $Canvas$getMapData(): MapDTO | null;
222
+ $Canvas$getMapDataList(): Array<MapDTO>;
223
+ $Canvas$getMapIsRequesting(): boolean;
224
+ $Canvas$getStatusData(): StatusDTO | null;
225
+ $Canvas$getStatusDataList(): Array<StatusDTO>;
226
+ $Canvas$getStatusIsRequesting(): boolean;
227
+ $Legend$getIsVisible(): boolean;
228
+ /**
229
+ * 离线区:离线小车列表.
230
+ */
231
+ $Offline$getRgvList(): Array<StatusRgvVO>;
232
+ $Tab$getActiveKey(): string | number;
233
+ $Tab$getRgvList(): Array<StatusRgvVO>;
234
+ getGraph(): Q.Graph | null;
235
+ getProps(): IKgCircleVisProps | null;
236
+ }
237
+ export interface IKgCircleVisStoreActions {
238
+ $AreaSelect$setIsRequesting(value: boolean | null | undefined): void;
239
+ $AreaSelect$setValue(value: string | null | undefined): void;
240
+ /**
241
+ * 画布:往地图数据列尾插入一个数据.
242
+ *
243
+ * @param value 要插入的数据.
244
+ */
245
+ $Canvas$pushMapDataList(value: MapDTO | null | undefined): void;
246
+ /**
247
+ * 画布:往状态数据列尾插入一个数据.
248
+ *
249
+ * @param value 要插入的数据.
250
+ */
251
+ $Canvas$pushStatusDataList(value: StatusDTO | null | undefined): void;
252
+ $Canvas$setCurrentRgvList(value: Array<StatusRgvVO> | null | undefined): void;
253
+ $Canvas$setCurrentStationList(value: Array<MapStationVO> | null | undefined): void;
254
+ $Canvas$setMapData(value: MapDTO | null | undefined): void;
255
+ $Canvas$setMapDataList(value: Array<MapDTO> | null | undefined): void;
256
+ $Canvas$setMapIsRequesting(value: boolean | null | undefined): void;
257
+ $Canvas$setStatusData(value: StatusDTO | null | undefined): void;
258
+ $Canvas$setStatusDataList(value: Array<StatusDTO> | null | undefined): void;
259
+ $Canvas$setStatusIsRequesting(value: boolean | null | undefined): void;
260
+ $Legend$setIsVisible(value: boolean | null | undefined): void;
261
+ /**
262
+ * 标签页:从标签页列表中删除某个小车.
263
+ *
264
+ * @param value 要删除的小车.
265
+ */
266
+ $Tab$deleteRgv(value: StatusRgvVO | null | undefined): void;
267
+ /**
268
+ * <p>标签页:插入小车列表.</p>
269
+ * <p>如果某个小车已经存在标签页列表中, 则不插入.</p>
270
+ * <p>插入完成后, 将新插入的小车列表中的第一个小车的标签页激活.</p>
271
+ *
272
+ * @param value 小车列表.
273
+ */
274
+ $Tab$insertRgvList(value: Array<StatusRgvVO> | null | undefined): void;
275
+ $Tab$setActiveKey(value: string | number | null | undefined): void;
276
+ $Tab$setRgvList(value: Array<StatusRgvVO> | null | undefined): void;
277
+ setGraph(value: Q.Graph | null | undefined): void;
278
+ setProps(value: IKgCircleVisProps | null | undefined): void;
279
+ }
280
+ export declare type IUseKgCircleVisStore = StoreDefinition<'KgCircleVis', IKgCircleVisStoreState, IKgCircleVisStoreGetters, IKgCircleVisStoreActions>;
281
+ export declare type IKgCircleVisStore = ReturnType<IUseKgCircleVisStore>;
282
+ export declare const useKgCircleVisStore: IUseKgCircleVisStore;
@@ -0,0 +1,119 @@
1
+ export declare type MapMapDTO = {
2
+ /** 终点坐标 */
3
+ destinationCoordinate: number;
4
+ /** 运行方向 0:顺时针,1:逆时针 */
5
+ direction: number;
6
+ /** 长 */
7
+ length: number;
8
+ /** 轨道线宽 */
9
+ lineWidth: number;
10
+ /** 定位坐标(下侧轨道中心点) */
11
+ offset: number;
12
+ /** 起点坐标 */
13
+ sourceCoordinate: number;
14
+ /** 宽 */
15
+ width: number;
16
+ };
17
+ export declare type MapStationDTO = {
18
+ /** 线体编号. */
19
+ conveyorNo: string;
20
+ /** 线体坐标(线体相对环穿轨道的位置). */
21
+ coordinate: number;
22
+ /** 站点方向 0:朝向车,1:背离车. */
23
+ direction: number;
24
+ /** 线体长度. */
25
+ length: number;
26
+ /** 线体名称. */
27
+ name: string;
28
+ /** 站点编号. */
29
+ stationNo: string;
30
+ /** 线体宽度 */
31
+ width: number;
32
+ };
33
+ /**
34
+ * 地图数据.
35
+ */
36
+ export declare type MapDTO = {
37
+ /** 站点. */
38
+ conveyor: Array<MapStationVO>;
39
+ /** 轨道. */
40
+ map: MapMapDTO;
41
+ };
42
+ /**
43
+ * 状态数据.
44
+ */
45
+ export declare type StatusDTO = {
46
+ conveyorState: Array<StatusStationDTO>;
47
+ rgvState: Array<StatusRgvVO>;
48
+ };
49
+ export declare type StatusStationDTO = {
50
+ /**
51
+ * 线体编号.
52
+ */
53
+ conveyorNo: string;
54
+ /**
55
+ * 托盘号.
56
+ */
57
+ containerId: string;
58
+ /**
59
+ * 占位信息 1:有托盘 0:无托盘.
60
+ */
61
+ occupiedFlag: number;
62
+ };
63
+ export declare type StatusRgvDTO = {
64
+ /**
65
+ * 小车编号.
66
+ */
67
+ rgvNo: string;
68
+ /**
69
+ * 小车长度.
70
+ */
71
+ length: number;
72
+ /**
73
+ * 小车宽度.
74
+ */
75
+ width: number;
76
+ /**
77
+ * 车所在坐标.
78
+ */
79
+ position: number;
80
+ /**
81
+ * 站点编号.
82
+ */
83
+ stationId: string;
84
+ /**
85
+ * 起始站点.
86
+ */
87
+ sourceStation: string;
88
+ /**
89
+ * 目的站点.
90
+ */
91
+ destinationStation: string;
92
+ /**
93
+ * 小车状态(0:离线(灰色、离线区)、1:报警(红色)、2:手动(棕色) 3:空闲(黑色) 4:取货(绿色) 5:放货(蓝色) 6:赶车(橙色)
94
+ */
95
+ state: number;
96
+ /**
97
+ * 托盘号.
98
+ */
99
+ containerId: string;
100
+ /**
101
+ * 负载状态 1:有托盘 0:无托盘.
102
+ */
103
+ loadState: number;
104
+ };
105
+ export declare type StatusRgvVO = StatusRgvDTO & {
106
+ /**
107
+ * 上次绘制时的刻度.
108
+ */
109
+ PREVIOUS_COORDINATE?: number | null | undefined;
110
+ };
111
+ export declare type MapStationVO = MapStationDTO & StatusStationDTO;
112
+ export declare const TAB_KEY: {
113
+ /** 小车信息汇总. */
114
+ RGV_SUMMARY: string;
115
+ /** 任务信息汇总. */
116
+ TASK_SUMMARY: string;
117
+ /** 日志. */
118
+ LOG: string;
119
+ };
@@ -0,0 +1 @@
1
+ export { default as KgPageCircleVis } from './KgPageCircleVis';
@@ -8,4 +8,6 @@ export interface KgSqlClientEditorRef {
8
8
  /**
9
9
  * <p>数据库客户端:编辑器.</p>
10
10
  */
11
- export declare const KgSqlClientEditor: 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<{}>>, {}>;
11
+ export declare const KgSqlClientEditor: import("vue").DefineComponent<{}, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "execute"[], "execute", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>> & {
12
+ onExecute?: ((...args: any[]) => any) | undefined;
13
+ }, {}>;
@@ -0,0 +1,7 @@
1
+ import './KgSqlClient.css';
2
+ /**
3
+ * <p>数据库客户端:工具栏:顶部.</p>
4
+ */
5
+ export declare const KgSqlClientToolbarTop: import("vue").DefineComponent<{}, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "execute"[], "execute", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>> & {
6
+ onExecute?: ((...args: any[]) => any) | undefined;
7
+ }, {}>;
@@ -1,3 +1,5 @@
1
+ export { useKgCircleVis, type IUseKgCircleVis } from './KgCircleVis/components/KgCircleVis.hooks';
2
+ export * from './KgCircleVis/components/KgCircleVis.vm';
1
3
  /**
2
4
  * 路由.
3
5
  *
@@ -1,4 +1,4 @@
1
1
  /**
2
- * @description: Get user menu based on id
2
+ * 查询菜单列表.
3
3
  */
4
- export declare const getMenuList: () => Promise<unknown>;
4
+ export declare function getMenuList(): Promise<any>;
@@ -5,4 +5,4 @@ export declare const pinia: import("pinia").Pinia;
5
5
  *
6
6
  * @param app 应用.
7
7
  */
8
- export declare function setupKgStore(app: App<Element>): void;
8
+ export declare function setupKgStore(app: App<Element>): Promise<void>;