@ibiz-template/mob-vue3-components 0.0.12 → 0.0.13

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 (81) hide show
  1. package/dist/index.min.css +1 -1
  2. package/dist/index.system.min.js +5 -5
  3. package/dist/index.system.min.js.map +1 -1
  4. package/es/control/app-menu/app-menu.d.ts +1 -1
  5. package/es/control/app-menu/app-menu.mjs +5 -3
  6. package/es/control/app-menu/index.d.ts +1 -1
  7. package/es/control/form/form-detail/form-item/form-item-container/form-item-container.mjs +1 -1
  8. package/es/editor/date-picker/date-picker-editor.controller.d.ts +0 -8
  9. package/es/editor/date-picker/date-picker-editor.controller.mjs +0 -11
  10. package/es/editor/date-range/date-range-editor.controller.d.ts +0 -8
  11. package/es/editor/date-range/date-range-editor.controller.mjs +0 -20
  12. package/es/editor/span/span/span.d.ts +3 -0
  13. package/es/ibiz-vue3.d.ts +6 -0
  14. package/es/ibiz-vue3.mjs +75 -0
  15. package/es/index.d.ts +6 -10
  16. package/es/index.mjs +89 -135
  17. package/es/mob-app/App.css +1 -0
  18. package/es/mob-app/App.d.ts +11 -0
  19. package/es/mob-app/App.mjs +64 -0
  20. package/es/mob-app/attach-environment-config.d.ts +1 -0
  21. package/es/mob-app/attach-environment-config.mjs +22 -0
  22. package/es/mob-app/components/home-view/home-view.css +1 -0
  23. package/es/mob-app/components/home-view/home-view.d.ts +17 -0
  24. package/es/mob-app/components/home-view/home-view.mjs +38 -0
  25. package/es/mob-app/components/index.d.ts +3 -0
  26. package/es/mob-app/components/index.mjs +4 -0
  27. package/es/mob-app/components/router-shell/router-shell.d.ts +3867 -0
  28. package/es/mob-app/components/router-shell/router-shell.mjs +82 -0
  29. package/es/mob-app/create-vue-app.d.ts +12 -0
  30. package/es/mob-app/create-vue-app.mjs +38 -0
  31. package/es/mob-app/guard/auth-guard/auth-guard.d.ts +9 -0
  32. package/es/mob-app/guard/auth-guard/auth-guard.mjs +141 -0
  33. package/es/mob-app/guard/index.d.ts +1 -0
  34. package/es/mob-app/guard/index.mjs +3 -0
  35. package/es/mob-app/index.d.ts +1 -0
  36. package/es/mob-app/index.mjs +3 -0
  37. package/es/mob-app/main.d.ts +2 -0
  38. package/es/mob-app/main.mjs +60 -0
  39. package/es/mob-app/router/index.d.ts +21 -0
  40. package/es/mob-app/router/index.mjs +174 -0
  41. package/es/mob-app/util/index.d.ts +1 -0
  42. package/es/mob-app/util/index.mjs +3 -0
  43. package/es/mob-app/util/unauthorized-handler/unauthorized-handler.d.ts +46 -0
  44. package/es/mob-app/util/unauthorized-handler/unauthorized-handler.mjs +100 -0
  45. package/es/panel-component/index.mjs +2 -1
  46. package/es/util/open-view-util/open-view-util.d.ts +2 -1
  47. package/es/util/open-view-util/open-view-util.mjs +5 -2
  48. package/es/view-engine/mob-edit-view.engine.mjs +5 -1
  49. package/lib/control/app-menu/app-menu.cjs +5 -3
  50. package/lib/control/form/form-detail/form-item/form-item-container/form-item-container.cjs +1 -1
  51. package/lib/editor/date-picker/date-picker-editor.controller.cjs +0 -11
  52. package/lib/editor/date-range/date-range-editor.controller.cjs +0 -20
  53. package/lib/editor/upload/ibiz-image-select/ibiz-image-select.cjs +2 -2
  54. package/lib/editor/upload/ibiz-image-upload/ibiz-image-upload.cjs +2 -2
  55. package/lib/ibiz-vue3.cjs +79 -0
  56. package/lib/index.cjs +177 -221
  57. package/lib/mob-app/App.cjs +68 -0
  58. package/lib/mob-app/App.css +1 -0
  59. package/lib/mob-app/attach-environment-config.cjs +24 -0
  60. package/lib/mob-app/components/home-view/home-view.cjs +40 -0
  61. package/lib/mob-app/components/home-view/home-view.css +1 -0
  62. package/lib/mob-app/components/index.cjs +9 -0
  63. package/lib/mob-app/components/router-shell/router-shell.cjs +84 -0
  64. package/lib/mob-app/create-vue-app.cjs +40 -0
  65. package/lib/mob-app/guard/auth-guard/auth-guard.cjs +143 -0
  66. package/lib/mob-app/guard/index.cjs +7 -0
  67. package/lib/mob-app/index.cjs +7 -0
  68. package/lib/mob-app/main.cjs +62 -0
  69. package/lib/mob-app/router/index.cjs +176 -0
  70. package/lib/mob-app/util/index.cjs +7 -0
  71. package/lib/mob-app/util/unauthorized-handler/unauthorized-handler.cjs +102 -0
  72. package/lib/panel-component/index.cjs +1 -0
  73. package/lib/util/confirm-util/confirm-util.cjs +5 -5
  74. package/lib/util/directive/loading.cjs +2 -2
  75. package/lib/util/loading-util/loading-util.cjs +2 -2
  76. package/lib/util/message-util/message-util.cjs +5 -5
  77. package/lib/util/modal-util/modal-util.cjs +6 -6
  78. package/lib/util/notification-util/notification-util.cjs +5 -5
  79. package/lib/util/open-view-util/open-view-util.cjs +5 -2
  80. package/lib/view-engine/mob-edit-view.engine.cjs +5 -1
  81. package/package.json +8 -7
@@ -0,0 +1,3867 @@
1
+ import { PropType } from 'vue';
2
+ import { IModal } from '@ibiz-template/runtime';
3
+ export declare const RouterShell: import("vue").DefineComponent<{
4
+ modal: {
5
+ type: PropType<IModal>;
6
+ required: true;
7
+ };
8
+ }, {
9
+ route: import("vue-router").RouteLocationNormalizedLoaded;
10
+ viewData: import("vue").Ref<{
11
+ viewModel?: {
12
+ accUserMode?: number | undefined;
13
+ accessKey?: string | undefined;
14
+ capLanguageRes?: {
15
+ defaultContent?: string | undefined;
16
+ lanResTag?: string | undefined;
17
+ lanResType?: string | undefined;
18
+ refFlag?: boolean | undefined;
19
+ appId: string;
20
+ id?: string | undefined;
21
+ name?: string | undefined;
22
+ codeName?: string | undefined;
23
+ userParam?: Record<string, string> | undefined;
24
+ modelId?: string | undefined;
25
+ modelType?: string | undefined;
26
+ } | undefined;
27
+ caption?: string | undefined;
28
+ codeName?: string | undefined;
29
+ dynaSysMode?: number | undefined;
30
+ height?: number | undefined;
31
+ mainMenuAlign?: string | undefined;
32
+ openMode?: string | undefined;
33
+ appDataEntityId?: string | undefined;
34
+ appViewEngines?: {
35
+ engineCat?: string | undefined;
36
+ engineType?: string | undefined;
37
+ params?: {
38
+ paramType?: string | undefined;
39
+ value?: {
40
+ [x: string]: any;
41
+ [x: symbol]: any;
42
+ constructor: Function;
43
+ toString: () => string;
44
+ toLocaleString: () => string;
45
+ valueOf: () => Object;
46
+ hasOwnProperty: (v: PropertyKey) => boolean;
47
+ isPrototypeOf: (v: Object) => boolean;
48
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
49
+ } | undefined;
50
+ appId: string;
51
+ id?: string | undefined;
52
+ name?: string | undefined;
53
+ codeName?: string | undefined;
54
+ userParam?: Record<string, string> | undefined;
55
+ modelId?: string | undefined;
56
+ modelType?: string | undefined;
57
+ }[] | undefined;
58
+ appId: string;
59
+ id?: string | undefined;
60
+ name?: string | undefined;
61
+ codeName?: string | undefined;
62
+ userParam?: Record<string, string> | undefined;
63
+ modelId?: string | undefined;
64
+ modelType?: string | undefined;
65
+ }[] | undefined;
66
+ appViewLogics?: {
67
+ builtinAppUILogic?: {
68
+ appDEUILogicId?: string | undefined;
69
+ appDataEntityId?: string | undefined;
70
+ appUILogicRefViews?: {
71
+ openMode?: string | undefined;
72
+ refMode?: string | undefined;
73
+ refAppViewId?: string | undefined;
74
+ navigateContexts?: {
75
+ desc?: string | undefined;
76
+ key?: string | undefined;
77
+ value?: string | undefined;
78
+ rawValue?: boolean | undefined;
79
+ appId: string;
80
+ id?: string | undefined;
81
+ name?: string | undefined;
82
+ codeName?: string | undefined;
83
+ userParam?: Record<string, string> | undefined;
84
+ modelId?: string | undefined;
85
+ modelType?: string | undefined;
86
+ }[] | undefined;
87
+ navigateParams?: {
88
+ desc?: string | undefined;
89
+ key?: string | undefined;
90
+ value?: string | undefined;
91
+ rawValue?: boolean | undefined;
92
+ appId: string;
93
+ id?: string | undefined;
94
+ name?: string | undefined;
95
+ codeName?: string | undefined;
96
+ userParam?: Record<string, string> | undefined;
97
+ modelId?: string | undefined;
98
+ modelType?: string | undefined;
99
+ }[] | undefined;
100
+ appId: string;
101
+ id?: string | undefined;
102
+ name?: string | undefined;
103
+ codeName?: string | undefined;
104
+ userParam?: Record<string, string> | undefined;
105
+ modelId?: string | undefined;
106
+ modelType?: string | undefined;
107
+ }[] | undefined;
108
+ viewLogicType?: string | undefined;
109
+ builtinLogic?: boolean | undefined;
110
+ codeName?: string | undefined;
111
+ logicType?: string | undefined;
112
+ viewLogicStyle?: string | undefined;
113
+ appId: string;
114
+ id?: string | undefined;
115
+ name?: string | undefined;
116
+ userParam?: Record<string, string> | undefined;
117
+ modelId?: string | undefined;
118
+ modelType?: string | undefined;
119
+ } | undefined;
120
+ attrName?: string | undefined;
121
+ eventArg?: string | undefined;
122
+ eventArg2?: string | undefined;
123
+ eventNames?: string | undefined;
124
+ itemName?: string | undefined;
125
+ logicParam?: string | undefined;
126
+ logicParam2?: string | undefined;
127
+ logicTrigger?: string | undefined;
128
+ logicType?: string | undefined;
129
+ owner?: {
130
+ [x: string]: any;
131
+ [x: symbol]: any;
132
+ constructor: Function;
133
+ toString: () => string;
134
+ toLocaleString: () => string;
135
+ valueOf: () => Object;
136
+ hasOwnProperty: (v: PropertyKey) => boolean;
137
+ isPrototypeOf: (v: Object) => boolean;
138
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
139
+ } | undefined;
140
+ appDEUILogicId?: string | undefined;
141
+ appDataEntityId?: string | undefined;
142
+ appUILogicId?: string | undefined;
143
+ appViewEngineId?: string | undefined;
144
+ appViewLogicId?: string | undefined;
145
+ ctrlName?: string | undefined;
146
+ scriptCode?: string | undefined;
147
+ timer?: number | undefined;
148
+ builtinLogic?: boolean | undefined;
149
+ appId: string;
150
+ id?: string | undefined;
151
+ name?: string | undefined;
152
+ codeName?: string | undefined;
153
+ userParam?: Record<string, string> | undefined;
154
+ modelId?: string | undefined;
155
+ modelType?: string | undefined;
156
+ }[] | undefined;
157
+ appViewMsgGroupId?: string | undefined;
158
+ appViewNavContexts?: {
159
+ desc?: string | undefined;
160
+ key?: string | undefined;
161
+ value?: string | undefined;
162
+ appId: string;
163
+ id?: string | undefined;
164
+ name?: string | undefined;
165
+ codeName?: string | undefined;
166
+ userParam?: Record<string, string> | undefined;
167
+ modelId?: string | undefined;
168
+ modelType?: string | undefined;
169
+ rawValue?: boolean | undefined;
170
+ }[] | undefined;
171
+ appViewNavParams?: {
172
+ rawValue?: boolean | undefined;
173
+ desc?: string | undefined;
174
+ key?: string | undefined;
175
+ value?: string | undefined;
176
+ appId: string;
177
+ id?: string | undefined;
178
+ name?: string | undefined;
179
+ codeName?: string | undefined;
180
+ userParam?: Record<string, string> | undefined;
181
+ modelId?: string | undefined;
182
+ modelType?: string | undefined;
183
+ }[] | undefined;
184
+ appViewParams?: {
185
+ desc?: string | undefined;
186
+ key?: string | undefined;
187
+ value?: string | undefined;
188
+ appId: string;
189
+ id?: string | undefined;
190
+ name?: string | undefined;
191
+ codeName?: string | undefined;
192
+ userParam?: Record<string, string> | undefined;
193
+ modelId?: string | undefined;
194
+ modelType?: string | undefined;
195
+ }[] | undefined;
196
+ appViewRefs?: {
197
+ height?: number | undefined;
198
+ openMode?: string | undefined;
199
+ owner?: {
200
+ [x: string]: any;
201
+ [x: symbol]: any;
202
+ constructor: Function;
203
+ toString: () => string;
204
+ toLocaleString: () => string;
205
+ valueOf: () => Object;
206
+ hasOwnProperty: (v: PropertyKey) => boolean;
207
+ isPrototypeOf: (v: Object) => boolean;
208
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
209
+ } | undefined;
210
+ parentDataJO?: {
211
+ [x: string]: any;
212
+ [x: symbol]: any;
213
+ constructor: Function;
214
+ toString: () => string;
215
+ toLocaleString: () => string;
216
+ valueOf: () => Object;
217
+ hasOwnProperty: (v: PropertyKey) => boolean;
218
+ isPrototypeOf: (v: Object) => boolean;
219
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
220
+ } | undefined;
221
+ realOpenMode?: string | undefined;
222
+ realTitle?: string | undefined;
223
+ realTitleLanguageRes?: {
224
+ defaultContent?: string | undefined;
225
+ lanResTag?: string | undefined;
226
+ lanResType?: string | undefined;
227
+ refFlag?: boolean | undefined;
228
+ appId: string;
229
+ id?: string | undefined;
230
+ name?: string | undefined;
231
+ codeName?: string | undefined;
232
+ userParam?: Record<string, string> | undefined;
233
+ modelId?: string | undefined;
234
+ modelType?: string | undefined;
235
+ } | undefined;
236
+ refAppViewId?: string | undefined;
237
+ viewParamJO?: {
238
+ [x: string]: any;
239
+ [x: symbol]: any;
240
+ constructor: Function;
241
+ toString: () => string;
242
+ toLocaleString: () => string;
243
+ valueOf: () => Object;
244
+ hasOwnProperty: (v: PropertyKey) => boolean;
245
+ isPrototypeOf: (v: Object) => boolean;
246
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
247
+ } | undefined;
248
+ width?: number | undefined;
249
+ navigateContexts?: {
250
+ desc?: string | undefined;
251
+ key?: string | undefined;
252
+ value?: string | undefined;
253
+ rawValue?: boolean | undefined;
254
+ appId: string;
255
+ id?: string | undefined;
256
+ name?: string | undefined;
257
+ codeName?: string | undefined;
258
+ userParam?: Record<string, string> | undefined;
259
+ modelId?: string | undefined;
260
+ modelType?: string | undefined;
261
+ }[] | undefined;
262
+ navigateParams?: {
263
+ desc?: string | undefined;
264
+ key?: string | undefined;
265
+ value?: string | undefined;
266
+ rawValue?: boolean | undefined;
267
+ appId: string;
268
+ id?: string | undefined;
269
+ name?: string | undefined;
270
+ codeName?: string | undefined;
271
+ userParam?: Record<string, string> | undefined;
272
+ modelId?: string | undefined;
273
+ modelType?: string | undefined;
274
+ }[] | undefined;
275
+ appId: string;
276
+ id?: string | undefined;
277
+ name?: string | undefined;
278
+ codeName?: string | undefined;
279
+ userParam?: Record<string, string> | undefined;
280
+ modelId?: string | undefined;
281
+ modelType?: string | undefined;
282
+ }[] | undefined;
283
+ controls?: {
284
+ codeName?: string | undefined;
285
+ controlStyle?: string | undefined;
286
+ controlType?: string | undefined;
287
+ height?: number | undefined;
288
+ logicName?: string | undefined;
289
+ appDataEntityId?: string | undefined;
290
+ controlAttributes?: {
291
+ attrName?: string | undefined;
292
+ attrValue?: string | undefined;
293
+ appId: string;
294
+ id?: string | undefined;
295
+ name?: string | undefined;
296
+ codeName?: string | undefined;
297
+ userParam?: Record<string, string> | undefined;
298
+ modelId?: string | undefined;
299
+ modelType?: string | undefined;
300
+ }[] | undefined;
301
+ controlLogics?: {
302
+ attrName?: string | undefined;
303
+ eventArg?: string | undefined;
304
+ eventArg2?: string | undefined;
305
+ eventNames?: string | undefined;
306
+ itemName?: string | undefined;
307
+ logicTag?: string | undefined;
308
+ logicType?: string | undefined;
309
+ appDEUIActionId?: string | undefined;
310
+ appDEUILogicId?: string | undefined;
311
+ appDataEntityId?: string | undefined;
312
+ appUILogicId?: string | undefined;
313
+ appViewEngineId?: string | undefined;
314
+ appViewLogicId?: string | undefined;
315
+ scriptCode?: string | undefined;
316
+ timer?: number | undefined;
317
+ triggerType?: string | undefined;
318
+ appId: string;
319
+ id?: string | undefined;
320
+ name?: string | undefined;
321
+ codeName?: string | undefined;
322
+ userParam?: Record<string, string> | undefined;
323
+ modelId?: string | undefined;
324
+ modelType?: string | undefined;
325
+ }[] | undefined;
326
+ controlParam?: {
327
+ ctrlParams?: {
328
+ [x: string]: any;
329
+ [x: symbol]: any;
330
+ constructor: Function;
331
+ toString: () => string;
332
+ toLocaleString: () => string;
333
+ valueOf: () => Object;
334
+ hasOwnProperty: (v: PropertyKey) => boolean;
335
+ isPrototypeOf: (v: Object) => boolean;
336
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
337
+ } | undefined;
338
+ appId: string;
339
+ id?: string | undefined;
340
+ name?: string | undefined;
341
+ codeName?: string | undefined;
342
+ userParam?: Record<string, string> | undefined;
343
+ modelId?: string | undefined;
344
+ modelType?: string | undefined;
345
+ } | undefined;
346
+ controlRenders?: {
347
+ layoutPanelModel?: string | undefined;
348
+ layoutPanel?: {
349
+ codeName?: string | undefined;
350
+ dataMode?: number | undefined;
351
+ dataName?: string | undefined;
352
+ dataTimer?: number | undefined;
353
+ getControlAction?: {
354
+ adappDELogicId?: string | undefined;
355
+ actionDesc?: string | undefined;
356
+ appDEMethodId?: string | undefined;
357
+ appDataEntityId?: string | undefined;
358
+ timeout?: number | undefined;
359
+ appId: string;
360
+ id?: string | undefined;
361
+ name?: string | undefined;
362
+ codeName?: string | undefined;
363
+ userParam?: Record<string, string> | undefined;
364
+ modelId?: string | undefined;
365
+ modelType?: string | undefined;
366
+ } | undefined;
367
+ layoutMode?: string | undefined;
368
+ panelStyle?: string | undefined;
369
+ panelWidth?: number | undefined;
370
+ rootPanelItems?: {
371
+ capLanguageRes?: {
372
+ defaultContent?: string | undefined;
373
+ lanResTag?: string | undefined;
374
+ lanResType?: string | undefined;
375
+ refFlag?: boolean | undefined;
376
+ appId: string;
377
+ id?: string | undefined;
378
+ name?: string | undefined;
379
+ codeName?: string | undefined;
380
+ userParam?: Record<string, string> | undefined;
381
+ modelId?: string | undefined;
382
+ modelType?: string | undefined;
383
+ } | undefined;
384
+ caption?: string | undefined;
385
+ contentHeight?: number | undefined;
386
+ contentWidth?: number | undefined;
387
+ cssStyle?: string | undefined;
388
+ dynaClass?: string | undefined;
389
+ height?: number | undefined;
390
+ itemStyle?: string | undefined;
391
+ itemType?: string | undefined;
392
+ labelCssStyle?: string | undefined;
393
+ labelDynaClass?: string | undefined;
394
+ labelSysCss?: {
395
+ codeName?: string | undefined;
396
+ cssName?: string | undefined;
397
+ cssStyle?: string | undefined;
398
+ designCssStyle?: string | undefined;
399
+ appId: string;
400
+ id?: string | undefined;
401
+ name?: string | undefined;
402
+ userParam?: Record<string, string> | undefined;
403
+ modelId?: string | undefined;
404
+ modelType?: string | undefined;
405
+ } | undefined;
406
+ layout?: {
407
+ layout?: string | undefined;
408
+ appId: string;
409
+ id?: string | undefined;
410
+ name?: string | undefined;
411
+ codeName?: string | undefined;
412
+ userParam?: Record<string, string> | undefined;
413
+ modelId?: string | undefined;
414
+ modelType?: string | undefined;
415
+ } | undefined;
416
+ layoutPos?: {
417
+ halignSelf?: string | undefined;
418
+ height?: number | undefined;
419
+ heightMode?: string | undefined;
420
+ layout?: string | undefined;
421
+ spacingBottom?: string | undefined;
422
+ spacingLeft?: string | undefined;
423
+ spacingRight?: string | undefined;
424
+ spacingTop?: string | undefined;
425
+ valignSelf?: string | undefined;
426
+ width?: number | undefined;
427
+ widthMode?: string | undefined;
428
+ appId: string;
429
+ id?: string | undefined;
430
+ name?: string | undefined;
431
+ codeName?: string | undefined;
432
+ userParam?: Record<string, string> | undefined;
433
+ modelId?: string | undefined;
434
+ modelType?: string | undefined;
435
+ } | undefined;
436
+ panelItemGroupLogics?: {
437
+ logicCat?: string | undefined;
438
+ relatedItemNames?: string[] | undefined;
439
+ groupOP?: string | undefined;
440
+ panelItemLogics?: {
441
+ logicCat?: string | undefined;
442
+ logicType?: string | undefined;
443
+ appId: string;
444
+ id?: string | undefined;
445
+ name?: string | undefined;
446
+ codeName?: string | undefined;
447
+ userParam?: Record<string, string> | undefined;
448
+ modelId?: string | undefined;
449
+ modelType?: string | undefined;
450
+ }[] | undefined;
451
+ notMode?: boolean | undefined;
452
+ logicType?: string | undefined;
453
+ appId: string;
454
+ id?: string | undefined;
455
+ name?: string | undefined;
456
+ codeName?: string | undefined;
457
+ userParam?: Record<string, string> | undefined;
458
+ modelId?: string | undefined;
459
+ modelType?: string | undefined;
460
+ }[] | undefined;
461
+ sysCss?: {
462
+ codeName?: string | undefined;
463
+ cssName?: string | undefined;
464
+ cssStyle?: string | undefined;
465
+ designCssStyle?: string | undefined;
466
+ appId: string;
467
+ id?: string | undefined;
468
+ name?: string | undefined;
469
+ userParam?: Record<string, string> | undefined;
470
+ modelId?: string | undefined;
471
+ modelType?: string | undefined;
472
+ } | undefined;
473
+ sysImage?: {
474
+ codeName?: string | undefined;
475
+ cssClass?: string | undefined;
476
+ cssClassX?: string | undefined;
477
+ glyph?: string | undefined;
478
+ height?: number | undefined;
479
+ imagePath?: string | undefined;
480
+ imagePathX?: string | undefined;
481
+ rawContent?: string | undefined;
482
+ width?: number | undefined;
483
+ appId: string;
484
+ id?: string | undefined;
485
+ name?: string | undefined;
486
+ userParam?: Record<string, string> | undefined;
487
+ modelId?: string | undefined;
488
+ modelType?: string | undefined;
489
+ } | undefined;
490
+ sysPFPluginId?: string | undefined;
491
+ width?: number | undefined;
492
+ showCaption?: boolean | undefined;
493
+ controlAttributes?: {
494
+ attrName?: string | undefined;
495
+ attrValue?: string | undefined;
496
+ appId: string;
497
+ id?: string | undefined;
498
+ name?: string | undefined;
499
+ codeName?: string | undefined;
500
+ userParam?: Record<string, string> | undefined;
501
+ modelId?: string | undefined;
502
+ modelType?: string | undefined;
503
+ }[] | undefined;
504
+ controlLogics?: {
505
+ attrName?: string | undefined;
506
+ eventArg?: string | undefined;
507
+ eventArg2?: string | undefined;
508
+ eventNames?: string | undefined;
509
+ itemName?: string | undefined;
510
+ logicTag?: string | undefined;
511
+ logicType?: string | undefined;
512
+ appDEUIActionId?: string | undefined;
513
+ appDEUILogicId?: string | undefined;
514
+ appDataEntityId?: string | undefined;
515
+ appUILogicId?: string | undefined;
516
+ appViewEngineId?: string | undefined;
517
+ appViewLogicId?: string | undefined;
518
+ scriptCode?: string | undefined;
519
+ timer?: number | undefined;
520
+ triggerType?: string | undefined;
521
+ appId: string;
522
+ id?: string | undefined;
523
+ name?: string | undefined;
524
+ codeName?: string | undefined;
525
+ userParam?: Record<string, string> | undefined;
526
+ modelId?: string | undefined;
527
+ modelType?: string | undefined;
528
+ }[] | undefined;
529
+ controlRenders?: any[] | undefined;
530
+ appId: string;
531
+ id?: string | undefined;
532
+ name?: string | undefined;
533
+ codeName?: string | undefined;
534
+ userParam?: Record<string, string> | undefined;
535
+ modelId?: string | undefined;
536
+ modelType?: string | undefined;
537
+ }[] | undefined;
538
+ layoutPanel?: boolean | undefined;
539
+ mobilePanel?: boolean | undefined;
540
+ controlStyle?: string | undefined;
541
+ controlType?: string | undefined;
542
+ height?: number | undefined;
543
+ logicName?: string | undefined;
544
+ appDataEntityId?: string | undefined;
545
+ controlAttributes?: {
546
+ attrName?: string | undefined;
547
+ attrValue?: string | undefined;
548
+ appId: string;
549
+ id?: string | undefined;
550
+ name?: string | undefined;
551
+ codeName?: string | undefined;
552
+ userParam?: Record<string, string> | undefined;
553
+ modelId?: string | undefined;
554
+ modelType?: string | undefined;
555
+ }[] | undefined;
556
+ controlLogics?: {
557
+ attrName?: string | undefined;
558
+ eventArg?: string | undefined;
559
+ eventArg2?: string | undefined;
560
+ eventNames?: string | undefined;
561
+ itemName?: string | undefined;
562
+ logicTag?: string | undefined;
563
+ logicType?: string | undefined;
564
+ appDEUIActionId?: string | undefined;
565
+ appDEUILogicId?: string | undefined;
566
+ appDataEntityId?: string | undefined;
567
+ appUILogicId?: string | undefined;
568
+ appViewEngineId?: string | undefined;
569
+ appViewLogicId?: string | undefined;
570
+ scriptCode?: string | undefined;
571
+ timer?: number | undefined;
572
+ triggerType?: string | undefined;
573
+ appId: string;
574
+ id?: string | undefined;
575
+ name?: string | undefined;
576
+ codeName?: string | undefined;
577
+ userParam?: Record<string, string> | undefined;
578
+ modelId?: string | undefined;
579
+ modelType?: string | undefined;
580
+ }[] | undefined;
581
+ controlParam?: {
582
+ ctrlParams?: {
583
+ [x: string]: any;
584
+ [x: symbol]: any;
585
+ constructor: Function;
586
+ toString: () => string;
587
+ toLocaleString: () => string;
588
+ valueOf: () => Object;
589
+ hasOwnProperty: (v: PropertyKey) => boolean;
590
+ isPrototypeOf: (v: Object) => boolean;
591
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
592
+ } | undefined;
593
+ appId: string;
594
+ id?: string | undefined;
595
+ name?: string | undefined;
596
+ codeName?: string | undefined;
597
+ userParam?: Record<string, string> | undefined;
598
+ modelId?: string | undefined;
599
+ modelType?: string | undefined;
600
+ } | undefined;
601
+ controlRenders?: any[] | undefined;
602
+ ctrlMsg?: {
603
+ codeName?: string | undefined;
604
+ msgModel?: string | undefined;
605
+ ctrlMsgItems?: {
606
+ content?: string | undefined;
607
+ contentLanguageRes?: {
608
+ defaultContent?: string | undefined;
609
+ lanResTag?: string | undefined;
610
+ lanResType?: string | undefined;
611
+ refFlag?: boolean | undefined;
612
+ appId: string;
613
+ id?: string | undefined;
614
+ name?: string | undefined;
615
+ codeName?: string | undefined;
616
+ userParam?: Record<string, string> | undefined;
617
+ modelId?: string | undefined;
618
+ modelType?: string | undefined;
619
+ } | undefined;
620
+ timeout?: number | undefined;
621
+ appId: string;
622
+ id?: string | undefined;
623
+ name?: string | undefined;
624
+ codeName?: string | undefined;
625
+ userParam?: Record<string, string> | undefined;
626
+ modelId?: string | undefined;
627
+ modelType?: string | undefined;
628
+ }[] | undefined;
629
+ appId: string;
630
+ id?: string | undefined;
631
+ name?: string | undefined;
632
+ userParam?: Record<string, string> | undefined;
633
+ modelId?: string | undefined;
634
+ modelType?: string | undefined;
635
+ } | undefined;
636
+ sysCss?: {
637
+ codeName?: string | undefined;
638
+ cssName?: string | undefined;
639
+ cssStyle?: string | undefined;
640
+ designCssStyle?: string | undefined;
641
+ appId: string;
642
+ id?: string | undefined;
643
+ name?: string | undefined;
644
+ userParam?: Record<string, string> | undefined;
645
+ modelId?: string | undefined;
646
+ modelType?: string | undefined;
647
+ } | undefined;
648
+ sysPFPluginId?: string | undefined;
649
+ user2ControlAction?: {
650
+ adappDELogicId?: string | undefined;
651
+ actionDesc?: string | undefined;
652
+ appDEMethodId?: string | undefined;
653
+ appDataEntityId?: string | undefined;
654
+ timeout?: number | undefined;
655
+ appId: string;
656
+ id?: string | undefined;
657
+ name?: string | undefined;
658
+ codeName?: string | undefined;
659
+ userParam?: Record<string, string> | undefined;
660
+ modelId?: string | undefined;
661
+ modelType?: string | undefined;
662
+ } | undefined;
663
+ userControlAction?: {
664
+ adappDELogicId?: string | undefined;
665
+ actionDesc?: string | undefined;
666
+ appDEMethodId?: string | undefined;
667
+ appDataEntityId?: string | undefined;
668
+ timeout?: number | undefined;
669
+ appId: string;
670
+ id?: string | undefined;
671
+ name?: string | undefined;
672
+ codeName?: string | undefined;
673
+ userParam?: Record<string, string> | undefined;
674
+ modelId?: string | undefined;
675
+ modelType?: string | undefined;
676
+ } | undefined;
677
+ width?: number | undefined;
678
+ appId: string;
679
+ id?: string | undefined;
680
+ name?: string | undefined;
681
+ userParam?: Record<string, string> | undefined;
682
+ modelId?: string | undefined;
683
+ modelType?: string | undefined;
684
+ appCounterRefs?: {
685
+ appCounter?: {
686
+ getAppDEActionId?: string | undefined;
687
+ getAppDEDataSetId?: string | undefined;
688
+ appDataEntityId?: string | undefined;
689
+ codeName?: string | undefined;
690
+ counterData?: string | undefined;
691
+ counterData2?: string | undefined;
692
+ counterType?: string | undefined;
693
+ customCond?: string | undefined;
694
+ counterId?: string | undefined;
695
+ sysPFPluginId?: string | undefined;
696
+ timer?: number | undefined;
697
+ appId: string;
698
+ id?: string | undefined;
699
+ name?: string | undefined;
700
+ userParam?: Record<string, string> | undefined;
701
+ modelId?: string | undefined;
702
+ modelType?: string | undefined;
703
+ } | undefined;
704
+ refMode?: {
705
+ [x: string]: any;
706
+ [x: symbol]: any;
707
+ constructor: Function;
708
+ toString: () => string;
709
+ toLocaleString: () => string;
710
+ valueOf: () => Object;
711
+ hasOwnProperty: (v: PropertyKey) => boolean;
712
+ isPrototypeOf: (v: Object) => boolean;
713
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
714
+ } | undefined;
715
+ tag?: string | undefined;
716
+ appId: string;
717
+ id?: string | undefined;
718
+ name?: string | undefined;
719
+ codeName?: string | undefined;
720
+ userParam?: Record<string, string> | undefined;
721
+ modelId?: string | undefined;
722
+ modelType?: string | undefined;
723
+ }[] | undefined;
724
+ appViewEngines?: {
725
+ engineCat?: string | undefined;
726
+ engineType?: string | undefined;
727
+ params?: {
728
+ paramType?: string | undefined;
729
+ value?: {
730
+ [x: string]: any;
731
+ [x: symbol]: any;
732
+ constructor: Function;
733
+ toString: () => string;
734
+ toLocaleString: () => string;
735
+ valueOf: () => Object;
736
+ hasOwnProperty: (v: PropertyKey) => boolean;
737
+ isPrototypeOf: (v: Object) => boolean;
738
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
739
+ } | undefined;
740
+ appId: string;
741
+ id?: string | undefined;
742
+ name?: string | undefined;
743
+ codeName?: string | undefined;
744
+ userParam?: Record<string, string> | undefined;
745
+ modelId?: string | undefined;
746
+ modelType?: string | undefined;
747
+ }[] | undefined;
748
+ appId: string;
749
+ id?: string | undefined;
750
+ name?: string | undefined;
751
+ codeName?: string | undefined;
752
+ userParam?: Record<string, string> | undefined;
753
+ modelId?: string | undefined;
754
+ modelType?: string | undefined;
755
+ }[] | undefined;
756
+ appViewLogics?: {
757
+ builtinAppUILogic?: {
758
+ appDEUILogicId?: string | undefined;
759
+ appDataEntityId?: string | undefined;
760
+ appUILogicRefViews?: {
761
+ openMode?: string | undefined;
762
+ refMode?: string | undefined;
763
+ refAppViewId?: string | undefined;
764
+ navigateContexts?: {
765
+ desc?: string | undefined;
766
+ key?: string | undefined;
767
+ value?: string | undefined;
768
+ rawValue?: boolean | undefined;
769
+ appId: string;
770
+ id?: string | undefined;
771
+ name?: string | undefined;
772
+ codeName?: string | undefined;
773
+ userParam?: Record<string, string> | undefined;
774
+ modelId?: string | undefined;
775
+ modelType?: string | undefined;
776
+ }[] | undefined;
777
+ navigateParams?: {
778
+ desc?: string | undefined;
779
+ key?: string | undefined;
780
+ value?: string | undefined;
781
+ rawValue?: boolean | undefined;
782
+ appId: string;
783
+ id?: string | undefined;
784
+ name?: string | undefined;
785
+ codeName?: string | undefined;
786
+ userParam?: Record<string, string> | undefined;
787
+ modelId?: string | undefined;
788
+ modelType?: string | undefined;
789
+ }[] | undefined;
790
+ appId: string;
791
+ id?: string | undefined;
792
+ name?: string | undefined;
793
+ codeName?: string | undefined;
794
+ userParam?: Record<string, string> | undefined;
795
+ modelId?: string | undefined;
796
+ modelType?: string | undefined;
797
+ }[] | undefined;
798
+ viewLogicType?: string | undefined;
799
+ builtinLogic?: boolean | undefined;
800
+ codeName?: string | undefined;
801
+ logicType?: string | undefined;
802
+ viewLogicStyle?: string | undefined;
803
+ appId: string;
804
+ id?: string | undefined;
805
+ name?: string | undefined;
806
+ userParam?: Record<string, string> | undefined;
807
+ modelId?: string | undefined;
808
+ modelType?: string | undefined;
809
+ } | undefined;
810
+ attrName?: string | undefined;
811
+ eventArg?: string | undefined;
812
+ eventArg2?: string | undefined;
813
+ eventNames?: string | undefined;
814
+ itemName?: string | undefined;
815
+ logicParam?: string | undefined;
816
+ logicParam2?: string | undefined;
817
+ logicTrigger?: string | undefined;
818
+ logicType?: string | undefined;
819
+ owner?: {
820
+ [x: string]: any;
821
+ [x: symbol]: any;
822
+ constructor: Function;
823
+ toString: () => string;
824
+ toLocaleString: () => string;
825
+ valueOf: () => Object;
826
+ hasOwnProperty: (v: PropertyKey) => boolean;
827
+ isPrototypeOf: (v: Object) => boolean;
828
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
829
+ } | undefined;
830
+ appDEUILogicId?: string | undefined;
831
+ appDataEntityId?: string | undefined;
832
+ appUILogicId?: string | undefined;
833
+ appViewEngineId?: string | undefined;
834
+ appViewLogicId?: string | undefined;
835
+ ctrlName?: string | undefined;
836
+ scriptCode?: string | undefined;
837
+ timer?: number | undefined;
838
+ builtinLogic?: boolean | undefined;
839
+ appId: string;
840
+ id?: string | undefined;
841
+ name?: string | undefined;
842
+ codeName?: string | undefined;
843
+ userParam?: Record<string, string> | undefined;
844
+ modelId?: string | undefined;
845
+ modelType?: string | undefined;
846
+ }[] | undefined;
847
+ appViewRefs?: {
848
+ height?: number | undefined;
849
+ openMode?: string | undefined;
850
+ owner?: {
851
+ [x: string]: any;
852
+ [x: symbol]: any;
853
+ constructor: Function;
854
+ toString: () => string;
855
+ toLocaleString: () => string;
856
+ valueOf: () => Object;
857
+ hasOwnProperty: (v: PropertyKey) => boolean;
858
+ isPrototypeOf: (v: Object) => boolean;
859
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
860
+ } | undefined;
861
+ parentDataJO?: {
862
+ [x: string]: any;
863
+ [x: symbol]: any;
864
+ constructor: Function;
865
+ toString: () => string;
866
+ toLocaleString: () => string;
867
+ valueOf: () => Object;
868
+ hasOwnProperty: (v: PropertyKey) => boolean;
869
+ isPrototypeOf: (v: Object) => boolean;
870
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
871
+ } | undefined;
872
+ realOpenMode?: string | undefined;
873
+ realTitle?: string | undefined;
874
+ realTitleLanguageRes?: {
875
+ defaultContent?: string | undefined;
876
+ lanResTag?: string | undefined;
877
+ lanResType?: string | undefined;
878
+ refFlag?: boolean | undefined;
879
+ appId: string;
880
+ id?: string | undefined;
881
+ name?: string | undefined;
882
+ codeName?: string | undefined;
883
+ userParam?: Record<string, string> | undefined;
884
+ modelId?: string | undefined;
885
+ modelType?: string | undefined;
886
+ } | undefined;
887
+ refAppViewId?: string | undefined;
888
+ viewParamJO?: {
889
+ [x: string]: any;
890
+ [x: symbol]: any;
891
+ constructor: Function;
892
+ toString: () => string;
893
+ toLocaleString: () => string;
894
+ valueOf: () => Object;
895
+ hasOwnProperty: (v: PropertyKey) => boolean;
896
+ isPrototypeOf: (v: Object) => boolean;
897
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
898
+ } | undefined;
899
+ width?: number | undefined;
900
+ navigateContexts?: {
901
+ desc?: string | undefined;
902
+ key?: string | undefined;
903
+ value?: string | undefined;
904
+ rawValue?: boolean | undefined;
905
+ appId: string;
906
+ id?: string | undefined;
907
+ name?: string | undefined;
908
+ codeName?: string | undefined;
909
+ userParam?: Record<string, string> | undefined;
910
+ modelId?: string | undefined;
911
+ modelType?: string | undefined;
912
+ }[] | undefined;
913
+ navigateParams?: {
914
+ desc?: string | undefined;
915
+ key?: string | undefined;
916
+ value?: string | undefined;
917
+ rawValue?: boolean | undefined;
918
+ appId: string;
919
+ id?: string | undefined;
920
+ name?: string | undefined;
921
+ codeName?: string | undefined;
922
+ userParam?: Record<string, string> | undefined;
923
+ modelId?: string | undefined;
924
+ modelType?: string | undefined;
925
+ }[] | undefined;
926
+ appId: string;
927
+ id?: string | undefined;
928
+ name?: string | undefined;
929
+ codeName?: string | undefined;
930
+ userParam?: Record<string, string> | undefined;
931
+ modelId?: string | undefined;
932
+ modelType?: string | undefined;
933
+ }[] | undefined;
934
+ controls?: any[] | undefined;
935
+ layout?: {
936
+ layout?: string | undefined;
937
+ appId: string;
938
+ id?: string | undefined;
939
+ name?: string | undefined;
940
+ codeName?: string | undefined;
941
+ userParam?: Record<string, string> | undefined;
942
+ modelId?: string | undefined;
943
+ modelType?: string | undefined;
944
+ } | undefined;
945
+ } | undefined;
946
+ renderName?: string | undefined;
947
+ renderType?: string | undefined;
948
+ appId: string;
949
+ id?: string | undefined;
950
+ name?: string | undefined;
951
+ codeName?: string | undefined;
952
+ userParam?: Record<string, string> | undefined;
953
+ modelId?: string | undefined;
954
+ modelType?: string | undefined;
955
+ }[] | undefined;
956
+ ctrlMsg?: {
957
+ codeName?: string | undefined;
958
+ msgModel?: string | undefined;
959
+ ctrlMsgItems?: {
960
+ content?: string | undefined;
961
+ contentLanguageRes?: {
962
+ defaultContent?: string | undefined;
963
+ lanResTag?: string | undefined;
964
+ lanResType?: string | undefined;
965
+ refFlag?: boolean | undefined;
966
+ appId: string;
967
+ id?: string | undefined;
968
+ name?: string | undefined;
969
+ codeName?: string | undefined;
970
+ userParam?: Record<string, string> | undefined;
971
+ modelId?: string | undefined;
972
+ modelType?: string | undefined;
973
+ } | undefined;
974
+ timeout?: number | undefined;
975
+ appId: string;
976
+ id?: string | undefined;
977
+ name?: string | undefined;
978
+ codeName?: string | undefined;
979
+ userParam?: Record<string, string> | undefined;
980
+ modelId?: string | undefined;
981
+ modelType?: string | undefined;
982
+ }[] | undefined;
983
+ appId: string;
984
+ id?: string | undefined;
985
+ name?: string | undefined;
986
+ userParam?: Record<string, string> | undefined;
987
+ modelId?: string | undefined;
988
+ modelType?: string | undefined;
989
+ } | undefined;
990
+ sysCss?: {
991
+ codeName?: string | undefined;
992
+ cssName?: string | undefined;
993
+ cssStyle?: string | undefined;
994
+ designCssStyle?: string | undefined;
995
+ appId: string;
996
+ id?: string | undefined;
997
+ name?: string | undefined;
998
+ userParam?: Record<string, string> | undefined;
999
+ modelId?: string | undefined;
1000
+ modelType?: string | undefined;
1001
+ } | undefined;
1002
+ sysPFPluginId?: string | undefined;
1003
+ user2ControlAction?: {
1004
+ adappDELogicId?: string | undefined;
1005
+ actionDesc?: string | undefined;
1006
+ appDEMethodId?: string | undefined;
1007
+ appDataEntityId?: string | undefined;
1008
+ timeout?: number | undefined;
1009
+ appId: string;
1010
+ id?: string | undefined;
1011
+ name?: string | undefined;
1012
+ codeName?: string | undefined;
1013
+ userParam?: Record<string, string> | undefined;
1014
+ modelId?: string | undefined;
1015
+ modelType?: string | undefined;
1016
+ } | undefined;
1017
+ userControlAction?: {
1018
+ adappDELogicId?: string | undefined;
1019
+ actionDesc?: string | undefined;
1020
+ appDEMethodId?: string | undefined;
1021
+ appDataEntityId?: string | undefined;
1022
+ timeout?: number | undefined;
1023
+ appId: string;
1024
+ id?: string | undefined;
1025
+ name?: string | undefined;
1026
+ codeName?: string | undefined;
1027
+ userParam?: Record<string, string> | undefined;
1028
+ modelId?: string | undefined;
1029
+ modelType?: string | undefined;
1030
+ } | undefined;
1031
+ width?: number | undefined;
1032
+ appId: string;
1033
+ id?: string | undefined;
1034
+ name?: string | undefined;
1035
+ userParam?: Record<string, string> | undefined;
1036
+ modelId?: string | undefined;
1037
+ modelType?: string | undefined;
1038
+ }[] | undefined;
1039
+ sysCss?: {
1040
+ codeName?: string | undefined;
1041
+ cssName?: string | undefined;
1042
+ cssStyle?: string | undefined;
1043
+ designCssStyle?: string | undefined;
1044
+ appId: string;
1045
+ id?: string | undefined;
1046
+ name?: string | undefined;
1047
+ userParam?: Record<string, string> | undefined;
1048
+ modelId?: string | undefined;
1049
+ modelType?: string | undefined;
1050
+ } | undefined;
1051
+ sysImage?: {
1052
+ codeName?: string | undefined;
1053
+ cssClass?: string | undefined;
1054
+ cssClassX?: string | undefined;
1055
+ glyph?: string | undefined;
1056
+ height?: number | undefined;
1057
+ imagePath?: string | undefined;
1058
+ imagePathX?: string | undefined;
1059
+ rawContent?: string | undefined;
1060
+ width?: number | undefined;
1061
+ appId: string;
1062
+ id?: string | undefined;
1063
+ name?: string | undefined;
1064
+ userParam?: Record<string, string> | undefined;
1065
+ modelId?: string | undefined;
1066
+ modelType?: string | undefined;
1067
+ } | undefined;
1068
+ sysPFPluginId?: string | undefined;
1069
+ viewLayoutPanel?: {
1070
+ layoutBodyOnly?: boolean | undefined;
1071
+ useDefaultLayout?: boolean | undefined;
1072
+ viewProxyMode?: boolean | undefined;
1073
+ codeName?: string | undefined;
1074
+ dataMode?: number | undefined;
1075
+ dataName?: string | undefined;
1076
+ dataTimer?: number | undefined;
1077
+ getControlAction?: {
1078
+ adappDELogicId?: string | undefined;
1079
+ actionDesc?: string | undefined;
1080
+ appDEMethodId?: string | undefined;
1081
+ appDataEntityId?: string | undefined;
1082
+ timeout?: number | undefined;
1083
+ appId: string;
1084
+ id?: string | undefined;
1085
+ name?: string | undefined;
1086
+ codeName?: string | undefined;
1087
+ userParam?: Record<string, string> | undefined;
1088
+ modelId?: string | undefined;
1089
+ modelType?: string | undefined;
1090
+ } | undefined;
1091
+ layoutMode?: string | undefined;
1092
+ panelStyle?: string | undefined;
1093
+ panelWidth?: number | undefined;
1094
+ rootPanelItems?: {
1095
+ capLanguageRes?: {
1096
+ defaultContent?: string | undefined;
1097
+ lanResTag?: string | undefined;
1098
+ lanResType?: string | undefined;
1099
+ refFlag?: boolean | undefined;
1100
+ appId: string;
1101
+ id?: string | undefined;
1102
+ name?: string | undefined;
1103
+ codeName?: string | undefined;
1104
+ userParam?: Record<string, string> | undefined;
1105
+ modelId?: string | undefined;
1106
+ modelType?: string | undefined;
1107
+ } | undefined;
1108
+ caption?: string | undefined;
1109
+ contentHeight?: number | undefined;
1110
+ contentWidth?: number | undefined;
1111
+ cssStyle?: string | undefined;
1112
+ dynaClass?: string | undefined;
1113
+ height?: number | undefined;
1114
+ itemStyle?: string | undefined;
1115
+ itemType?: string | undefined;
1116
+ labelCssStyle?: string | undefined;
1117
+ labelDynaClass?: string | undefined;
1118
+ labelSysCss?: {
1119
+ codeName?: string | undefined;
1120
+ cssName?: string | undefined;
1121
+ cssStyle?: string | undefined;
1122
+ designCssStyle?: string | undefined;
1123
+ appId: string;
1124
+ id?: string | undefined;
1125
+ name?: string | undefined;
1126
+ userParam?: Record<string, string> | undefined;
1127
+ modelId?: string | undefined;
1128
+ modelType?: string | undefined;
1129
+ } | undefined;
1130
+ layout?: {
1131
+ layout?: string | undefined;
1132
+ appId: string;
1133
+ id?: string | undefined;
1134
+ name?: string | undefined;
1135
+ codeName?: string | undefined;
1136
+ userParam?: Record<string, string> | undefined;
1137
+ modelId?: string | undefined;
1138
+ modelType?: string | undefined;
1139
+ } | undefined;
1140
+ layoutPos?: {
1141
+ halignSelf?: string | undefined;
1142
+ height?: number | undefined;
1143
+ heightMode?: string | undefined;
1144
+ layout?: string | undefined;
1145
+ spacingBottom?: string | undefined;
1146
+ spacingLeft?: string | undefined;
1147
+ spacingRight?: string | undefined;
1148
+ spacingTop?: string | undefined;
1149
+ valignSelf?: string | undefined;
1150
+ width?: number | undefined;
1151
+ widthMode?: string | undefined;
1152
+ appId: string;
1153
+ id?: string | undefined;
1154
+ name?: string | undefined;
1155
+ codeName?: string | undefined;
1156
+ userParam?: Record<string, string> | undefined;
1157
+ modelId?: string | undefined;
1158
+ modelType?: string | undefined;
1159
+ } | undefined;
1160
+ panelItemGroupLogics?: {
1161
+ logicCat?: string | undefined;
1162
+ relatedItemNames?: string[] | undefined;
1163
+ groupOP?: string | undefined;
1164
+ panelItemLogics?: {
1165
+ logicCat?: string | undefined;
1166
+ logicType?: string | undefined;
1167
+ appId: string;
1168
+ id?: string | undefined;
1169
+ name?: string | undefined;
1170
+ codeName?: string | undefined;
1171
+ userParam?: Record<string, string> | undefined;
1172
+ modelId?: string | undefined;
1173
+ modelType?: string | undefined;
1174
+ }[] | undefined;
1175
+ notMode?: boolean | undefined;
1176
+ logicType?: string | undefined;
1177
+ appId: string;
1178
+ id?: string | undefined;
1179
+ name?: string | undefined;
1180
+ codeName?: string | undefined;
1181
+ userParam?: Record<string, string> | undefined;
1182
+ modelId?: string | undefined;
1183
+ modelType?: string | undefined;
1184
+ }[] | undefined;
1185
+ sysCss?: {
1186
+ codeName?: string | undefined;
1187
+ cssName?: string | undefined;
1188
+ cssStyle?: string | undefined;
1189
+ designCssStyle?: string | undefined;
1190
+ appId: string;
1191
+ id?: string | undefined;
1192
+ name?: string | undefined;
1193
+ userParam?: Record<string, string> | undefined;
1194
+ modelId?: string | undefined;
1195
+ modelType?: string | undefined;
1196
+ } | undefined;
1197
+ sysImage?: {
1198
+ codeName?: string | undefined;
1199
+ cssClass?: string | undefined;
1200
+ cssClassX?: string | undefined;
1201
+ glyph?: string | undefined;
1202
+ height?: number | undefined;
1203
+ imagePath?: string | undefined;
1204
+ imagePathX?: string | undefined;
1205
+ rawContent?: string | undefined;
1206
+ width?: number | undefined;
1207
+ appId: string;
1208
+ id?: string | undefined;
1209
+ name?: string | undefined;
1210
+ userParam?: Record<string, string> | undefined;
1211
+ modelId?: string | undefined;
1212
+ modelType?: string | undefined;
1213
+ } | undefined;
1214
+ sysPFPluginId?: string | undefined;
1215
+ width?: number | undefined;
1216
+ showCaption?: boolean | undefined;
1217
+ controlAttributes?: {
1218
+ attrName?: string | undefined;
1219
+ attrValue?: string | undefined;
1220
+ appId: string;
1221
+ id?: string | undefined;
1222
+ name?: string | undefined;
1223
+ codeName?: string | undefined;
1224
+ userParam?: Record<string, string> | undefined;
1225
+ modelId?: string | undefined;
1226
+ modelType?: string | undefined;
1227
+ }[] | undefined;
1228
+ controlLogics?: {
1229
+ attrName?: string | undefined;
1230
+ eventArg?: string | undefined;
1231
+ eventArg2?: string | undefined;
1232
+ eventNames?: string | undefined;
1233
+ itemName?: string | undefined;
1234
+ logicTag?: string | undefined;
1235
+ logicType?: string | undefined;
1236
+ appDEUIActionId?: string | undefined;
1237
+ appDEUILogicId?: string | undefined;
1238
+ appDataEntityId?: string | undefined;
1239
+ appUILogicId?: string | undefined;
1240
+ appViewEngineId?: string | undefined;
1241
+ appViewLogicId?: string | undefined;
1242
+ scriptCode?: string | undefined;
1243
+ timer?: number | undefined;
1244
+ triggerType?: string | undefined;
1245
+ appId: string;
1246
+ id?: string | undefined;
1247
+ name?: string | undefined;
1248
+ codeName?: string | undefined;
1249
+ userParam?: Record<string, string> | undefined;
1250
+ modelId?: string | undefined;
1251
+ modelType?: string | undefined;
1252
+ }[] | undefined;
1253
+ controlRenders?: {
1254
+ layoutPanelModel?: string | undefined;
1255
+ layoutPanel?: {
1256
+ codeName?: string | undefined;
1257
+ dataMode?: number | undefined;
1258
+ dataName?: string | undefined;
1259
+ dataTimer?: number | undefined;
1260
+ getControlAction?: {
1261
+ adappDELogicId?: string | undefined;
1262
+ actionDesc?: string | undefined;
1263
+ appDEMethodId?: string | undefined;
1264
+ appDataEntityId?: string | undefined;
1265
+ timeout?: number | undefined;
1266
+ appId: string;
1267
+ id?: string | undefined;
1268
+ name?: string | undefined;
1269
+ codeName?: string | undefined;
1270
+ userParam?: Record<string, string> | undefined;
1271
+ modelId?: string | undefined;
1272
+ modelType?: string | undefined;
1273
+ } | undefined;
1274
+ layoutMode?: string | undefined;
1275
+ panelStyle?: string | undefined;
1276
+ panelWidth?: number | undefined;
1277
+ rootPanelItems?: any[] | undefined;
1278
+ layoutPanel?: boolean | undefined;
1279
+ mobilePanel?: boolean | undefined;
1280
+ controlStyle?: string | undefined;
1281
+ controlType?: string | undefined;
1282
+ height?: number | undefined;
1283
+ logicName?: string | undefined;
1284
+ appDataEntityId?: string | undefined;
1285
+ controlAttributes?: {
1286
+ attrName?: string | undefined;
1287
+ attrValue?: string | undefined;
1288
+ appId: string;
1289
+ id?: string | undefined;
1290
+ name?: string | undefined;
1291
+ codeName?: string | undefined;
1292
+ userParam?: Record<string, string> | undefined;
1293
+ modelId?: string | undefined;
1294
+ modelType?: string | undefined;
1295
+ }[] | undefined;
1296
+ controlLogics?: {
1297
+ attrName?: string | undefined;
1298
+ eventArg?: string | undefined;
1299
+ eventArg2?: string | undefined;
1300
+ eventNames?: string | undefined;
1301
+ itemName?: string | undefined;
1302
+ logicTag?: string | undefined;
1303
+ logicType?: string | undefined;
1304
+ appDEUIActionId?: string | undefined;
1305
+ appDEUILogicId?: string | undefined;
1306
+ appDataEntityId?: string | undefined;
1307
+ appUILogicId?: string | undefined;
1308
+ appViewEngineId?: string | undefined;
1309
+ appViewLogicId?: string | undefined;
1310
+ scriptCode?: string | undefined;
1311
+ timer?: number | undefined;
1312
+ triggerType?: string | undefined;
1313
+ appId: string;
1314
+ id?: string | undefined;
1315
+ name?: string | undefined;
1316
+ codeName?: string | undefined;
1317
+ userParam?: Record<string, string> | undefined;
1318
+ modelId?: string | undefined;
1319
+ modelType?: string | undefined;
1320
+ }[] | undefined;
1321
+ controlParam?: {
1322
+ ctrlParams?: {
1323
+ [x: string]: any;
1324
+ [x: symbol]: any;
1325
+ constructor: Function;
1326
+ toString: () => string;
1327
+ toLocaleString: () => string;
1328
+ valueOf: () => Object;
1329
+ hasOwnProperty: (v: PropertyKey) => boolean;
1330
+ isPrototypeOf: (v: Object) => boolean;
1331
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
1332
+ } | undefined;
1333
+ appId: string;
1334
+ id?: string | undefined;
1335
+ name?: string | undefined;
1336
+ codeName?: string | undefined;
1337
+ userParam?: Record<string, string> | undefined;
1338
+ modelId?: string | undefined;
1339
+ modelType?: string | undefined;
1340
+ } | undefined;
1341
+ controlRenders?: any[] | undefined;
1342
+ ctrlMsg?: {
1343
+ codeName?: string | undefined;
1344
+ msgModel?: string | undefined;
1345
+ ctrlMsgItems?: {
1346
+ content?: string | undefined;
1347
+ contentLanguageRes?: {
1348
+ defaultContent?: string | undefined;
1349
+ lanResTag?: string | undefined;
1350
+ lanResType?: string | undefined;
1351
+ refFlag?: boolean | undefined;
1352
+ appId: string;
1353
+ id?: string | undefined;
1354
+ name?: string | undefined;
1355
+ codeName?: string | undefined;
1356
+ userParam?: Record<string, string> | undefined;
1357
+ modelId?: string | undefined;
1358
+ modelType?: string | undefined;
1359
+ } | undefined;
1360
+ timeout?: number | undefined;
1361
+ appId: string;
1362
+ id?: string | undefined;
1363
+ name?: string | undefined;
1364
+ codeName?: string | undefined;
1365
+ userParam?: Record<string, string> | undefined;
1366
+ modelId?: string | undefined;
1367
+ modelType?: string | undefined;
1368
+ }[] | undefined;
1369
+ appId: string;
1370
+ id?: string | undefined;
1371
+ name?: string | undefined;
1372
+ userParam?: Record<string, string> | undefined;
1373
+ modelId?: string | undefined;
1374
+ modelType?: string | undefined;
1375
+ } | undefined;
1376
+ sysCss?: {
1377
+ codeName?: string | undefined;
1378
+ cssName?: string | undefined;
1379
+ cssStyle?: string | undefined;
1380
+ designCssStyle?: string | undefined;
1381
+ appId: string;
1382
+ id?: string | undefined;
1383
+ name?: string | undefined;
1384
+ userParam?: Record<string, string> | undefined;
1385
+ modelId?: string | undefined;
1386
+ modelType?: string | undefined;
1387
+ } | undefined;
1388
+ sysPFPluginId?: string | undefined;
1389
+ user2ControlAction?: {
1390
+ adappDELogicId?: string | undefined;
1391
+ actionDesc?: string | undefined;
1392
+ appDEMethodId?: string | undefined;
1393
+ appDataEntityId?: string | undefined;
1394
+ timeout?: number | undefined;
1395
+ appId: string;
1396
+ id?: string | undefined;
1397
+ name?: string | undefined;
1398
+ codeName?: string | undefined;
1399
+ userParam?: Record<string, string> | undefined;
1400
+ modelId?: string | undefined;
1401
+ modelType?: string | undefined;
1402
+ } | undefined;
1403
+ userControlAction?: {
1404
+ adappDELogicId?: string | undefined;
1405
+ actionDesc?: string | undefined;
1406
+ appDEMethodId?: string | undefined;
1407
+ appDataEntityId?: string | undefined;
1408
+ timeout?: number | undefined;
1409
+ appId: string;
1410
+ id?: string | undefined;
1411
+ name?: string | undefined;
1412
+ codeName?: string | undefined;
1413
+ userParam?: Record<string, string> | undefined;
1414
+ modelId?: string | undefined;
1415
+ modelType?: string | undefined;
1416
+ } | undefined;
1417
+ width?: number | undefined;
1418
+ appId: string;
1419
+ id?: string | undefined;
1420
+ name?: string | undefined;
1421
+ userParam?: Record<string, string> | undefined;
1422
+ modelId?: string | undefined;
1423
+ modelType?: string | undefined;
1424
+ appCounterRefs?: {
1425
+ appCounter?: {
1426
+ getAppDEActionId?: string | undefined;
1427
+ getAppDEDataSetId?: string | undefined;
1428
+ appDataEntityId?: string | undefined;
1429
+ codeName?: string | undefined;
1430
+ counterData?: string | undefined;
1431
+ counterData2?: string | undefined;
1432
+ counterType?: string | undefined;
1433
+ customCond?: string | undefined;
1434
+ counterId?: string | undefined;
1435
+ sysPFPluginId?: string | undefined;
1436
+ timer?: number | undefined;
1437
+ appId: string;
1438
+ id?: string | undefined;
1439
+ name?: string | undefined;
1440
+ userParam?: Record<string, string> | undefined;
1441
+ modelId?: string | undefined;
1442
+ modelType?: string | undefined;
1443
+ } | undefined;
1444
+ refMode?: {
1445
+ [x: string]: any;
1446
+ [x: symbol]: any;
1447
+ constructor: Function;
1448
+ toString: () => string;
1449
+ toLocaleString: () => string;
1450
+ valueOf: () => Object;
1451
+ hasOwnProperty: (v: PropertyKey) => boolean;
1452
+ isPrototypeOf: (v: Object) => boolean;
1453
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
1454
+ } | undefined;
1455
+ tag?: string | undefined;
1456
+ appId: string;
1457
+ id?: string | undefined;
1458
+ name?: string | undefined;
1459
+ codeName?: string | undefined;
1460
+ userParam?: Record<string, string> | undefined;
1461
+ modelId?: string | undefined;
1462
+ modelType?: string | undefined;
1463
+ }[] | undefined;
1464
+ appViewEngines?: {
1465
+ engineCat?: string | undefined;
1466
+ engineType?: string | undefined;
1467
+ params?: {
1468
+ paramType?: string | undefined;
1469
+ value?: {
1470
+ [x: string]: any;
1471
+ [x: symbol]: any;
1472
+ constructor: Function;
1473
+ toString: () => string;
1474
+ toLocaleString: () => string;
1475
+ valueOf: () => Object;
1476
+ hasOwnProperty: (v: PropertyKey) => boolean;
1477
+ isPrototypeOf: (v: Object) => boolean;
1478
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
1479
+ } | undefined;
1480
+ appId: string;
1481
+ id?: string | undefined;
1482
+ name?: string | undefined;
1483
+ codeName?: string | undefined;
1484
+ userParam?: Record<string, string> | undefined;
1485
+ modelId?: string | undefined;
1486
+ modelType?: string | undefined;
1487
+ }[] | undefined;
1488
+ appId: string;
1489
+ id?: string | undefined;
1490
+ name?: string | undefined;
1491
+ codeName?: string | undefined;
1492
+ userParam?: Record<string, string> | undefined;
1493
+ modelId?: string | undefined;
1494
+ modelType?: string | undefined;
1495
+ }[] | undefined;
1496
+ appViewLogics?: {
1497
+ builtinAppUILogic?: {
1498
+ appDEUILogicId?: string | undefined;
1499
+ appDataEntityId?: string | undefined;
1500
+ appUILogicRefViews?: {
1501
+ openMode?: string | undefined;
1502
+ refMode?: string | undefined;
1503
+ refAppViewId?: string | undefined;
1504
+ navigateContexts?: {
1505
+ desc?: string | undefined;
1506
+ key?: string | undefined;
1507
+ value?: string | undefined;
1508
+ rawValue?: boolean | undefined;
1509
+ appId: string;
1510
+ id?: string | undefined;
1511
+ name?: string | undefined;
1512
+ codeName?: string | undefined;
1513
+ userParam?: Record<string, string> | undefined;
1514
+ modelId?: string | undefined;
1515
+ modelType?: string | undefined;
1516
+ }[] | undefined;
1517
+ navigateParams?: {
1518
+ desc?: string | undefined;
1519
+ key?: string | undefined;
1520
+ value?: string | undefined;
1521
+ rawValue?: boolean | undefined;
1522
+ appId: string;
1523
+ id?: string | undefined;
1524
+ name?: string | undefined;
1525
+ codeName?: string | undefined;
1526
+ userParam?: Record<string, string> | undefined;
1527
+ modelId?: string | undefined;
1528
+ modelType?: string | undefined;
1529
+ }[] | undefined;
1530
+ appId: string;
1531
+ id?: string | undefined;
1532
+ name?: string | undefined;
1533
+ codeName?: string | undefined;
1534
+ userParam?: Record<string, string> | undefined;
1535
+ modelId?: string | undefined;
1536
+ modelType?: string | undefined;
1537
+ }[] | undefined;
1538
+ viewLogicType?: string | undefined;
1539
+ builtinLogic?: boolean | undefined;
1540
+ codeName?: string | undefined;
1541
+ logicType?: string | undefined;
1542
+ viewLogicStyle?: string | undefined;
1543
+ appId: string;
1544
+ id?: string | undefined;
1545
+ name?: string | undefined;
1546
+ userParam?: Record<string, string> | undefined;
1547
+ modelId?: string | undefined;
1548
+ modelType?: string | undefined;
1549
+ } | undefined;
1550
+ attrName?: string | undefined;
1551
+ eventArg?: string | undefined;
1552
+ eventArg2?: string | undefined;
1553
+ eventNames?: string | undefined;
1554
+ itemName?: string | undefined;
1555
+ logicParam?: string | undefined;
1556
+ logicParam2?: string | undefined;
1557
+ logicTrigger?: string | undefined;
1558
+ logicType?: string | undefined;
1559
+ owner?: {
1560
+ [x: string]: any;
1561
+ [x: symbol]: any;
1562
+ constructor: Function;
1563
+ toString: () => string;
1564
+ toLocaleString: () => string;
1565
+ valueOf: () => Object;
1566
+ hasOwnProperty: (v: PropertyKey) => boolean;
1567
+ isPrototypeOf: (v: Object) => boolean;
1568
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
1569
+ } | undefined;
1570
+ appDEUILogicId?: string | undefined;
1571
+ appDataEntityId?: string | undefined;
1572
+ appUILogicId?: string | undefined;
1573
+ appViewEngineId?: string | undefined;
1574
+ appViewLogicId?: string | undefined;
1575
+ ctrlName?: string | undefined;
1576
+ scriptCode?: string | undefined;
1577
+ timer?: number | undefined;
1578
+ builtinLogic?: boolean | undefined;
1579
+ appId: string;
1580
+ id?: string | undefined;
1581
+ name?: string | undefined;
1582
+ codeName?: string | undefined;
1583
+ userParam?: Record<string, string> | undefined;
1584
+ modelId?: string | undefined;
1585
+ modelType?: string | undefined;
1586
+ }[] | undefined;
1587
+ appViewRefs?: {
1588
+ height?: number | undefined;
1589
+ openMode?: string | undefined;
1590
+ owner?: {
1591
+ [x: string]: any;
1592
+ [x: symbol]: any;
1593
+ constructor: Function;
1594
+ toString: () => string;
1595
+ toLocaleString: () => string;
1596
+ valueOf: () => Object;
1597
+ hasOwnProperty: (v: PropertyKey) => boolean;
1598
+ isPrototypeOf: (v: Object) => boolean;
1599
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
1600
+ } | undefined;
1601
+ parentDataJO?: {
1602
+ [x: string]: any;
1603
+ [x: symbol]: any;
1604
+ constructor: Function;
1605
+ toString: () => string;
1606
+ toLocaleString: () => string;
1607
+ valueOf: () => Object;
1608
+ hasOwnProperty: (v: PropertyKey) => boolean;
1609
+ isPrototypeOf: (v: Object) => boolean;
1610
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
1611
+ } | undefined;
1612
+ realOpenMode?: string | undefined;
1613
+ realTitle?: string | undefined;
1614
+ realTitleLanguageRes?: {
1615
+ defaultContent?: string | undefined;
1616
+ lanResTag?: string | undefined;
1617
+ lanResType?: string | undefined;
1618
+ refFlag?: boolean | undefined;
1619
+ appId: string;
1620
+ id?: string | undefined;
1621
+ name?: string | undefined;
1622
+ codeName?: string | undefined;
1623
+ userParam?: Record<string, string> | undefined;
1624
+ modelId?: string | undefined;
1625
+ modelType?: string | undefined;
1626
+ } | undefined;
1627
+ refAppViewId?: string | undefined;
1628
+ viewParamJO?: {
1629
+ [x: string]: any;
1630
+ [x: symbol]: any;
1631
+ constructor: Function;
1632
+ toString: () => string;
1633
+ toLocaleString: () => string;
1634
+ valueOf: () => Object;
1635
+ hasOwnProperty: (v: PropertyKey) => boolean;
1636
+ isPrototypeOf: (v: Object) => boolean;
1637
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
1638
+ } | undefined;
1639
+ width?: number | undefined;
1640
+ navigateContexts?: {
1641
+ desc?: string | undefined;
1642
+ key?: string | undefined;
1643
+ value?: string | undefined;
1644
+ rawValue?: boolean | undefined;
1645
+ appId: string;
1646
+ id?: string | undefined;
1647
+ name?: string | undefined;
1648
+ codeName?: string | undefined;
1649
+ userParam?: Record<string, string> | undefined;
1650
+ modelId?: string | undefined;
1651
+ modelType?: string | undefined;
1652
+ }[] | undefined;
1653
+ navigateParams?: {
1654
+ desc?: string | undefined;
1655
+ key?: string | undefined;
1656
+ value?: string | undefined;
1657
+ rawValue?: boolean | undefined;
1658
+ appId: string;
1659
+ id?: string | undefined;
1660
+ name?: string | undefined;
1661
+ codeName?: string | undefined;
1662
+ userParam?: Record<string, string> | undefined;
1663
+ modelId?: string | undefined;
1664
+ modelType?: string | undefined;
1665
+ }[] | undefined;
1666
+ appId: string;
1667
+ id?: string | undefined;
1668
+ name?: string | undefined;
1669
+ codeName?: string | undefined;
1670
+ userParam?: Record<string, string> | undefined;
1671
+ modelId?: string | undefined;
1672
+ modelType?: string | undefined;
1673
+ }[] | undefined;
1674
+ controls?: {
1675
+ codeName?: string | undefined;
1676
+ controlStyle?: string | undefined;
1677
+ controlType?: string | undefined;
1678
+ height?: number | undefined;
1679
+ logicName?: string | undefined;
1680
+ appDataEntityId?: string | undefined;
1681
+ controlAttributes?: {
1682
+ attrName?: string | undefined;
1683
+ attrValue?: string | undefined;
1684
+ appId: string;
1685
+ id?: string | undefined;
1686
+ name?: string | undefined;
1687
+ codeName?: string | undefined;
1688
+ userParam?: Record<string, string> | undefined;
1689
+ modelId?: string | undefined;
1690
+ modelType?: string | undefined;
1691
+ }[] | undefined;
1692
+ controlLogics?: {
1693
+ attrName?: string | undefined;
1694
+ eventArg?: string | undefined;
1695
+ eventArg2?: string | undefined;
1696
+ eventNames?: string | undefined;
1697
+ itemName?: string | undefined;
1698
+ logicTag?: string | undefined;
1699
+ logicType?: string | undefined;
1700
+ appDEUIActionId?: string | undefined;
1701
+ appDEUILogicId?: string | undefined;
1702
+ appDataEntityId?: string | undefined;
1703
+ appUILogicId?: string | undefined;
1704
+ appViewEngineId?: string | undefined;
1705
+ appViewLogicId?: string | undefined;
1706
+ scriptCode?: string | undefined;
1707
+ timer?: number | undefined;
1708
+ triggerType?: string | undefined;
1709
+ appId: string;
1710
+ id?: string | undefined;
1711
+ name?: string | undefined;
1712
+ codeName?: string | undefined;
1713
+ userParam?: Record<string, string> | undefined;
1714
+ modelId?: string | undefined;
1715
+ modelType?: string | undefined;
1716
+ }[] | undefined;
1717
+ controlParam?: {
1718
+ ctrlParams?: {
1719
+ [x: string]: any;
1720
+ [x: symbol]: any;
1721
+ constructor: Function;
1722
+ toString: () => string;
1723
+ toLocaleString: () => string;
1724
+ valueOf: () => Object;
1725
+ hasOwnProperty: (v: PropertyKey) => boolean;
1726
+ isPrototypeOf: (v: Object) => boolean;
1727
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
1728
+ } | undefined;
1729
+ appId: string;
1730
+ id?: string | undefined;
1731
+ name?: string | undefined;
1732
+ codeName?: string | undefined;
1733
+ userParam?: Record<string, string> | undefined;
1734
+ modelId?: string | undefined;
1735
+ modelType?: string | undefined;
1736
+ } | undefined;
1737
+ controlRenders?: any[] | undefined;
1738
+ ctrlMsg?: {
1739
+ codeName?: string | undefined;
1740
+ msgModel?: string | undefined;
1741
+ ctrlMsgItems?: {
1742
+ content?: string | undefined;
1743
+ contentLanguageRes?: {
1744
+ defaultContent?: string | undefined;
1745
+ lanResTag?: string | undefined;
1746
+ lanResType?: string | undefined;
1747
+ refFlag?: boolean | undefined;
1748
+ appId: string;
1749
+ id?: string | undefined;
1750
+ name?: string | undefined;
1751
+ codeName?: string | undefined;
1752
+ userParam?: Record<string, string> | undefined;
1753
+ modelId?: string | undefined;
1754
+ modelType?: string | undefined;
1755
+ } | undefined;
1756
+ timeout?: number | undefined;
1757
+ appId: string;
1758
+ id?: string | undefined;
1759
+ name?: string | undefined;
1760
+ codeName?: string | undefined;
1761
+ userParam?: Record<string, string> | undefined;
1762
+ modelId?: string | undefined;
1763
+ modelType?: string | undefined;
1764
+ }[] | undefined;
1765
+ appId: string;
1766
+ id?: string | undefined;
1767
+ name?: string | undefined;
1768
+ userParam?: Record<string, string> | undefined;
1769
+ modelId?: string | undefined;
1770
+ modelType?: string | undefined;
1771
+ } | undefined;
1772
+ sysCss?: {
1773
+ codeName?: string | undefined;
1774
+ cssName?: string | undefined;
1775
+ cssStyle?: string | undefined;
1776
+ designCssStyle?: string | undefined;
1777
+ appId: string;
1778
+ id?: string | undefined;
1779
+ name?: string | undefined;
1780
+ userParam?: Record<string, string> | undefined;
1781
+ modelId?: string | undefined;
1782
+ modelType?: string | undefined;
1783
+ } | undefined;
1784
+ sysPFPluginId?: string | undefined;
1785
+ user2ControlAction?: {
1786
+ adappDELogicId?: string | undefined;
1787
+ actionDesc?: string | undefined;
1788
+ appDEMethodId?: string | undefined;
1789
+ appDataEntityId?: string | undefined;
1790
+ timeout?: number | undefined;
1791
+ appId: string;
1792
+ id?: string | undefined;
1793
+ name?: string | undefined;
1794
+ codeName?: string | undefined;
1795
+ userParam?: Record<string, string> | undefined;
1796
+ modelId?: string | undefined;
1797
+ modelType?: string | undefined;
1798
+ } | undefined;
1799
+ userControlAction?: {
1800
+ adappDELogicId?: string | undefined;
1801
+ actionDesc?: string | undefined;
1802
+ appDEMethodId?: string | undefined;
1803
+ appDataEntityId?: string | undefined;
1804
+ timeout?: number | undefined;
1805
+ appId: string;
1806
+ id?: string | undefined;
1807
+ name?: string | undefined;
1808
+ codeName?: string | undefined;
1809
+ userParam?: Record<string, string> | undefined;
1810
+ modelId?: string | undefined;
1811
+ modelType?: string | undefined;
1812
+ } | undefined;
1813
+ width?: number | undefined;
1814
+ appId: string;
1815
+ id?: string | undefined;
1816
+ name?: string | undefined;
1817
+ userParam?: Record<string, string> | undefined;
1818
+ modelId?: string | undefined;
1819
+ modelType?: string | undefined;
1820
+ }[] | undefined;
1821
+ layout?: {
1822
+ layout?: string | undefined;
1823
+ appId: string;
1824
+ id?: string | undefined;
1825
+ name?: string | undefined;
1826
+ codeName?: string | undefined;
1827
+ userParam?: Record<string, string> | undefined;
1828
+ modelId?: string | undefined;
1829
+ modelType?: string | undefined;
1830
+ } | undefined;
1831
+ } | undefined;
1832
+ renderName?: string | undefined;
1833
+ renderType?: string | undefined;
1834
+ appId: string;
1835
+ id?: string | undefined;
1836
+ name?: string | undefined;
1837
+ codeName?: string | undefined;
1838
+ userParam?: Record<string, string> | undefined;
1839
+ modelId?: string | undefined;
1840
+ modelType?: string | undefined;
1841
+ }[] | undefined;
1842
+ appId: string;
1843
+ id?: string | undefined;
1844
+ name?: string | undefined;
1845
+ codeName?: string | undefined;
1846
+ userParam?: Record<string, string> | undefined;
1847
+ modelId?: string | undefined;
1848
+ modelType?: string | undefined;
1849
+ }[] | undefined;
1850
+ layoutPanel?: boolean | undefined;
1851
+ mobilePanel?: boolean | undefined;
1852
+ controlStyle?: string | undefined;
1853
+ controlType?: string | undefined;
1854
+ height?: number | undefined;
1855
+ logicName?: string | undefined;
1856
+ appDataEntityId?: string | undefined;
1857
+ controlAttributes?: {
1858
+ attrName?: string | undefined;
1859
+ attrValue?: string | undefined;
1860
+ appId: string;
1861
+ id?: string | undefined;
1862
+ name?: string | undefined;
1863
+ codeName?: string | undefined;
1864
+ userParam?: Record<string, string> | undefined;
1865
+ modelId?: string | undefined;
1866
+ modelType?: string | undefined;
1867
+ }[] | undefined;
1868
+ controlLogics?: {
1869
+ attrName?: string | undefined;
1870
+ eventArg?: string | undefined;
1871
+ eventArg2?: string | undefined;
1872
+ eventNames?: string | undefined;
1873
+ itemName?: string | undefined;
1874
+ logicTag?: string | undefined;
1875
+ logicType?: string | undefined;
1876
+ appDEUIActionId?: string | undefined;
1877
+ appDEUILogicId?: string | undefined;
1878
+ appDataEntityId?: string | undefined;
1879
+ appUILogicId?: string | undefined;
1880
+ appViewEngineId?: string | undefined;
1881
+ appViewLogicId?: string | undefined;
1882
+ scriptCode?: string | undefined;
1883
+ timer?: number | undefined;
1884
+ triggerType?: string | undefined;
1885
+ appId: string;
1886
+ id?: string | undefined;
1887
+ name?: string | undefined;
1888
+ codeName?: string | undefined;
1889
+ userParam?: Record<string, string> | undefined;
1890
+ modelId?: string | undefined;
1891
+ modelType?: string | undefined;
1892
+ }[] | undefined;
1893
+ controlParam?: {
1894
+ ctrlParams?: {
1895
+ [x: string]: any;
1896
+ [x: symbol]: any;
1897
+ constructor: Function;
1898
+ toString: () => string;
1899
+ toLocaleString: () => string;
1900
+ valueOf: () => Object;
1901
+ hasOwnProperty: (v: PropertyKey) => boolean;
1902
+ isPrototypeOf: (v: Object) => boolean;
1903
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
1904
+ } | undefined;
1905
+ appId: string;
1906
+ id?: string | undefined;
1907
+ name?: string | undefined;
1908
+ codeName?: string | undefined;
1909
+ userParam?: Record<string, string> | undefined;
1910
+ modelId?: string | undefined;
1911
+ modelType?: string | undefined;
1912
+ } | undefined;
1913
+ controlRenders?: {
1914
+ layoutPanelModel?: string | undefined;
1915
+ layoutPanel?: {
1916
+ codeName?: string | undefined;
1917
+ dataMode?: number | undefined;
1918
+ dataName?: string | undefined;
1919
+ dataTimer?: number | undefined;
1920
+ getControlAction?: {
1921
+ adappDELogicId?: string | undefined;
1922
+ actionDesc?: string | undefined;
1923
+ appDEMethodId?: string | undefined;
1924
+ appDataEntityId?: string | undefined;
1925
+ timeout?: number | undefined;
1926
+ appId: string;
1927
+ id?: string | undefined;
1928
+ name?: string | undefined;
1929
+ codeName?: string | undefined;
1930
+ userParam?: Record<string, string> | undefined;
1931
+ modelId?: string | undefined;
1932
+ modelType?: string | undefined;
1933
+ } | undefined;
1934
+ layoutMode?: string | undefined;
1935
+ panelStyle?: string | undefined;
1936
+ panelWidth?: number | undefined;
1937
+ rootPanelItems?: {
1938
+ capLanguageRes?: {
1939
+ defaultContent?: string | undefined;
1940
+ lanResTag?: string | undefined;
1941
+ lanResType?: string | undefined;
1942
+ refFlag?: boolean | undefined;
1943
+ appId: string;
1944
+ id?: string | undefined;
1945
+ name?: string | undefined;
1946
+ codeName?: string | undefined;
1947
+ userParam?: Record<string, string> | undefined;
1948
+ modelId?: string | undefined;
1949
+ modelType?: string | undefined;
1950
+ } | undefined;
1951
+ caption?: string | undefined;
1952
+ contentHeight?: number | undefined;
1953
+ contentWidth?: number | undefined;
1954
+ cssStyle?: string | undefined;
1955
+ dynaClass?: string | undefined;
1956
+ height?: number | undefined;
1957
+ itemStyle?: string | undefined;
1958
+ itemType?: string | undefined;
1959
+ labelCssStyle?: string | undefined;
1960
+ labelDynaClass?: string | undefined;
1961
+ labelSysCss?: {
1962
+ codeName?: string | undefined;
1963
+ cssName?: string | undefined;
1964
+ cssStyle?: string | undefined;
1965
+ designCssStyle?: string | undefined;
1966
+ appId: string;
1967
+ id?: string | undefined;
1968
+ name?: string | undefined;
1969
+ userParam?: Record<string, string> | undefined;
1970
+ modelId?: string | undefined;
1971
+ modelType?: string | undefined;
1972
+ } | undefined;
1973
+ layout?: {
1974
+ layout?: string | undefined;
1975
+ appId: string;
1976
+ id?: string | undefined;
1977
+ name?: string | undefined;
1978
+ codeName?: string | undefined;
1979
+ userParam?: Record<string, string> | undefined;
1980
+ modelId?: string | undefined;
1981
+ modelType?: string | undefined;
1982
+ } | undefined;
1983
+ layoutPos?: {
1984
+ halignSelf?: string | undefined;
1985
+ height?: number | undefined;
1986
+ heightMode?: string | undefined;
1987
+ layout?: string | undefined;
1988
+ spacingBottom?: string | undefined;
1989
+ spacingLeft?: string | undefined;
1990
+ spacingRight?: string | undefined;
1991
+ spacingTop?: string | undefined;
1992
+ valignSelf?: string | undefined;
1993
+ width?: number | undefined;
1994
+ widthMode?: string | undefined;
1995
+ appId: string;
1996
+ id?: string | undefined;
1997
+ name?: string | undefined;
1998
+ codeName?: string | undefined;
1999
+ userParam?: Record<string, string> | undefined;
2000
+ modelId?: string | undefined;
2001
+ modelType?: string | undefined;
2002
+ } | undefined;
2003
+ panelItemGroupLogics?: {
2004
+ logicCat?: string | undefined;
2005
+ relatedItemNames?: string[] | undefined;
2006
+ groupOP?: string | undefined;
2007
+ panelItemLogics?: {
2008
+ logicCat?: string | undefined;
2009
+ logicType?: string | undefined;
2010
+ appId: string;
2011
+ id?: string | undefined;
2012
+ name?: string | undefined;
2013
+ codeName?: string | undefined;
2014
+ userParam?: Record<string, string> | undefined;
2015
+ modelId?: string | undefined;
2016
+ modelType?: string | undefined;
2017
+ }[] | undefined;
2018
+ notMode?: boolean | undefined;
2019
+ logicType?: string | undefined;
2020
+ appId: string;
2021
+ id?: string | undefined;
2022
+ name?: string | undefined;
2023
+ codeName?: string | undefined;
2024
+ userParam?: Record<string, string> | undefined;
2025
+ modelId?: string | undefined;
2026
+ modelType?: string | undefined;
2027
+ }[] | undefined;
2028
+ sysCss?: {
2029
+ codeName?: string | undefined;
2030
+ cssName?: string | undefined;
2031
+ cssStyle?: string | undefined;
2032
+ designCssStyle?: string | undefined;
2033
+ appId: string;
2034
+ id?: string | undefined;
2035
+ name?: string | undefined;
2036
+ userParam?: Record<string, string> | undefined;
2037
+ modelId?: string | undefined;
2038
+ modelType?: string | undefined;
2039
+ } | undefined;
2040
+ sysImage?: {
2041
+ codeName?: string | undefined;
2042
+ cssClass?: string | undefined;
2043
+ cssClassX?: string | undefined;
2044
+ glyph?: string | undefined;
2045
+ height?: number | undefined;
2046
+ imagePath?: string | undefined;
2047
+ imagePathX?: string | undefined;
2048
+ rawContent?: string | undefined;
2049
+ width?: number | undefined;
2050
+ appId: string;
2051
+ id?: string | undefined;
2052
+ name?: string | undefined;
2053
+ userParam?: Record<string, string> | undefined;
2054
+ modelId?: string | undefined;
2055
+ modelType?: string | undefined;
2056
+ } | undefined;
2057
+ sysPFPluginId?: string | undefined;
2058
+ width?: number | undefined;
2059
+ showCaption?: boolean | undefined;
2060
+ controlAttributes?: {
2061
+ attrName?: string | undefined;
2062
+ attrValue?: string | undefined;
2063
+ appId: string;
2064
+ id?: string | undefined;
2065
+ name?: string | undefined;
2066
+ codeName?: string | undefined;
2067
+ userParam?: Record<string, string> | undefined;
2068
+ modelId?: string | undefined;
2069
+ modelType?: string | undefined;
2070
+ }[] | undefined;
2071
+ controlLogics?: {
2072
+ attrName?: string | undefined;
2073
+ eventArg?: string | undefined;
2074
+ eventArg2?: string | undefined;
2075
+ eventNames?: string | undefined;
2076
+ itemName?: string | undefined;
2077
+ logicTag?: string | undefined;
2078
+ logicType?: string | undefined;
2079
+ appDEUIActionId?: string | undefined;
2080
+ appDEUILogicId?: string | undefined;
2081
+ appDataEntityId?: string | undefined;
2082
+ appUILogicId?: string | undefined;
2083
+ appViewEngineId?: string | undefined;
2084
+ appViewLogicId?: string | undefined;
2085
+ scriptCode?: string | undefined;
2086
+ timer?: number | undefined;
2087
+ triggerType?: string | undefined;
2088
+ appId: string;
2089
+ id?: string | undefined;
2090
+ name?: string | undefined;
2091
+ codeName?: string | undefined;
2092
+ userParam?: Record<string, string> | undefined;
2093
+ modelId?: string | undefined;
2094
+ modelType?: string | undefined;
2095
+ }[] | undefined;
2096
+ controlRenders?: any[] | undefined;
2097
+ appId: string;
2098
+ id?: string | undefined;
2099
+ name?: string | undefined;
2100
+ codeName?: string | undefined;
2101
+ userParam?: Record<string, string> | undefined;
2102
+ modelId?: string | undefined;
2103
+ modelType?: string | undefined;
2104
+ }[] | undefined;
2105
+ layoutPanel?: boolean | undefined;
2106
+ mobilePanel?: boolean | undefined;
2107
+ controlStyle?: string | undefined;
2108
+ controlType?: string | undefined;
2109
+ height?: number | undefined;
2110
+ logicName?: string | undefined;
2111
+ appDataEntityId?: string | undefined;
2112
+ controlAttributes?: {
2113
+ attrName?: string | undefined;
2114
+ attrValue?: string | undefined;
2115
+ appId: string;
2116
+ id?: string | undefined;
2117
+ name?: string | undefined;
2118
+ codeName?: string | undefined;
2119
+ userParam?: Record<string, string> | undefined;
2120
+ modelId?: string | undefined;
2121
+ modelType?: string | undefined;
2122
+ }[] | undefined;
2123
+ controlLogics?: {
2124
+ attrName?: string | undefined;
2125
+ eventArg?: string | undefined;
2126
+ eventArg2?: string | undefined;
2127
+ eventNames?: string | undefined;
2128
+ itemName?: string | undefined;
2129
+ logicTag?: string | undefined;
2130
+ logicType?: string | undefined;
2131
+ appDEUIActionId?: string | undefined;
2132
+ appDEUILogicId?: string | undefined;
2133
+ appDataEntityId?: string | undefined;
2134
+ appUILogicId?: string | undefined;
2135
+ appViewEngineId?: string | undefined;
2136
+ appViewLogicId?: string | undefined;
2137
+ scriptCode?: string | undefined;
2138
+ timer?: number | undefined;
2139
+ triggerType?: string | undefined;
2140
+ appId: string;
2141
+ id?: string | undefined;
2142
+ name?: string | undefined;
2143
+ codeName?: string | undefined;
2144
+ userParam?: Record<string, string> | undefined;
2145
+ modelId?: string | undefined;
2146
+ modelType?: string | undefined;
2147
+ }[] | undefined;
2148
+ controlParam?: {
2149
+ ctrlParams?: {
2150
+ [x: string]: any;
2151
+ [x: symbol]: any;
2152
+ constructor: Function;
2153
+ toString: () => string;
2154
+ toLocaleString: () => string;
2155
+ valueOf: () => Object;
2156
+ hasOwnProperty: (v: PropertyKey) => boolean;
2157
+ isPrototypeOf: (v: Object) => boolean;
2158
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
2159
+ } | undefined;
2160
+ appId: string;
2161
+ id?: string | undefined;
2162
+ name?: string | undefined;
2163
+ codeName?: string | undefined;
2164
+ userParam?: Record<string, string> | undefined;
2165
+ modelId?: string | undefined;
2166
+ modelType?: string | undefined;
2167
+ } | undefined;
2168
+ controlRenders?: any[] | undefined;
2169
+ ctrlMsg?: {
2170
+ codeName?: string | undefined;
2171
+ msgModel?: string | undefined;
2172
+ ctrlMsgItems?: {
2173
+ content?: string | undefined;
2174
+ contentLanguageRes?: {
2175
+ defaultContent?: string | undefined;
2176
+ lanResTag?: string | undefined;
2177
+ lanResType?: string | undefined;
2178
+ refFlag?: boolean | undefined;
2179
+ appId: string;
2180
+ id?: string | undefined;
2181
+ name?: string | undefined;
2182
+ codeName?: string | undefined;
2183
+ userParam?: Record<string, string> | undefined;
2184
+ modelId?: string | undefined;
2185
+ modelType?: string | undefined;
2186
+ } | undefined;
2187
+ timeout?: number | undefined;
2188
+ appId: string;
2189
+ id?: string | undefined;
2190
+ name?: string | undefined;
2191
+ codeName?: string | undefined;
2192
+ userParam?: Record<string, string> | undefined;
2193
+ modelId?: string | undefined;
2194
+ modelType?: string | undefined;
2195
+ }[] | undefined;
2196
+ appId: string;
2197
+ id?: string | undefined;
2198
+ name?: string | undefined;
2199
+ userParam?: Record<string, string> | undefined;
2200
+ modelId?: string | undefined;
2201
+ modelType?: string | undefined;
2202
+ } | undefined;
2203
+ sysCss?: {
2204
+ codeName?: string | undefined;
2205
+ cssName?: string | undefined;
2206
+ cssStyle?: string | undefined;
2207
+ designCssStyle?: string | undefined;
2208
+ appId: string;
2209
+ id?: string | undefined;
2210
+ name?: string | undefined;
2211
+ userParam?: Record<string, string> | undefined;
2212
+ modelId?: string | undefined;
2213
+ modelType?: string | undefined;
2214
+ } | undefined;
2215
+ sysPFPluginId?: string | undefined;
2216
+ user2ControlAction?: {
2217
+ adappDELogicId?: string | undefined;
2218
+ actionDesc?: string | undefined;
2219
+ appDEMethodId?: string | undefined;
2220
+ appDataEntityId?: string | undefined;
2221
+ timeout?: number | undefined;
2222
+ appId: string;
2223
+ id?: string | undefined;
2224
+ name?: string | undefined;
2225
+ codeName?: string | undefined;
2226
+ userParam?: Record<string, string> | undefined;
2227
+ modelId?: string | undefined;
2228
+ modelType?: string | undefined;
2229
+ } | undefined;
2230
+ userControlAction?: {
2231
+ adappDELogicId?: string | undefined;
2232
+ actionDesc?: string | undefined;
2233
+ appDEMethodId?: string | undefined;
2234
+ appDataEntityId?: string | undefined;
2235
+ timeout?: number | undefined;
2236
+ appId: string;
2237
+ id?: string | undefined;
2238
+ name?: string | undefined;
2239
+ codeName?: string | undefined;
2240
+ userParam?: Record<string, string> | undefined;
2241
+ modelId?: string | undefined;
2242
+ modelType?: string | undefined;
2243
+ } | undefined;
2244
+ width?: number | undefined;
2245
+ appId: string;
2246
+ id?: string | undefined;
2247
+ name?: string | undefined;
2248
+ userParam?: Record<string, string> | undefined;
2249
+ modelId?: string | undefined;
2250
+ modelType?: string | undefined;
2251
+ appCounterRefs?: {
2252
+ appCounter?: {
2253
+ getAppDEActionId?: string | undefined;
2254
+ getAppDEDataSetId?: string | undefined;
2255
+ appDataEntityId?: string | undefined;
2256
+ codeName?: string | undefined;
2257
+ counterData?: string | undefined;
2258
+ counterData2?: string | undefined;
2259
+ counterType?: string | undefined;
2260
+ customCond?: string | undefined;
2261
+ counterId?: string | undefined;
2262
+ sysPFPluginId?: string | undefined;
2263
+ timer?: number | undefined;
2264
+ appId: string;
2265
+ id?: string | undefined;
2266
+ name?: string | undefined;
2267
+ userParam?: Record<string, string> | undefined;
2268
+ modelId?: string | undefined;
2269
+ modelType?: string | undefined;
2270
+ } | undefined;
2271
+ refMode?: {
2272
+ [x: string]: any;
2273
+ [x: symbol]: any;
2274
+ constructor: Function;
2275
+ toString: () => string;
2276
+ toLocaleString: () => string;
2277
+ valueOf: () => Object;
2278
+ hasOwnProperty: (v: PropertyKey) => boolean;
2279
+ isPrototypeOf: (v: Object) => boolean;
2280
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
2281
+ } | undefined;
2282
+ tag?: string | undefined;
2283
+ appId: string;
2284
+ id?: string | undefined;
2285
+ name?: string | undefined;
2286
+ codeName?: string | undefined;
2287
+ userParam?: Record<string, string> | undefined;
2288
+ modelId?: string | undefined;
2289
+ modelType?: string | undefined;
2290
+ }[] | undefined;
2291
+ appViewEngines?: {
2292
+ engineCat?: string | undefined;
2293
+ engineType?: string | undefined;
2294
+ params?: {
2295
+ paramType?: string | undefined;
2296
+ value?: {
2297
+ [x: string]: any;
2298
+ [x: symbol]: any;
2299
+ constructor: Function;
2300
+ toString: () => string;
2301
+ toLocaleString: () => string;
2302
+ valueOf: () => Object;
2303
+ hasOwnProperty: (v: PropertyKey) => boolean;
2304
+ isPrototypeOf: (v: Object) => boolean;
2305
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
2306
+ } | undefined;
2307
+ appId: string;
2308
+ id?: string | undefined;
2309
+ name?: string | undefined;
2310
+ codeName?: string | undefined;
2311
+ userParam?: Record<string, string> | undefined;
2312
+ modelId?: string | undefined;
2313
+ modelType?: string | undefined;
2314
+ }[] | undefined;
2315
+ appId: string;
2316
+ id?: string | undefined;
2317
+ name?: string | undefined;
2318
+ codeName?: string | undefined;
2319
+ userParam?: Record<string, string> | undefined;
2320
+ modelId?: string | undefined;
2321
+ modelType?: string | undefined;
2322
+ }[] | undefined;
2323
+ appViewLogics?: {
2324
+ builtinAppUILogic?: {
2325
+ appDEUILogicId?: string | undefined;
2326
+ appDataEntityId?: string | undefined;
2327
+ appUILogicRefViews?: {
2328
+ openMode?: string | undefined;
2329
+ refMode?: string | undefined;
2330
+ refAppViewId?: string | undefined;
2331
+ navigateContexts?: {
2332
+ desc?: string | undefined;
2333
+ key?: string | undefined;
2334
+ value?: string | undefined;
2335
+ rawValue?: boolean | undefined;
2336
+ appId: string;
2337
+ id?: string | undefined;
2338
+ name?: string | undefined;
2339
+ codeName?: string | undefined;
2340
+ userParam?: Record<string, string> | undefined;
2341
+ modelId?: string | undefined;
2342
+ modelType?: string | undefined;
2343
+ }[] | undefined;
2344
+ navigateParams?: {
2345
+ desc?: string | undefined;
2346
+ key?: string | undefined;
2347
+ value?: string | undefined;
2348
+ rawValue?: boolean | undefined;
2349
+ appId: string;
2350
+ id?: string | undefined;
2351
+ name?: string | undefined;
2352
+ codeName?: string | undefined;
2353
+ userParam?: Record<string, string> | undefined;
2354
+ modelId?: string | undefined;
2355
+ modelType?: string | undefined;
2356
+ }[] | undefined;
2357
+ appId: string;
2358
+ id?: string | undefined;
2359
+ name?: string | undefined;
2360
+ codeName?: string | undefined;
2361
+ userParam?: Record<string, string> | undefined;
2362
+ modelId?: string | undefined;
2363
+ modelType?: string | undefined;
2364
+ }[] | undefined;
2365
+ viewLogicType?: string | undefined;
2366
+ builtinLogic?: boolean | undefined;
2367
+ codeName?: string | undefined;
2368
+ logicType?: string | undefined;
2369
+ viewLogicStyle?: string | undefined;
2370
+ appId: string;
2371
+ id?: string | undefined;
2372
+ name?: string | undefined;
2373
+ userParam?: Record<string, string> | undefined;
2374
+ modelId?: string | undefined;
2375
+ modelType?: string | undefined;
2376
+ } | undefined;
2377
+ attrName?: string | undefined;
2378
+ eventArg?: string | undefined;
2379
+ eventArg2?: string | undefined;
2380
+ eventNames?: string | undefined;
2381
+ itemName?: string | undefined;
2382
+ logicParam?: string | undefined;
2383
+ logicParam2?: string | undefined;
2384
+ logicTrigger?: string | undefined;
2385
+ logicType?: string | undefined;
2386
+ owner?: {
2387
+ [x: string]: any;
2388
+ [x: symbol]: any;
2389
+ constructor: Function;
2390
+ toString: () => string;
2391
+ toLocaleString: () => string;
2392
+ valueOf: () => Object;
2393
+ hasOwnProperty: (v: PropertyKey) => boolean;
2394
+ isPrototypeOf: (v: Object) => boolean;
2395
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
2396
+ } | undefined;
2397
+ appDEUILogicId?: string | undefined;
2398
+ appDataEntityId?: string | undefined;
2399
+ appUILogicId?: string | undefined;
2400
+ appViewEngineId?: string | undefined;
2401
+ appViewLogicId?: string | undefined;
2402
+ ctrlName?: string | undefined;
2403
+ scriptCode?: string | undefined;
2404
+ timer?: number | undefined;
2405
+ builtinLogic?: boolean | undefined;
2406
+ appId: string;
2407
+ id?: string | undefined;
2408
+ name?: string | undefined;
2409
+ codeName?: string | undefined;
2410
+ userParam?: Record<string, string> | undefined;
2411
+ modelId?: string | undefined;
2412
+ modelType?: string | undefined;
2413
+ }[] | undefined;
2414
+ appViewRefs?: {
2415
+ height?: number | undefined;
2416
+ openMode?: string | undefined;
2417
+ owner?: {
2418
+ [x: string]: any;
2419
+ [x: symbol]: any;
2420
+ constructor: Function;
2421
+ toString: () => string;
2422
+ toLocaleString: () => string;
2423
+ valueOf: () => Object;
2424
+ hasOwnProperty: (v: PropertyKey) => boolean;
2425
+ isPrototypeOf: (v: Object) => boolean;
2426
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
2427
+ } | undefined;
2428
+ parentDataJO?: {
2429
+ [x: string]: any;
2430
+ [x: symbol]: any;
2431
+ constructor: Function;
2432
+ toString: () => string;
2433
+ toLocaleString: () => string;
2434
+ valueOf: () => Object;
2435
+ hasOwnProperty: (v: PropertyKey) => boolean;
2436
+ isPrototypeOf: (v: Object) => boolean;
2437
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
2438
+ } | undefined;
2439
+ realOpenMode?: string | undefined;
2440
+ realTitle?: string | undefined;
2441
+ realTitleLanguageRes?: {
2442
+ defaultContent?: string | undefined;
2443
+ lanResTag?: string | undefined;
2444
+ lanResType?: string | undefined;
2445
+ refFlag?: boolean | undefined;
2446
+ appId: string;
2447
+ id?: string | undefined;
2448
+ name?: string | undefined;
2449
+ codeName?: string | undefined;
2450
+ userParam?: Record<string, string> | undefined;
2451
+ modelId?: string | undefined;
2452
+ modelType?: string | undefined;
2453
+ } | undefined;
2454
+ refAppViewId?: string | undefined;
2455
+ viewParamJO?: {
2456
+ [x: string]: any;
2457
+ [x: symbol]: any;
2458
+ constructor: Function;
2459
+ toString: () => string;
2460
+ toLocaleString: () => string;
2461
+ valueOf: () => Object;
2462
+ hasOwnProperty: (v: PropertyKey) => boolean;
2463
+ isPrototypeOf: (v: Object) => boolean;
2464
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
2465
+ } | undefined;
2466
+ width?: number | undefined;
2467
+ navigateContexts?: {
2468
+ desc?: string | undefined;
2469
+ key?: string | undefined;
2470
+ value?: string | undefined;
2471
+ rawValue?: boolean | undefined;
2472
+ appId: string;
2473
+ id?: string | undefined;
2474
+ name?: string | undefined;
2475
+ codeName?: string | undefined;
2476
+ userParam?: Record<string, string> | undefined;
2477
+ modelId?: string | undefined;
2478
+ modelType?: string | undefined;
2479
+ }[] | undefined;
2480
+ navigateParams?: {
2481
+ desc?: string | undefined;
2482
+ key?: string | undefined;
2483
+ value?: string | undefined;
2484
+ rawValue?: boolean | undefined;
2485
+ appId: string;
2486
+ id?: string | undefined;
2487
+ name?: string | undefined;
2488
+ codeName?: string | undefined;
2489
+ userParam?: Record<string, string> | undefined;
2490
+ modelId?: string | undefined;
2491
+ modelType?: string | undefined;
2492
+ }[] | undefined;
2493
+ appId: string;
2494
+ id?: string | undefined;
2495
+ name?: string | undefined;
2496
+ codeName?: string | undefined;
2497
+ userParam?: Record<string, string> | undefined;
2498
+ modelId?: string | undefined;
2499
+ modelType?: string | undefined;
2500
+ }[] | undefined;
2501
+ controls?: {
2502
+ codeName?: string | undefined;
2503
+ controlStyle?: string | undefined;
2504
+ controlType?: string | undefined;
2505
+ height?: number | undefined;
2506
+ logicName?: string | undefined;
2507
+ appDataEntityId?: string | undefined;
2508
+ controlAttributes?: {
2509
+ attrName?: string | undefined;
2510
+ attrValue?: string | undefined;
2511
+ appId: string;
2512
+ id?: string | undefined;
2513
+ name?: string | undefined;
2514
+ codeName?: string | undefined;
2515
+ userParam?: Record<string, string> | undefined;
2516
+ modelId?: string | undefined;
2517
+ modelType?: string | undefined;
2518
+ }[] | undefined;
2519
+ controlLogics?: {
2520
+ attrName?: string | undefined;
2521
+ eventArg?: string | undefined;
2522
+ eventArg2?: string | undefined;
2523
+ eventNames?: string | undefined;
2524
+ itemName?: string | undefined;
2525
+ logicTag?: string | undefined;
2526
+ logicType?: string | undefined;
2527
+ appDEUIActionId?: string | undefined;
2528
+ appDEUILogicId?: string | undefined;
2529
+ appDataEntityId?: string | undefined;
2530
+ appUILogicId?: string | undefined;
2531
+ appViewEngineId?: string | undefined;
2532
+ appViewLogicId?: string | undefined;
2533
+ scriptCode?: string | undefined;
2534
+ timer?: number | undefined;
2535
+ triggerType?: string | undefined;
2536
+ appId: string;
2537
+ id?: string | undefined;
2538
+ name?: string | undefined;
2539
+ codeName?: string | undefined;
2540
+ userParam?: Record<string, string> | undefined;
2541
+ modelId?: string | undefined;
2542
+ modelType?: string | undefined;
2543
+ }[] | undefined;
2544
+ controlParam?: {
2545
+ ctrlParams?: {
2546
+ [x: string]: any;
2547
+ [x: symbol]: any;
2548
+ constructor: Function;
2549
+ toString: () => string;
2550
+ toLocaleString: () => string;
2551
+ valueOf: () => Object;
2552
+ hasOwnProperty: (v: PropertyKey) => boolean;
2553
+ isPrototypeOf: (v: Object) => boolean;
2554
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
2555
+ } | undefined;
2556
+ appId: string;
2557
+ id?: string | undefined;
2558
+ name?: string | undefined;
2559
+ codeName?: string | undefined;
2560
+ userParam?: Record<string, string> | undefined;
2561
+ modelId?: string | undefined;
2562
+ modelType?: string | undefined;
2563
+ } | undefined;
2564
+ controlRenders?: any[] | undefined;
2565
+ ctrlMsg?: {
2566
+ codeName?: string | undefined;
2567
+ msgModel?: string | undefined;
2568
+ ctrlMsgItems?: {
2569
+ content?: string | undefined;
2570
+ contentLanguageRes?: {
2571
+ defaultContent?: string | undefined;
2572
+ lanResTag?: string | undefined;
2573
+ lanResType?: string | undefined;
2574
+ refFlag?: boolean | undefined;
2575
+ appId: string;
2576
+ id?: string | undefined;
2577
+ name?: string | undefined;
2578
+ codeName?: string | undefined;
2579
+ userParam?: Record<string, string> | undefined;
2580
+ modelId?: string | undefined;
2581
+ modelType?: string | undefined;
2582
+ } | undefined;
2583
+ timeout?: number | undefined;
2584
+ appId: string;
2585
+ id?: string | undefined;
2586
+ name?: string | undefined;
2587
+ codeName?: string | undefined;
2588
+ userParam?: Record<string, string> | undefined;
2589
+ modelId?: string | undefined;
2590
+ modelType?: string | undefined;
2591
+ }[] | undefined;
2592
+ appId: string;
2593
+ id?: string | undefined;
2594
+ name?: string | undefined;
2595
+ userParam?: Record<string, string> | undefined;
2596
+ modelId?: string | undefined;
2597
+ modelType?: string | undefined;
2598
+ } | undefined;
2599
+ sysCss?: {
2600
+ codeName?: string | undefined;
2601
+ cssName?: string | undefined;
2602
+ cssStyle?: string | undefined;
2603
+ designCssStyle?: string | undefined;
2604
+ appId: string;
2605
+ id?: string | undefined;
2606
+ name?: string | undefined;
2607
+ userParam?: Record<string, string> | undefined;
2608
+ modelId?: string | undefined;
2609
+ modelType?: string | undefined;
2610
+ } | undefined;
2611
+ sysPFPluginId?: string | undefined;
2612
+ user2ControlAction?: {
2613
+ adappDELogicId?: string | undefined;
2614
+ actionDesc?: string | undefined;
2615
+ appDEMethodId?: string | undefined;
2616
+ appDataEntityId?: string | undefined;
2617
+ timeout?: number | undefined;
2618
+ appId: string;
2619
+ id?: string | undefined;
2620
+ name?: string | undefined;
2621
+ codeName?: string | undefined;
2622
+ userParam?: Record<string, string> | undefined;
2623
+ modelId?: string | undefined;
2624
+ modelType?: string | undefined;
2625
+ } | undefined;
2626
+ userControlAction?: {
2627
+ adappDELogicId?: string | undefined;
2628
+ actionDesc?: string | undefined;
2629
+ appDEMethodId?: string | undefined;
2630
+ appDataEntityId?: string | undefined;
2631
+ timeout?: number | undefined;
2632
+ appId: string;
2633
+ id?: string | undefined;
2634
+ name?: string | undefined;
2635
+ codeName?: string | undefined;
2636
+ userParam?: Record<string, string> | undefined;
2637
+ modelId?: string | undefined;
2638
+ modelType?: string | undefined;
2639
+ } | undefined;
2640
+ width?: number | undefined;
2641
+ appId: string;
2642
+ id?: string | undefined;
2643
+ name?: string | undefined;
2644
+ userParam?: Record<string, string> | undefined;
2645
+ modelId?: string | undefined;
2646
+ modelType?: string | undefined;
2647
+ }[] | undefined;
2648
+ layout?: {
2649
+ layout?: string | undefined;
2650
+ appId: string;
2651
+ id?: string | undefined;
2652
+ name?: string | undefined;
2653
+ codeName?: string | undefined;
2654
+ userParam?: Record<string, string> | undefined;
2655
+ modelId?: string | undefined;
2656
+ modelType?: string | undefined;
2657
+ } | undefined;
2658
+ } | undefined;
2659
+ renderName?: string | undefined;
2660
+ renderType?: string | undefined;
2661
+ appId: string;
2662
+ id?: string | undefined;
2663
+ name?: string | undefined;
2664
+ codeName?: string | undefined;
2665
+ userParam?: Record<string, string> | undefined;
2666
+ modelId?: string | undefined;
2667
+ modelType?: string | undefined;
2668
+ }[] | undefined;
2669
+ ctrlMsg?: {
2670
+ codeName?: string | undefined;
2671
+ msgModel?: string | undefined;
2672
+ ctrlMsgItems?: {
2673
+ content?: string | undefined;
2674
+ contentLanguageRes?: {
2675
+ defaultContent?: string | undefined;
2676
+ lanResTag?: string | undefined;
2677
+ lanResType?: string | undefined;
2678
+ refFlag?: boolean | undefined;
2679
+ appId: string;
2680
+ id?: string | undefined;
2681
+ name?: string | undefined;
2682
+ codeName?: string | undefined;
2683
+ userParam?: Record<string, string> | undefined;
2684
+ modelId?: string | undefined;
2685
+ modelType?: string | undefined;
2686
+ } | undefined;
2687
+ timeout?: number | undefined;
2688
+ appId: string;
2689
+ id?: string | undefined;
2690
+ name?: string | undefined;
2691
+ codeName?: string | undefined;
2692
+ userParam?: Record<string, string> | undefined;
2693
+ modelId?: string | undefined;
2694
+ modelType?: string | undefined;
2695
+ }[] | undefined;
2696
+ appId: string;
2697
+ id?: string | undefined;
2698
+ name?: string | undefined;
2699
+ userParam?: Record<string, string> | undefined;
2700
+ modelId?: string | undefined;
2701
+ modelType?: string | undefined;
2702
+ } | undefined;
2703
+ sysCss?: {
2704
+ codeName?: string | undefined;
2705
+ cssName?: string | undefined;
2706
+ cssStyle?: string | undefined;
2707
+ designCssStyle?: string | undefined;
2708
+ appId: string;
2709
+ id?: string | undefined;
2710
+ name?: string | undefined;
2711
+ userParam?: Record<string, string> | undefined;
2712
+ modelId?: string | undefined;
2713
+ modelType?: string | undefined;
2714
+ } | undefined;
2715
+ sysPFPluginId?: string | undefined;
2716
+ user2ControlAction?: {
2717
+ adappDELogicId?: string | undefined;
2718
+ actionDesc?: string | undefined;
2719
+ appDEMethodId?: string | undefined;
2720
+ appDataEntityId?: string | undefined;
2721
+ timeout?: number | undefined;
2722
+ appId: string;
2723
+ id?: string | undefined;
2724
+ name?: string | undefined;
2725
+ codeName?: string | undefined;
2726
+ userParam?: Record<string, string> | undefined;
2727
+ modelId?: string | undefined;
2728
+ modelType?: string | undefined;
2729
+ } | undefined;
2730
+ userControlAction?: {
2731
+ adappDELogicId?: string | undefined;
2732
+ actionDesc?: string | undefined;
2733
+ appDEMethodId?: string | undefined;
2734
+ appDataEntityId?: string | undefined;
2735
+ timeout?: number | undefined;
2736
+ appId: string;
2737
+ id?: string | undefined;
2738
+ name?: string | undefined;
2739
+ codeName?: string | undefined;
2740
+ userParam?: Record<string, string> | undefined;
2741
+ modelId?: string | undefined;
2742
+ modelType?: string | undefined;
2743
+ } | undefined;
2744
+ width?: number | undefined;
2745
+ appId: string;
2746
+ id?: string | undefined;
2747
+ name?: string | undefined;
2748
+ userParam?: Record<string, string> | undefined;
2749
+ modelId?: string | undefined;
2750
+ modelType?: string | undefined;
2751
+ appCounterRefs?: {
2752
+ appCounter?: {
2753
+ getAppDEActionId?: string | undefined;
2754
+ getAppDEDataSetId?: string | undefined;
2755
+ appDataEntityId?: string | undefined;
2756
+ codeName?: string | undefined;
2757
+ counterData?: string | undefined;
2758
+ counterData2?: string | undefined;
2759
+ counterType?: string | undefined;
2760
+ customCond?: string | undefined;
2761
+ counterId?: string | undefined;
2762
+ sysPFPluginId?: string | undefined;
2763
+ timer?: number | undefined;
2764
+ appId: string;
2765
+ id?: string | undefined;
2766
+ name?: string | undefined;
2767
+ userParam?: Record<string, string> | undefined;
2768
+ modelId?: string | undefined;
2769
+ modelType?: string | undefined;
2770
+ } | undefined;
2771
+ refMode?: {
2772
+ [x: string]: any;
2773
+ [x: symbol]: any;
2774
+ constructor: Function;
2775
+ toString: () => string;
2776
+ toLocaleString: () => string;
2777
+ valueOf: () => Object;
2778
+ hasOwnProperty: (v: PropertyKey) => boolean;
2779
+ isPrototypeOf: (v: Object) => boolean;
2780
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
2781
+ } | undefined;
2782
+ tag?: string | undefined;
2783
+ appId: string;
2784
+ id?: string | undefined;
2785
+ name?: string | undefined;
2786
+ codeName?: string | undefined;
2787
+ userParam?: Record<string, string> | undefined;
2788
+ modelId?: string | undefined;
2789
+ modelType?: string | undefined;
2790
+ }[] | undefined;
2791
+ appViewEngines?: {
2792
+ engineCat?: string | undefined;
2793
+ engineType?: string | undefined;
2794
+ params?: {
2795
+ paramType?: string | undefined;
2796
+ value?: {
2797
+ [x: string]: any;
2798
+ [x: symbol]: any;
2799
+ constructor: Function;
2800
+ toString: () => string;
2801
+ toLocaleString: () => string;
2802
+ valueOf: () => Object;
2803
+ hasOwnProperty: (v: PropertyKey) => boolean;
2804
+ isPrototypeOf: (v: Object) => boolean;
2805
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
2806
+ } | undefined;
2807
+ appId: string;
2808
+ id?: string | undefined;
2809
+ name?: string | undefined;
2810
+ codeName?: string | undefined;
2811
+ userParam?: Record<string, string> | undefined;
2812
+ modelId?: string | undefined;
2813
+ modelType?: string | undefined;
2814
+ }[] | undefined;
2815
+ appId: string;
2816
+ id?: string | undefined;
2817
+ name?: string | undefined;
2818
+ codeName?: string | undefined;
2819
+ userParam?: Record<string, string> | undefined;
2820
+ modelId?: string | undefined;
2821
+ modelType?: string | undefined;
2822
+ }[] | undefined;
2823
+ appViewLogics?: {
2824
+ builtinAppUILogic?: {
2825
+ appDEUILogicId?: string | undefined;
2826
+ appDataEntityId?: string | undefined;
2827
+ appUILogicRefViews?: {
2828
+ openMode?: string | undefined;
2829
+ refMode?: string | undefined;
2830
+ refAppViewId?: string | undefined;
2831
+ navigateContexts?: {
2832
+ desc?: string | undefined;
2833
+ key?: string | undefined;
2834
+ value?: string | undefined;
2835
+ rawValue?: boolean | undefined;
2836
+ appId: string;
2837
+ id?: string | undefined;
2838
+ name?: string | undefined;
2839
+ codeName?: string | undefined;
2840
+ userParam?: Record<string, string> | undefined;
2841
+ modelId?: string | undefined;
2842
+ modelType?: string | undefined;
2843
+ }[] | undefined;
2844
+ navigateParams?: {
2845
+ desc?: string | undefined;
2846
+ key?: string | undefined;
2847
+ value?: string | undefined;
2848
+ rawValue?: boolean | undefined;
2849
+ appId: string;
2850
+ id?: string | undefined;
2851
+ name?: string | undefined;
2852
+ codeName?: string | undefined;
2853
+ userParam?: Record<string, string> | undefined;
2854
+ modelId?: string | undefined;
2855
+ modelType?: string | undefined;
2856
+ }[] | undefined;
2857
+ appId: string;
2858
+ id?: string | undefined;
2859
+ name?: string | undefined;
2860
+ codeName?: string | undefined;
2861
+ userParam?: Record<string, string> | undefined;
2862
+ modelId?: string | undefined;
2863
+ modelType?: string | undefined;
2864
+ }[] | undefined;
2865
+ viewLogicType?: string | undefined;
2866
+ builtinLogic?: boolean | undefined;
2867
+ codeName?: string | undefined;
2868
+ logicType?: string | undefined;
2869
+ viewLogicStyle?: string | undefined;
2870
+ appId: string;
2871
+ id?: string | undefined;
2872
+ name?: string | undefined;
2873
+ userParam?: Record<string, string> | undefined;
2874
+ modelId?: string | undefined;
2875
+ modelType?: string | undefined;
2876
+ } | undefined;
2877
+ attrName?: string | undefined;
2878
+ eventArg?: string | undefined;
2879
+ eventArg2?: string | undefined;
2880
+ eventNames?: string | undefined;
2881
+ itemName?: string | undefined;
2882
+ logicParam?: string | undefined;
2883
+ logicParam2?: string | undefined;
2884
+ logicTrigger?: string | undefined;
2885
+ logicType?: string | undefined;
2886
+ owner?: {
2887
+ [x: string]: any;
2888
+ [x: symbol]: any;
2889
+ constructor: Function;
2890
+ toString: () => string;
2891
+ toLocaleString: () => string;
2892
+ valueOf: () => Object;
2893
+ hasOwnProperty: (v: PropertyKey) => boolean;
2894
+ isPrototypeOf: (v: Object) => boolean;
2895
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
2896
+ } | undefined;
2897
+ appDEUILogicId?: string | undefined;
2898
+ appDataEntityId?: string | undefined;
2899
+ appUILogicId?: string | undefined;
2900
+ appViewEngineId?: string | undefined;
2901
+ appViewLogicId?: string | undefined;
2902
+ ctrlName?: string | undefined;
2903
+ scriptCode?: string | undefined;
2904
+ timer?: number | undefined;
2905
+ builtinLogic?: boolean | undefined;
2906
+ appId: string;
2907
+ id?: string | undefined;
2908
+ name?: string | undefined;
2909
+ codeName?: string | undefined;
2910
+ userParam?: Record<string, string> | undefined;
2911
+ modelId?: string | undefined;
2912
+ modelType?: string | undefined;
2913
+ }[] | undefined;
2914
+ appViewRefs?: {
2915
+ height?: number | undefined;
2916
+ openMode?: string | undefined;
2917
+ owner?: {
2918
+ [x: string]: any;
2919
+ [x: symbol]: any;
2920
+ constructor: Function;
2921
+ toString: () => string;
2922
+ toLocaleString: () => string;
2923
+ valueOf: () => Object;
2924
+ hasOwnProperty: (v: PropertyKey) => boolean;
2925
+ isPrototypeOf: (v: Object) => boolean;
2926
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
2927
+ } | undefined;
2928
+ parentDataJO?: {
2929
+ [x: string]: any;
2930
+ [x: symbol]: any;
2931
+ constructor: Function;
2932
+ toString: () => string;
2933
+ toLocaleString: () => string;
2934
+ valueOf: () => Object;
2935
+ hasOwnProperty: (v: PropertyKey) => boolean;
2936
+ isPrototypeOf: (v: Object) => boolean;
2937
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
2938
+ } | undefined;
2939
+ realOpenMode?: string | undefined;
2940
+ realTitle?: string | undefined;
2941
+ realTitleLanguageRes?: {
2942
+ defaultContent?: string | undefined;
2943
+ lanResTag?: string | undefined;
2944
+ lanResType?: string | undefined;
2945
+ refFlag?: boolean | undefined;
2946
+ appId: string;
2947
+ id?: string | undefined;
2948
+ name?: string | undefined;
2949
+ codeName?: string | undefined;
2950
+ userParam?: Record<string, string> | undefined;
2951
+ modelId?: string | undefined;
2952
+ modelType?: string | undefined;
2953
+ } | undefined;
2954
+ refAppViewId?: string | undefined;
2955
+ viewParamJO?: {
2956
+ [x: string]: any;
2957
+ [x: symbol]: any;
2958
+ constructor: Function;
2959
+ toString: () => string;
2960
+ toLocaleString: () => string;
2961
+ valueOf: () => Object;
2962
+ hasOwnProperty: (v: PropertyKey) => boolean;
2963
+ isPrototypeOf: (v: Object) => boolean;
2964
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
2965
+ } | undefined;
2966
+ width?: number | undefined;
2967
+ navigateContexts?: {
2968
+ desc?: string | undefined;
2969
+ key?: string | undefined;
2970
+ value?: string | undefined;
2971
+ rawValue?: boolean | undefined;
2972
+ appId: string;
2973
+ id?: string | undefined;
2974
+ name?: string | undefined;
2975
+ codeName?: string | undefined;
2976
+ userParam?: Record<string, string> | undefined;
2977
+ modelId?: string | undefined;
2978
+ modelType?: string | undefined;
2979
+ }[] | undefined;
2980
+ navigateParams?: {
2981
+ desc?: string | undefined;
2982
+ key?: string | undefined;
2983
+ value?: string | undefined;
2984
+ rawValue?: boolean | undefined;
2985
+ appId: string;
2986
+ id?: string | undefined;
2987
+ name?: string | undefined;
2988
+ codeName?: string | undefined;
2989
+ userParam?: Record<string, string> | undefined;
2990
+ modelId?: string | undefined;
2991
+ modelType?: string | undefined;
2992
+ }[] | undefined;
2993
+ appId: string;
2994
+ id?: string | undefined;
2995
+ name?: string | undefined;
2996
+ codeName?: string | undefined;
2997
+ userParam?: Record<string, string> | undefined;
2998
+ modelId?: string | undefined;
2999
+ modelType?: string | undefined;
3000
+ }[] | undefined;
3001
+ controls?: {
3002
+ codeName?: string | undefined;
3003
+ controlStyle?: string | undefined;
3004
+ controlType?: string | undefined;
3005
+ height?: number | undefined;
3006
+ logicName?: string | undefined;
3007
+ appDataEntityId?: string | undefined;
3008
+ controlAttributes?: {
3009
+ attrName?: string | undefined;
3010
+ attrValue?: string | undefined;
3011
+ appId: string;
3012
+ id?: string | undefined;
3013
+ name?: string | undefined;
3014
+ codeName?: string | undefined;
3015
+ userParam?: Record<string, string> | undefined;
3016
+ modelId?: string | undefined;
3017
+ modelType?: string | undefined;
3018
+ }[] | undefined;
3019
+ controlLogics?: {
3020
+ attrName?: string | undefined;
3021
+ eventArg?: string | undefined;
3022
+ eventArg2?: string | undefined;
3023
+ eventNames?: string | undefined;
3024
+ itemName?: string | undefined;
3025
+ logicTag?: string | undefined;
3026
+ logicType?: string | undefined;
3027
+ appDEUIActionId?: string | undefined;
3028
+ appDEUILogicId?: string | undefined;
3029
+ appDataEntityId?: string | undefined;
3030
+ appUILogicId?: string | undefined;
3031
+ appViewEngineId?: string | undefined;
3032
+ appViewLogicId?: string | undefined;
3033
+ scriptCode?: string | undefined;
3034
+ timer?: number | undefined;
3035
+ triggerType?: string | undefined;
3036
+ appId: string;
3037
+ id?: string | undefined;
3038
+ name?: string | undefined;
3039
+ codeName?: string | undefined;
3040
+ userParam?: Record<string, string> | undefined;
3041
+ modelId?: string | undefined;
3042
+ modelType?: string | undefined;
3043
+ }[] | undefined;
3044
+ controlParam?: {
3045
+ ctrlParams?: {
3046
+ [x: string]: any;
3047
+ [x: symbol]: any;
3048
+ constructor: Function;
3049
+ toString: () => string;
3050
+ toLocaleString: () => string;
3051
+ valueOf: () => Object;
3052
+ hasOwnProperty: (v: PropertyKey) => boolean;
3053
+ isPrototypeOf: (v: Object) => boolean;
3054
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
3055
+ } | undefined;
3056
+ appId: string;
3057
+ id?: string | undefined;
3058
+ name?: string | undefined;
3059
+ codeName?: string | undefined;
3060
+ userParam?: Record<string, string> | undefined;
3061
+ modelId?: string | undefined;
3062
+ modelType?: string | undefined;
3063
+ } | undefined;
3064
+ controlRenders?: {
3065
+ layoutPanelModel?: string | undefined;
3066
+ layoutPanel?: {
3067
+ codeName?: string | undefined;
3068
+ dataMode?: number | undefined;
3069
+ dataName?: string | undefined;
3070
+ dataTimer?: number | undefined;
3071
+ getControlAction?: {
3072
+ adappDELogicId?: string | undefined;
3073
+ actionDesc?: string | undefined;
3074
+ appDEMethodId?: string | undefined;
3075
+ appDataEntityId?: string | undefined;
3076
+ timeout?: number | undefined;
3077
+ appId: string;
3078
+ id?: string | undefined;
3079
+ name?: string | undefined;
3080
+ codeName?: string | undefined;
3081
+ userParam?: Record<string, string> | undefined;
3082
+ modelId?: string | undefined;
3083
+ modelType?: string | undefined;
3084
+ } | undefined;
3085
+ layoutMode?: string | undefined;
3086
+ panelStyle?: string | undefined;
3087
+ panelWidth?: number | undefined;
3088
+ rootPanelItems?: {
3089
+ capLanguageRes?: {
3090
+ defaultContent?: string | undefined;
3091
+ lanResTag?: string | undefined;
3092
+ lanResType?: string | undefined;
3093
+ refFlag?: boolean | undefined;
3094
+ appId: string;
3095
+ id?: string | undefined;
3096
+ name?: string | undefined;
3097
+ codeName?: string | undefined;
3098
+ userParam?: Record<string, string> | undefined;
3099
+ modelId?: string | undefined;
3100
+ modelType?: string | undefined;
3101
+ } | undefined;
3102
+ caption?: string | undefined;
3103
+ contentHeight?: number | undefined;
3104
+ contentWidth?: number | undefined;
3105
+ cssStyle?: string | undefined;
3106
+ dynaClass?: string | undefined;
3107
+ height?: number | undefined;
3108
+ itemStyle?: string | undefined;
3109
+ itemType?: string | undefined;
3110
+ labelCssStyle?: string | undefined;
3111
+ labelDynaClass?: string | undefined;
3112
+ labelSysCss?: {
3113
+ codeName?: string | undefined;
3114
+ cssName?: string | undefined;
3115
+ cssStyle?: string | undefined;
3116
+ designCssStyle?: string | undefined;
3117
+ appId: string;
3118
+ id?: string | undefined;
3119
+ name?: string | undefined;
3120
+ userParam?: Record<string, string> | undefined;
3121
+ modelId?: string | undefined;
3122
+ modelType?: string | undefined;
3123
+ } | undefined;
3124
+ layout?: {
3125
+ layout?: string | undefined;
3126
+ appId: string;
3127
+ id?: string | undefined;
3128
+ name?: string | undefined;
3129
+ codeName?: string | undefined;
3130
+ userParam?: Record<string, string> | undefined;
3131
+ modelId?: string | undefined;
3132
+ modelType?: string | undefined;
3133
+ } | undefined;
3134
+ layoutPos?: {
3135
+ halignSelf?: string | undefined;
3136
+ height?: number | undefined;
3137
+ heightMode?: string | undefined;
3138
+ layout?: string | undefined;
3139
+ spacingBottom?: string | undefined;
3140
+ spacingLeft?: string | undefined;
3141
+ spacingRight?: string | undefined;
3142
+ spacingTop?: string | undefined;
3143
+ valignSelf?: string | undefined;
3144
+ width?: number | undefined;
3145
+ widthMode?: string | undefined;
3146
+ appId: string;
3147
+ id?: string | undefined;
3148
+ name?: string | undefined;
3149
+ codeName?: string | undefined;
3150
+ userParam?: Record<string, string> | undefined;
3151
+ modelId?: string | undefined;
3152
+ modelType?: string | undefined;
3153
+ } | undefined;
3154
+ panelItemGroupLogics?: {
3155
+ logicCat?: string | undefined;
3156
+ relatedItemNames?: string[] | undefined;
3157
+ groupOP?: string | undefined;
3158
+ panelItemLogics?: {
3159
+ logicCat?: string | undefined;
3160
+ logicType?: string | undefined;
3161
+ appId: string;
3162
+ id?: string | undefined;
3163
+ name?: string | undefined;
3164
+ codeName?: string | undefined;
3165
+ userParam?: Record<string, string> | undefined;
3166
+ modelId?: string | undefined;
3167
+ modelType?: string | undefined;
3168
+ }[] | undefined;
3169
+ notMode?: boolean | undefined;
3170
+ logicType?: string | undefined;
3171
+ appId: string;
3172
+ id?: string | undefined;
3173
+ name?: string | undefined;
3174
+ codeName?: string | undefined;
3175
+ userParam?: Record<string, string> | undefined;
3176
+ modelId?: string | undefined;
3177
+ modelType?: string | undefined;
3178
+ }[] | undefined;
3179
+ sysCss?: {
3180
+ codeName?: string | undefined;
3181
+ cssName?: string | undefined;
3182
+ cssStyle?: string | undefined;
3183
+ designCssStyle?: string | undefined;
3184
+ appId: string;
3185
+ id?: string | undefined;
3186
+ name?: string | undefined;
3187
+ userParam?: Record<string, string> | undefined;
3188
+ modelId?: string | undefined;
3189
+ modelType?: string | undefined;
3190
+ } | undefined;
3191
+ sysImage?: {
3192
+ codeName?: string | undefined;
3193
+ cssClass?: string | undefined;
3194
+ cssClassX?: string | undefined;
3195
+ glyph?: string | undefined;
3196
+ height?: number | undefined;
3197
+ imagePath?: string | undefined;
3198
+ imagePathX?: string | undefined;
3199
+ rawContent?: string | undefined;
3200
+ width?: number | undefined;
3201
+ appId: string;
3202
+ id?: string | undefined;
3203
+ name?: string | undefined;
3204
+ userParam?: Record<string, string> | undefined;
3205
+ modelId?: string | undefined;
3206
+ modelType?: string | undefined;
3207
+ } | undefined;
3208
+ sysPFPluginId?: string | undefined;
3209
+ width?: number | undefined;
3210
+ showCaption?: boolean | undefined;
3211
+ controlAttributes?: {
3212
+ attrName?: string | undefined;
3213
+ attrValue?: string | undefined;
3214
+ appId: string;
3215
+ id?: string | undefined;
3216
+ name?: string | undefined;
3217
+ codeName?: string | undefined;
3218
+ userParam?: Record<string, string> | undefined;
3219
+ modelId?: string | undefined;
3220
+ modelType?: string | undefined;
3221
+ }[] | undefined;
3222
+ controlLogics?: {
3223
+ attrName?: string | undefined;
3224
+ eventArg?: string | undefined;
3225
+ eventArg2?: string | undefined;
3226
+ eventNames?: string | undefined;
3227
+ itemName?: string | undefined;
3228
+ logicTag?: string | undefined;
3229
+ logicType?: string | undefined;
3230
+ appDEUIActionId?: string | undefined;
3231
+ appDEUILogicId?: string | undefined;
3232
+ appDataEntityId?: string | undefined;
3233
+ appUILogicId?: string | undefined;
3234
+ appViewEngineId?: string | undefined;
3235
+ appViewLogicId?: string | undefined;
3236
+ scriptCode?: string | undefined;
3237
+ timer?: number | undefined;
3238
+ triggerType?: string | undefined;
3239
+ appId: string;
3240
+ id?: string | undefined;
3241
+ name?: string | undefined;
3242
+ codeName?: string | undefined;
3243
+ userParam?: Record<string, string> | undefined;
3244
+ modelId?: string | undefined;
3245
+ modelType?: string | undefined;
3246
+ }[] | undefined;
3247
+ controlRenders?: any[] | undefined;
3248
+ appId: string;
3249
+ id?: string | undefined;
3250
+ name?: string | undefined;
3251
+ codeName?: string | undefined;
3252
+ userParam?: Record<string, string> | undefined;
3253
+ modelId?: string | undefined;
3254
+ modelType?: string | undefined;
3255
+ }[] | undefined;
3256
+ layoutPanel?: boolean | undefined;
3257
+ mobilePanel?: boolean | undefined;
3258
+ controlStyle?: string | undefined;
3259
+ controlType?: string | undefined;
3260
+ height?: number | undefined;
3261
+ logicName?: string | undefined;
3262
+ appDataEntityId?: string | undefined;
3263
+ controlAttributes?: {
3264
+ attrName?: string | undefined;
3265
+ attrValue?: string | undefined;
3266
+ appId: string;
3267
+ id?: string | undefined;
3268
+ name?: string | undefined;
3269
+ codeName?: string | undefined;
3270
+ userParam?: Record<string, string> | undefined;
3271
+ modelId?: string | undefined;
3272
+ modelType?: string | undefined;
3273
+ }[] | undefined;
3274
+ controlLogics?: {
3275
+ attrName?: string | undefined;
3276
+ eventArg?: string | undefined;
3277
+ eventArg2?: string | undefined;
3278
+ eventNames?: string | undefined;
3279
+ itemName?: string | undefined;
3280
+ logicTag?: string | undefined;
3281
+ logicType?: string | undefined;
3282
+ appDEUIActionId?: string | undefined;
3283
+ appDEUILogicId?: string | undefined;
3284
+ appDataEntityId?: string | undefined;
3285
+ appUILogicId?: string | undefined;
3286
+ appViewEngineId?: string | undefined;
3287
+ appViewLogicId?: string | undefined;
3288
+ scriptCode?: string | undefined;
3289
+ timer?: number | undefined;
3290
+ triggerType?: string | undefined;
3291
+ appId: string;
3292
+ id?: string | undefined;
3293
+ name?: string | undefined;
3294
+ codeName?: string | undefined;
3295
+ userParam?: Record<string, string> | undefined;
3296
+ modelId?: string | undefined;
3297
+ modelType?: string | undefined;
3298
+ }[] | undefined;
3299
+ controlParam?: {
3300
+ ctrlParams?: {
3301
+ [x: string]: any;
3302
+ [x: symbol]: any;
3303
+ constructor: Function;
3304
+ toString: () => string;
3305
+ toLocaleString: () => string;
3306
+ valueOf: () => Object;
3307
+ hasOwnProperty: (v: PropertyKey) => boolean;
3308
+ isPrototypeOf: (v: Object) => boolean;
3309
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
3310
+ } | undefined;
3311
+ appId: string;
3312
+ id?: string | undefined;
3313
+ name?: string | undefined;
3314
+ codeName?: string | undefined;
3315
+ userParam?: Record<string, string> | undefined;
3316
+ modelId?: string | undefined;
3317
+ modelType?: string | undefined;
3318
+ } | undefined;
3319
+ controlRenders?: any[] | undefined;
3320
+ ctrlMsg?: {
3321
+ codeName?: string | undefined;
3322
+ msgModel?: string | undefined;
3323
+ ctrlMsgItems?: {
3324
+ content?: string | undefined;
3325
+ contentLanguageRes?: {
3326
+ defaultContent?: string | undefined;
3327
+ lanResTag?: string | undefined;
3328
+ lanResType?: string | undefined;
3329
+ refFlag?: boolean | undefined;
3330
+ appId: string;
3331
+ id?: string | undefined;
3332
+ name?: string | undefined;
3333
+ codeName?: string | undefined;
3334
+ userParam?: Record<string, string> | undefined;
3335
+ modelId?: string | undefined;
3336
+ modelType?: string | undefined;
3337
+ } | undefined;
3338
+ timeout?: number | undefined;
3339
+ appId: string;
3340
+ id?: string | undefined;
3341
+ name?: string | undefined;
3342
+ codeName?: string | undefined;
3343
+ userParam?: Record<string, string> | undefined;
3344
+ modelId?: string | undefined;
3345
+ modelType?: string | undefined;
3346
+ }[] | undefined;
3347
+ appId: string;
3348
+ id?: string | undefined;
3349
+ name?: string | undefined;
3350
+ userParam?: Record<string, string> | undefined;
3351
+ modelId?: string | undefined;
3352
+ modelType?: string | undefined;
3353
+ } | undefined;
3354
+ sysCss?: {
3355
+ codeName?: string | undefined;
3356
+ cssName?: string | undefined;
3357
+ cssStyle?: string | undefined;
3358
+ designCssStyle?: string | undefined;
3359
+ appId: string;
3360
+ id?: string | undefined;
3361
+ name?: string | undefined;
3362
+ userParam?: Record<string, string> | undefined;
3363
+ modelId?: string | undefined;
3364
+ modelType?: string | undefined;
3365
+ } | undefined;
3366
+ sysPFPluginId?: string | undefined;
3367
+ user2ControlAction?: {
3368
+ adappDELogicId?: string | undefined;
3369
+ actionDesc?: string | undefined;
3370
+ appDEMethodId?: string | undefined;
3371
+ appDataEntityId?: string | undefined;
3372
+ timeout?: number | undefined;
3373
+ appId: string;
3374
+ id?: string | undefined;
3375
+ name?: string | undefined;
3376
+ codeName?: string | undefined;
3377
+ userParam?: Record<string, string> | undefined;
3378
+ modelId?: string | undefined;
3379
+ modelType?: string | undefined;
3380
+ } | undefined;
3381
+ userControlAction?: {
3382
+ adappDELogicId?: string | undefined;
3383
+ actionDesc?: string | undefined;
3384
+ appDEMethodId?: string | undefined;
3385
+ appDataEntityId?: string | undefined;
3386
+ timeout?: number | undefined;
3387
+ appId: string;
3388
+ id?: string | undefined;
3389
+ name?: string | undefined;
3390
+ codeName?: string | undefined;
3391
+ userParam?: Record<string, string> | undefined;
3392
+ modelId?: string | undefined;
3393
+ modelType?: string | undefined;
3394
+ } | undefined;
3395
+ width?: number | undefined;
3396
+ appId: string;
3397
+ id?: string | undefined;
3398
+ name?: string | undefined;
3399
+ userParam?: Record<string, string> | undefined;
3400
+ modelId?: string | undefined;
3401
+ modelType?: string | undefined;
3402
+ appCounterRefs?: {
3403
+ appCounter?: {
3404
+ getAppDEActionId?: string | undefined;
3405
+ getAppDEDataSetId?: string | undefined;
3406
+ appDataEntityId?: string | undefined;
3407
+ codeName?: string | undefined;
3408
+ counterData?: string | undefined;
3409
+ counterData2?: string | undefined;
3410
+ counterType?: string | undefined;
3411
+ customCond?: string | undefined;
3412
+ counterId?: string | undefined;
3413
+ sysPFPluginId?: string | undefined;
3414
+ timer?: number | undefined;
3415
+ appId: string;
3416
+ id?: string | undefined;
3417
+ name?: string | undefined;
3418
+ userParam?: Record<string, string> | undefined;
3419
+ modelId?: string | undefined;
3420
+ modelType?: string | undefined;
3421
+ } | undefined;
3422
+ refMode?: {
3423
+ [x: string]: any;
3424
+ [x: symbol]: any;
3425
+ constructor: Function;
3426
+ toString: () => string;
3427
+ toLocaleString: () => string;
3428
+ valueOf: () => Object;
3429
+ hasOwnProperty: (v: PropertyKey) => boolean;
3430
+ isPrototypeOf: (v: Object) => boolean;
3431
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
3432
+ } | undefined;
3433
+ tag?: string | undefined;
3434
+ appId: string;
3435
+ id?: string | undefined;
3436
+ name?: string | undefined;
3437
+ codeName?: string | undefined;
3438
+ userParam?: Record<string, string> | undefined;
3439
+ modelId?: string | undefined;
3440
+ modelType?: string | undefined;
3441
+ }[] | undefined;
3442
+ appViewEngines?: {
3443
+ engineCat?: string | undefined;
3444
+ engineType?: string | undefined;
3445
+ params?: {
3446
+ paramType?: string | undefined;
3447
+ value?: {
3448
+ [x: string]: any;
3449
+ [x: symbol]: any;
3450
+ constructor: Function;
3451
+ toString: () => string;
3452
+ toLocaleString: () => string;
3453
+ valueOf: () => Object;
3454
+ hasOwnProperty: (v: PropertyKey) => boolean;
3455
+ isPrototypeOf: (v: Object) => boolean;
3456
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
3457
+ } | undefined;
3458
+ appId: string;
3459
+ id?: string | undefined;
3460
+ name?: string | undefined;
3461
+ codeName?: string | undefined;
3462
+ userParam?: Record<string, string> | undefined;
3463
+ modelId?: string | undefined;
3464
+ modelType?: string | undefined;
3465
+ }[] | undefined;
3466
+ appId: string;
3467
+ id?: string | undefined;
3468
+ name?: string | undefined;
3469
+ codeName?: string | undefined;
3470
+ userParam?: Record<string, string> | undefined;
3471
+ modelId?: string | undefined;
3472
+ modelType?: string | undefined;
3473
+ }[] | undefined;
3474
+ appViewLogics?: {
3475
+ builtinAppUILogic?: {
3476
+ appDEUILogicId?: string | undefined;
3477
+ appDataEntityId?: string | undefined;
3478
+ appUILogicRefViews?: {
3479
+ openMode?: string | undefined;
3480
+ refMode?: string | undefined;
3481
+ refAppViewId?: string | undefined;
3482
+ navigateContexts?: {
3483
+ desc?: string | undefined;
3484
+ key?: string | undefined;
3485
+ value?: string | undefined;
3486
+ rawValue?: boolean | undefined;
3487
+ appId: string;
3488
+ id?: string | undefined;
3489
+ name?: string | undefined;
3490
+ codeName?: string | undefined;
3491
+ userParam?: Record<string, string> | undefined;
3492
+ modelId?: string | undefined;
3493
+ modelType?: string | undefined;
3494
+ }[] | undefined;
3495
+ navigateParams?: {
3496
+ desc?: string | undefined;
3497
+ key?: string | undefined;
3498
+ value?: string | undefined;
3499
+ rawValue?: boolean | undefined;
3500
+ appId: string;
3501
+ id?: string | undefined;
3502
+ name?: string | undefined;
3503
+ codeName?: string | undefined;
3504
+ userParam?: Record<string, string> | undefined;
3505
+ modelId?: string | undefined;
3506
+ modelType?: string | undefined;
3507
+ }[] | undefined;
3508
+ appId: string;
3509
+ id?: string | undefined;
3510
+ name?: string | undefined;
3511
+ codeName?: string | undefined;
3512
+ userParam?: Record<string, string> | undefined;
3513
+ modelId?: string | undefined;
3514
+ modelType?: string | undefined;
3515
+ }[] | undefined;
3516
+ viewLogicType?: string | undefined;
3517
+ builtinLogic?: boolean | undefined;
3518
+ codeName?: string | undefined;
3519
+ logicType?: string | undefined;
3520
+ viewLogicStyle?: string | undefined;
3521
+ appId: string;
3522
+ id?: string | undefined;
3523
+ name?: string | undefined;
3524
+ userParam?: Record<string, string> | undefined;
3525
+ modelId?: string | undefined;
3526
+ modelType?: string | undefined;
3527
+ } | undefined;
3528
+ attrName?: string | undefined;
3529
+ eventArg?: string | undefined;
3530
+ eventArg2?: string | undefined;
3531
+ eventNames?: string | undefined;
3532
+ itemName?: string | undefined;
3533
+ logicParam?: string | undefined;
3534
+ logicParam2?: string | undefined;
3535
+ logicTrigger?: string | undefined;
3536
+ logicType?: string | undefined;
3537
+ owner?: {
3538
+ [x: string]: any;
3539
+ [x: symbol]: any;
3540
+ constructor: Function;
3541
+ toString: () => string;
3542
+ toLocaleString: () => string;
3543
+ valueOf: () => Object;
3544
+ hasOwnProperty: (v: PropertyKey) => boolean;
3545
+ isPrototypeOf: (v: Object) => boolean;
3546
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
3547
+ } | undefined;
3548
+ appDEUILogicId?: string | undefined;
3549
+ appDataEntityId?: string | undefined;
3550
+ appUILogicId?: string | undefined;
3551
+ appViewEngineId?: string | undefined;
3552
+ appViewLogicId?: string | undefined;
3553
+ ctrlName?: string | undefined;
3554
+ scriptCode?: string | undefined;
3555
+ timer?: number | undefined;
3556
+ builtinLogic?: boolean | undefined;
3557
+ appId: string;
3558
+ id?: string | undefined;
3559
+ name?: string | undefined;
3560
+ codeName?: string | undefined;
3561
+ userParam?: Record<string, string> | undefined;
3562
+ modelId?: string | undefined;
3563
+ modelType?: string | undefined;
3564
+ }[] | undefined;
3565
+ appViewRefs?: {
3566
+ height?: number | undefined;
3567
+ openMode?: string | undefined;
3568
+ owner?: {
3569
+ [x: string]: any;
3570
+ [x: symbol]: any;
3571
+ constructor: Function;
3572
+ toString: () => string;
3573
+ toLocaleString: () => string;
3574
+ valueOf: () => Object;
3575
+ hasOwnProperty: (v: PropertyKey) => boolean;
3576
+ isPrototypeOf: (v: Object) => boolean;
3577
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
3578
+ } | undefined;
3579
+ parentDataJO?: {
3580
+ [x: string]: any;
3581
+ [x: symbol]: any;
3582
+ constructor: Function;
3583
+ toString: () => string;
3584
+ toLocaleString: () => string;
3585
+ valueOf: () => Object;
3586
+ hasOwnProperty: (v: PropertyKey) => boolean;
3587
+ isPrototypeOf: (v: Object) => boolean;
3588
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
3589
+ } | undefined;
3590
+ realOpenMode?: string | undefined;
3591
+ realTitle?: string | undefined;
3592
+ realTitleLanguageRes?: {
3593
+ defaultContent?: string | undefined;
3594
+ lanResTag?: string | undefined;
3595
+ lanResType?: string | undefined;
3596
+ refFlag?: boolean | undefined;
3597
+ appId: string;
3598
+ id?: string | undefined;
3599
+ name?: string | undefined;
3600
+ codeName?: string | undefined;
3601
+ userParam?: Record<string, string> | undefined;
3602
+ modelId?: string | undefined;
3603
+ modelType?: string | undefined;
3604
+ } | undefined;
3605
+ refAppViewId?: string | undefined;
3606
+ viewParamJO?: {
3607
+ [x: string]: any;
3608
+ [x: symbol]: any;
3609
+ constructor: Function;
3610
+ toString: () => string;
3611
+ toLocaleString: () => string;
3612
+ valueOf: () => Object;
3613
+ hasOwnProperty: (v: PropertyKey) => boolean;
3614
+ isPrototypeOf: (v: Object) => boolean;
3615
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
3616
+ } | undefined;
3617
+ width?: number | undefined;
3618
+ navigateContexts?: {
3619
+ desc?: string | undefined;
3620
+ key?: string | undefined;
3621
+ value?: string | undefined;
3622
+ rawValue?: boolean | undefined;
3623
+ appId: string;
3624
+ id?: string | undefined;
3625
+ name?: string | undefined;
3626
+ codeName?: string | undefined;
3627
+ userParam?: Record<string, string> | undefined;
3628
+ modelId?: string | undefined;
3629
+ modelType?: string | undefined;
3630
+ }[] | undefined;
3631
+ navigateParams?: {
3632
+ desc?: string | undefined;
3633
+ key?: string | undefined;
3634
+ value?: string | undefined;
3635
+ rawValue?: boolean | undefined;
3636
+ appId: string;
3637
+ id?: string | undefined;
3638
+ name?: string | undefined;
3639
+ codeName?: string | undefined;
3640
+ userParam?: Record<string, string> | undefined;
3641
+ modelId?: string | undefined;
3642
+ modelType?: string | undefined;
3643
+ }[] | undefined;
3644
+ appId: string;
3645
+ id?: string | undefined;
3646
+ name?: string | undefined;
3647
+ codeName?: string | undefined;
3648
+ userParam?: Record<string, string> | undefined;
3649
+ modelId?: string | undefined;
3650
+ modelType?: string | undefined;
3651
+ }[] | undefined;
3652
+ controls?: any[] | undefined;
3653
+ layout?: {
3654
+ layout?: string | undefined;
3655
+ appId: string;
3656
+ id?: string | undefined;
3657
+ name?: string | undefined;
3658
+ codeName?: string | undefined;
3659
+ userParam?: Record<string, string> | undefined;
3660
+ modelId?: string | undefined;
3661
+ modelType?: string | undefined;
3662
+ } | undefined;
3663
+ } | undefined;
3664
+ renderName?: string | undefined;
3665
+ renderType?: string | undefined;
3666
+ appId: string;
3667
+ id?: string | undefined;
3668
+ name?: string | undefined;
3669
+ codeName?: string | undefined;
3670
+ userParam?: Record<string, string> | undefined;
3671
+ modelId?: string | undefined;
3672
+ modelType?: string | undefined;
3673
+ }[] | undefined;
3674
+ ctrlMsg?: {
3675
+ codeName?: string | undefined;
3676
+ msgModel?: string | undefined;
3677
+ ctrlMsgItems?: {
3678
+ content?: string | undefined;
3679
+ contentLanguageRes?: {
3680
+ defaultContent?: string | undefined;
3681
+ lanResTag?: string | undefined;
3682
+ lanResType?: string | undefined;
3683
+ refFlag?: boolean | undefined;
3684
+ appId: string;
3685
+ id?: string | undefined;
3686
+ name?: string | undefined;
3687
+ codeName?: string | undefined;
3688
+ userParam?: Record<string, string> | undefined;
3689
+ modelId?: string | undefined;
3690
+ modelType?: string | undefined;
3691
+ } | undefined;
3692
+ timeout?: number | undefined;
3693
+ appId: string;
3694
+ id?: string | undefined;
3695
+ name?: string | undefined;
3696
+ codeName?: string | undefined;
3697
+ userParam?: Record<string, string> | undefined;
3698
+ modelId?: string | undefined;
3699
+ modelType?: string | undefined;
3700
+ }[] | undefined;
3701
+ appId: string;
3702
+ id?: string | undefined;
3703
+ name?: string | undefined;
3704
+ userParam?: Record<string, string> | undefined;
3705
+ modelId?: string | undefined;
3706
+ modelType?: string | undefined;
3707
+ } | undefined;
3708
+ sysCss?: {
3709
+ codeName?: string | undefined;
3710
+ cssName?: string | undefined;
3711
+ cssStyle?: string | undefined;
3712
+ designCssStyle?: string | undefined;
3713
+ appId: string;
3714
+ id?: string | undefined;
3715
+ name?: string | undefined;
3716
+ userParam?: Record<string, string> | undefined;
3717
+ modelId?: string | undefined;
3718
+ modelType?: string | undefined;
3719
+ } | undefined;
3720
+ sysPFPluginId?: string | undefined;
3721
+ user2ControlAction?: {
3722
+ adappDELogicId?: string | undefined;
3723
+ actionDesc?: string | undefined;
3724
+ appDEMethodId?: string | undefined;
3725
+ appDataEntityId?: string | undefined;
3726
+ timeout?: number | undefined;
3727
+ appId: string;
3728
+ id?: string | undefined;
3729
+ name?: string | undefined;
3730
+ codeName?: string | undefined;
3731
+ userParam?: Record<string, string> | undefined;
3732
+ modelId?: string | undefined;
3733
+ modelType?: string | undefined;
3734
+ } | undefined;
3735
+ userControlAction?: {
3736
+ adappDELogicId?: string | undefined;
3737
+ actionDesc?: string | undefined;
3738
+ appDEMethodId?: string | undefined;
3739
+ appDataEntityId?: string | undefined;
3740
+ timeout?: number | undefined;
3741
+ appId: string;
3742
+ id?: string | undefined;
3743
+ name?: string | undefined;
3744
+ codeName?: string | undefined;
3745
+ userParam?: Record<string, string> | undefined;
3746
+ modelId?: string | undefined;
3747
+ modelType?: string | undefined;
3748
+ } | undefined;
3749
+ width?: number | undefined;
3750
+ appId: string;
3751
+ id?: string | undefined;
3752
+ name?: string | undefined;
3753
+ userParam?: Record<string, string> | undefined;
3754
+ modelId?: string | undefined;
3755
+ modelType?: string | undefined;
3756
+ }[] | undefined;
3757
+ layout?: {
3758
+ layout?: string | undefined;
3759
+ appId: string;
3760
+ id?: string | undefined;
3761
+ name?: string | undefined;
3762
+ codeName?: string | undefined;
3763
+ userParam?: Record<string, string> | undefined;
3764
+ modelId?: string | undefined;
3765
+ modelType?: string | undefined;
3766
+ } | undefined;
3767
+ } | undefined;
3768
+ priority?: number | undefined;
3769
+ subCapLanguageRes?: {
3770
+ defaultContent?: string | undefined;
3771
+ lanResTag?: string | undefined;
3772
+ lanResType?: string | undefined;
3773
+ refFlag?: boolean | undefined;
3774
+ appId: string;
3775
+ id?: string | undefined;
3776
+ name?: string | undefined;
3777
+ codeName?: string | undefined;
3778
+ userParam?: Record<string, string> | undefined;
3779
+ modelId?: string | undefined;
3780
+ modelType?: string | undefined;
3781
+ } | undefined;
3782
+ subCaption?: string | undefined;
3783
+ title?: string | undefined;
3784
+ titleLanguageRes?: {
3785
+ defaultContent?: string | undefined;
3786
+ lanResTag?: string | undefined;
3787
+ lanResType?: string | undefined;
3788
+ refFlag?: boolean | undefined;
3789
+ appId: string;
3790
+ id?: string | undefined;
3791
+ name?: string | undefined;
3792
+ codeName?: string | undefined;
3793
+ userParam?: Record<string, string> | undefined;
3794
+ modelId?: string | undefined;
3795
+ modelType?: string | undefined;
3796
+ } | undefined;
3797
+ viewStyle?: string | undefined;
3798
+ viewType?: string | undefined;
3799
+ width?: number | undefined;
3800
+ enableDP?: boolean | undefined;
3801
+ enableWF?: boolean | undefined;
3802
+ pickupMode?: boolean | undefined;
3803
+ redirectView?: boolean | undefined;
3804
+ showCaptionBar?: boolean | undefined;
3805
+ appCounterRefs?: {
3806
+ appCounter?: {
3807
+ getAppDEActionId?: string | undefined;
3808
+ getAppDEDataSetId?: string | undefined;
3809
+ appDataEntityId?: string | undefined;
3810
+ codeName?: string | undefined;
3811
+ counterData?: string | undefined;
3812
+ counterData2?: string | undefined;
3813
+ counterType?: string | undefined;
3814
+ customCond?: string | undefined;
3815
+ counterId?: string | undefined;
3816
+ sysPFPluginId?: string | undefined;
3817
+ timer?: number | undefined;
3818
+ appId: string;
3819
+ id?: string | undefined;
3820
+ name?: string | undefined;
3821
+ userParam?: Record<string, string> | undefined;
3822
+ modelId?: string | undefined;
3823
+ modelType?: string | undefined;
3824
+ } | undefined;
3825
+ refMode?: {
3826
+ [x: string]: any;
3827
+ [x: symbol]: any;
3828
+ constructor: Function;
3829
+ toString: () => string;
3830
+ toLocaleString: () => string;
3831
+ valueOf: () => Object;
3832
+ hasOwnProperty: (v: PropertyKey) => boolean;
3833
+ isPrototypeOf: (v: Object) => boolean;
3834
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
3835
+ } | undefined;
3836
+ tag?: string | undefined;
3837
+ appId: string;
3838
+ id?: string | undefined;
3839
+ name?: string | undefined;
3840
+ codeName?: string | undefined;
3841
+ userParam?: Record<string, string> | undefined;
3842
+ modelId?: string | undefined;
3843
+ modelType?: string | undefined;
3844
+ }[] | undefined;
3845
+ appId: string;
3846
+ id?: string | undefined;
3847
+ name?: string | undefined;
3848
+ userParam?: Record<string, string> | undefined;
3849
+ modelId?: string | undefined;
3850
+ modelType?: string | undefined;
3851
+ } | undefined;
3852
+ context?: {
3853
+ [x: string]: any;
3854
+ [x: symbol]: any;
3855
+ srfsessionid: string;
3856
+ srfappid: string;
3857
+ } | undefined;
3858
+ params?: IParams | undefined;
3859
+ srfnav?: string | undefined;
3860
+ }>;
3861
+ isLoaded: import("vue").Ref<boolean>;
3862
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
3863
+ modal: {
3864
+ type: PropType<IModal>;
3865
+ required: true;
3866
+ };
3867
+ }>>, {}, {}>;