star-horse-lowcode 3.1.12 → 3.1.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.
- package/README.md +6 -0
- package/dist/assets/index.css +1 -1
- package/dist/components/comp/StarHorseDialog.vue.d.ts +31 -9
- package/dist/components/comp/StarHorseFormList.vue.d.ts +9 -0
- package/dist/components/comp/StarHorseFormTable.vue.d.ts +9 -0
- package/dist/components/comp/StarHorseStaticTable.vue.d.ts +1 -1
- package/dist/components/comp/items/tableItem.vue.d.ts +22 -0
- package/dist/components/formcomp/utils/EditDataDialog.vue.d.ts +1 -1
- package/dist/components/formcomp/utils/FormulaEngine.d.ts +8 -85
- package/dist/components/system/PageConfig.vue.d.ts +1 -1
- package/dist/components/system/code-editor/types.d.ts +40 -0
- package/dist/components/system/code-editor/useEditorGroups.d.ts +50 -0
- package/dist/components/types/ItemPreps.d.ts +4 -0
- package/dist/index.es.js +6 -6
- package/dist/lang/en_US.d.ts +17 -0
- package/dist/lang/zh_CN.d.ts +17 -0
- package/dist/store/ButtonPermission.d.ts +2 -20
- package/dist/store/ConsumerView.d.ts +2 -16
- package/dist/store/CopyerOperation.d.ts +2 -22
- package/dist/store/DesignForm.d.ts +3 -1155
- package/dist/store/DesignPage.d.ts +2 -100
- package/dist/store/DynamicForm.d.ts +2 -36
- package/dist/store/FormDataCache.d.ts +2 -3258
- package/dist/store/GlobalConfig.d.ts +2 -10
- package/dist/store/SelfOperation.d.ts +2 -472
- package/dist/store/StoreManager.d.ts +24 -24
- package/dist/store/UserInfo.d.ts +2 -30
- package/dist/types/components/comp/StarHorseDialog.vue.d.ts +31 -9
- package/dist/types/components/comp/StarHorseFormList.vue.d.ts +9 -0
- package/dist/types/components/comp/StarHorseFormTable.vue.d.ts +9 -0
- package/dist/types/components/comp/StarHorseStaticTable.vue.d.ts +1 -1
- package/dist/types/components/comp/items/tabPanelItem.vue.d.ts +10 -1
- package/dist/types/components/formcomp/utils/EditDataDialog.vue.d.ts +1 -1
- package/dist/types/components/formcomp/utils/FormulaEngine.d.ts +8 -85
- package/dist/types/components/system/PageConfig.vue.d.ts +1 -1
- package/dist/types/components/system/StarHorseCodeEditor.vue.d.ts +47 -1
- package/dist/types/components/system/code-editor/EditorPane.vue.d.ts +21 -0
- package/dist/types/components/system/code-editor/SplitView.vue.d.ts +35 -0
- package/dist/types/components/system/code-editor/types.d.ts +40 -0
- package/dist/types/components/system/code-editor/useEditorGroups.d.ts +50 -0
- package/dist/types/components/types/ItemPreps.d.ts +4 -0
- package/dist/types/index.d.ts +0 -1
- package/dist/types/lang/en_US.d.ts +17 -0
- package/dist/types/lang/zh_CN.d.ts +17 -0
- package/dist/types/store/ButtonPermission.d.ts +2 -20
- package/dist/types/store/ConsumerView.d.ts +2 -16
- package/dist/types/store/CopyerOperation.d.ts +2 -22
- package/dist/types/store/DesignForm.d.ts +3 -1155
- package/dist/types/store/DesignPage.d.ts +2 -100
- package/dist/types/store/DynamicForm.d.ts +2 -36
- package/dist/types/store/FormDataCache.d.ts +2 -3258
- package/dist/types/store/GlobalConfig.d.ts +2 -10
- package/dist/types/store/SelfOperation.d.ts +2 -472
- package/dist/types/store/StoreManager.d.ts +24 -24
- package/dist/types/store/UserInfo.d.ts +2 -30
- package/package.json +16 -15
- package/dist/api/pcas-code.json.d.ts +0 -185519
|
@@ -1,13 +1,5 @@
|
|
|
1
|
-
export declare const useGlobalConfigStore: import("pinia").
|
|
1
|
+
export declare const useGlobalConfigStore: import("pinia").SetupStoreDefinition<"globalConfig", {
|
|
2
2
|
configFormInfo: import("vue").Ref<any, any>;
|
|
3
3
|
setConfigFormInfo: (data: any) => void;
|
|
4
4
|
clearAll: (isDark?: string) => void;
|
|
5
|
-
}
|
|
6
|
-
configFormInfo: import("vue").Ref<any, any>;
|
|
7
|
-
setConfigFormInfo: (data: any) => void;
|
|
8
|
-
clearAll: (isDark?: string) => void;
|
|
9
|
-
}, never>, Pick<{
|
|
10
|
-
configFormInfo: import("vue").Ref<any, any>;
|
|
11
|
-
setConfigFormInfo: (data: any) => void;
|
|
12
|
-
clearAll: (isDark?: string) => void;
|
|
13
|
-
}, "clearAll" | "setConfigFormInfo">>;
|
|
5
|
+
}>;
|
|
@@ -3,7 +3,7 @@ import { PageFieldInfo } from "../components/types/PageFieldInfo";
|
|
|
3
3
|
/**
|
|
4
4
|
* 用户自定义方法处理逻辑
|
|
5
5
|
*/
|
|
6
|
-
export declare const useSelfOperationStore: import("pinia").
|
|
6
|
+
export declare const useSelfOperationStore: import("pinia").SetupStoreDefinition<"selfOperation", {
|
|
7
7
|
formFieldList: Ref<{
|
|
8
8
|
fieldList?: Array<import("../components/types/PageFieldInfo").FieldInfo> | any;
|
|
9
9
|
batchFieldList?: {
|
|
@@ -238,474 +238,4 @@ export declare const useSelfOperationStore: import("pinia").StoreDefinition<"sel
|
|
|
238
238
|
getFormItem: (fieldName: string) => any;
|
|
239
239
|
init: (fieldList: PageFieldInfo, data: any, formRef: Ref) => void;
|
|
240
240
|
clearAll: () => void;
|
|
241
|
-
}
|
|
242
|
-
formFieldList: Ref<{
|
|
243
|
-
fieldList?: Array<import("../components/types/PageFieldInfo").FieldInfo> | any;
|
|
244
|
-
batchFieldList?: {
|
|
245
|
-
batchName: string;
|
|
246
|
-
disabled?: string;
|
|
247
|
-
disVisible?: boolean;
|
|
248
|
-
title?: string;
|
|
249
|
-
helpMsg?: string;
|
|
250
|
-
initRows?: number;
|
|
251
|
-
primaryKey?: string;
|
|
252
|
-
batchDefaultData?: any;
|
|
253
|
-
fieldList: Array<import("../components/types/PageFieldInfo").FieldInfo> | any;
|
|
254
|
-
compUrl?: {
|
|
255
|
-
pageListUrl: string;
|
|
256
|
-
mergeUrl: string;
|
|
257
|
-
mergeDraftUrl: string;
|
|
258
|
-
batchMergeUrl: string;
|
|
259
|
-
batchMergeDraftUrl: string;
|
|
260
|
-
loadByIdUrl: string;
|
|
261
|
-
loadByIdForViewUrl: string;
|
|
262
|
-
deleteUrl: string;
|
|
263
|
-
deleteByConditionUrl?: string;
|
|
264
|
-
exportAllUrl?: string;
|
|
265
|
-
downloadTemplateUrl?: string;
|
|
266
|
-
listConditionUrl?: string;
|
|
267
|
-
oneConditionUrl?: string;
|
|
268
|
-
uploadUrl?: string;
|
|
269
|
-
importUrl?: string;
|
|
270
|
-
executeUrl?: string;
|
|
271
|
-
modifyColumnsUrl?: string;
|
|
272
|
-
customerUrl1?: string;
|
|
273
|
-
customerUrl2?: string;
|
|
274
|
-
customerUrl3?: string;
|
|
275
|
-
customerUrl4?: string;
|
|
276
|
-
customerUrl5?: string;
|
|
277
|
-
basePrefix?: string;
|
|
278
|
-
permissionsUrl?: string;
|
|
279
|
-
redirectExecutionUrl?: string;
|
|
280
|
-
redirectPageListUrl?: string;
|
|
281
|
-
exportSingleDataUrl?: string;
|
|
282
|
-
appName?: string;
|
|
283
|
-
subPrefix?: string;
|
|
284
|
-
condition?: {
|
|
285
|
-
propertyName?: string;
|
|
286
|
-
operation?: string | null;
|
|
287
|
-
value?: any;
|
|
288
|
-
orOperList?: /*elided*/ any[];
|
|
289
|
-
}[];
|
|
290
|
-
redirect?: boolean;
|
|
291
|
-
httpMethod?: string;
|
|
292
|
-
dataType?: string;
|
|
293
|
-
pageAction?: Function;
|
|
294
|
-
mergeAction?: Function;
|
|
295
|
-
mergeDraftAction?: Function;
|
|
296
|
-
batchMergeAction?: Function;
|
|
297
|
-
batchMergeDraftAction?: Function;
|
|
298
|
-
loadByIdAction?: Function;
|
|
299
|
-
deleteAction?: Function;
|
|
300
|
-
deleteByConditionAction?: Function;
|
|
301
|
-
exportDataAction?: Function;
|
|
302
|
-
downloadTemplateAction?: Function;
|
|
303
|
-
queryConditionAction?: Function;
|
|
304
|
-
queryOneByConditionAction?: Function;
|
|
305
|
-
uploadAction?: Function;
|
|
306
|
-
importAction?: Function;
|
|
307
|
-
executeAction?: Function;
|
|
308
|
-
modifyColumnsAction?: Function;
|
|
309
|
-
exportSingleDataAction?: Function;
|
|
310
|
-
};
|
|
311
|
-
importInfo?: {
|
|
312
|
-
downloadTemplateUrl?: string;
|
|
313
|
-
importDataUrl?: string;
|
|
314
|
-
conditions?: {
|
|
315
|
-
propertyName?: string;
|
|
316
|
-
operation?: string | null;
|
|
317
|
-
value?: any;
|
|
318
|
-
orOperList?: /*elided*/ any[];
|
|
319
|
-
}[];
|
|
320
|
-
};
|
|
321
|
-
staticData?: string;
|
|
322
|
-
subFormFlag?: string | boolean;
|
|
323
|
-
formFlag?: string;
|
|
324
|
-
}[];
|
|
325
|
-
userTableFuncs?: {
|
|
326
|
-
authority?: string;
|
|
327
|
-
funcName?: string | Function;
|
|
328
|
-
btnName?: string;
|
|
329
|
-
icon?: string;
|
|
330
|
-
priority?: number;
|
|
331
|
-
helpMsg?: string;
|
|
332
|
-
disabled?: string;
|
|
333
|
-
position?: "table" | "toolbar";
|
|
334
|
-
override?: boolean;
|
|
335
|
-
children?: /*elided*/ any[];
|
|
336
|
-
}[];
|
|
337
|
-
stopAutoLoad?: boolean;
|
|
338
|
-
cellEditable?: boolean;
|
|
339
|
-
orderBy?: {
|
|
340
|
-
fieldName: string;
|
|
341
|
-
orderBy: string;
|
|
342
|
-
}[];
|
|
343
|
-
conditions?: {
|
|
344
|
-
propertyName?: string;
|
|
345
|
-
operation?: string | null;
|
|
346
|
-
value?: any;
|
|
347
|
-
orOperList?: /*elided*/ any[];
|
|
348
|
-
}[];
|
|
349
|
-
batchName?: string;
|
|
350
|
-
sameTable?: boolean;
|
|
351
|
-
primaryKey?: string | Array<any>;
|
|
352
|
-
priority?: number;
|
|
353
|
-
}, PageFieldInfo | {
|
|
354
|
-
fieldList?: Array<import("../components/types/PageFieldInfo").FieldInfo> | any;
|
|
355
|
-
batchFieldList?: {
|
|
356
|
-
batchName: string;
|
|
357
|
-
disabled?: string;
|
|
358
|
-
disVisible?: boolean;
|
|
359
|
-
title?: string;
|
|
360
|
-
helpMsg?: string;
|
|
361
|
-
initRows?: number;
|
|
362
|
-
primaryKey?: string;
|
|
363
|
-
batchDefaultData?: any;
|
|
364
|
-
fieldList: Array<import("../components/types/PageFieldInfo").FieldInfo> | any;
|
|
365
|
-
compUrl?: {
|
|
366
|
-
pageListUrl: string;
|
|
367
|
-
mergeUrl: string;
|
|
368
|
-
mergeDraftUrl: string;
|
|
369
|
-
batchMergeUrl: string;
|
|
370
|
-
batchMergeDraftUrl: string;
|
|
371
|
-
loadByIdUrl: string;
|
|
372
|
-
loadByIdForViewUrl: string;
|
|
373
|
-
deleteUrl: string;
|
|
374
|
-
deleteByConditionUrl?: string;
|
|
375
|
-
exportAllUrl?: string;
|
|
376
|
-
downloadTemplateUrl?: string;
|
|
377
|
-
listConditionUrl?: string;
|
|
378
|
-
oneConditionUrl?: string;
|
|
379
|
-
uploadUrl?: string;
|
|
380
|
-
importUrl?: string;
|
|
381
|
-
executeUrl?: string;
|
|
382
|
-
modifyColumnsUrl?: string;
|
|
383
|
-
customerUrl1?: string;
|
|
384
|
-
customerUrl2?: string;
|
|
385
|
-
customerUrl3?: string;
|
|
386
|
-
customerUrl4?: string;
|
|
387
|
-
customerUrl5?: string;
|
|
388
|
-
basePrefix?: string;
|
|
389
|
-
permissionsUrl?: string;
|
|
390
|
-
redirectExecutionUrl?: string;
|
|
391
|
-
redirectPageListUrl?: string;
|
|
392
|
-
exportSingleDataUrl?: string;
|
|
393
|
-
appName?: string;
|
|
394
|
-
subPrefix?: string;
|
|
395
|
-
condition?: {
|
|
396
|
-
propertyName?: string;
|
|
397
|
-
operation?: string | null;
|
|
398
|
-
value?: any;
|
|
399
|
-
orOperList?: /*elided*/ any[];
|
|
400
|
-
}[];
|
|
401
|
-
redirect?: boolean;
|
|
402
|
-
httpMethod?: string;
|
|
403
|
-
dataType?: string;
|
|
404
|
-
pageAction?: Function;
|
|
405
|
-
mergeAction?: Function;
|
|
406
|
-
mergeDraftAction?: Function;
|
|
407
|
-
batchMergeAction?: Function;
|
|
408
|
-
batchMergeDraftAction?: Function;
|
|
409
|
-
loadByIdAction?: Function;
|
|
410
|
-
deleteAction?: Function;
|
|
411
|
-
deleteByConditionAction?: Function;
|
|
412
|
-
exportDataAction?: Function;
|
|
413
|
-
downloadTemplateAction?: Function;
|
|
414
|
-
queryConditionAction?: Function;
|
|
415
|
-
queryOneByConditionAction?: Function;
|
|
416
|
-
uploadAction?: Function;
|
|
417
|
-
importAction?: Function;
|
|
418
|
-
executeAction?: Function;
|
|
419
|
-
modifyColumnsAction?: Function;
|
|
420
|
-
exportSingleDataAction?: Function;
|
|
421
|
-
};
|
|
422
|
-
importInfo?: {
|
|
423
|
-
downloadTemplateUrl?: string;
|
|
424
|
-
importDataUrl?: string;
|
|
425
|
-
conditions?: {
|
|
426
|
-
propertyName?: string;
|
|
427
|
-
operation?: string | null;
|
|
428
|
-
value?: any;
|
|
429
|
-
orOperList?: /*elided*/ any[];
|
|
430
|
-
}[];
|
|
431
|
-
};
|
|
432
|
-
staticData?: string;
|
|
433
|
-
subFormFlag?: string | boolean;
|
|
434
|
-
formFlag?: string;
|
|
435
|
-
}[];
|
|
436
|
-
userTableFuncs?: {
|
|
437
|
-
authority?: string;
|
|
438
|
-
funcName?: string | Function;
|
|
439
|
-
btnName?: string;
|
|
440
|
-
icon?: string;
|
|
441
|
-
priority?: number;
|
|
442
|
-
helpMsg?: string;
|
|
443
|
-
disabled?: string;
|
|
444
|
-
position?: "table" | "toolbar";
|
|
445
|
-
override?: boolean;
|
|
446
|
-
children?: /*elided*/ any[];
|
|
447
|
-
}[];
|
|
448
|
-
stopAutoLoad?: boolean;
|
|
449
|
-
cellEditable?: boolean;
|
|
450
|
-
orderBy?: {
|
|
451
|
-
fieldName: string;
|
|
452
|
-
orderBy: string;
|
|
453
|
-
}[];
|
|
454
|
-
conditions?: {
|
|
455
|
-
propertyName?: string;
|
|
456
|
-
operation?: string | null;
|
|
457
|
-
value?: any;
|
|
458
|
-
orOperList?: /*elided*/ any[];
|
|
459
|
-
}[];
|
|
460
|
-
batchName?: string;
|
|
461
|
-
sameTable?: boolean;
|
|
462
|
-
primaryKey?: string | Array<any>;
|
|
463
|
-
priority?: number;
|
|
464
|
-
}>;
|
|
465
|
-
fieldItemList: Ref<any, any>;
|
|
466
|
-
formInstance: Ref<any, any>;
|
|
467
|
-
formData: Ref<any, any>;
|
|
468
|
-
setFormInstance: (formRef: Ref) => void;
|
|
469
|
-
setFormFields: (fieldList: PageFieldInfo) => void;
|
|
470
|
-
setFormData: (data: any) => void;
|
|
471
|
-
addFormItem: (formItem: any) => void;
|
|
472
|
-
addFormItemList: (formItems: Array<any>) => void;
|
|
473
|
-
getFormItem: (fieldName: string) => any;
|
|
474
|
-
init: (fieldList: PageFieldInfo, data: any, formRef: Ref) => void;
|
|
475
|
-
clearAll: () => void;
|
|
476
|
-
}, never>, Pick<{
|
|
477
|
-
formFieldList: Ref<{
|
|
478
|
-
fieldList?: Array<import("../components/types/PageFieldInfo").FieldInfo> | any;
|
|
479
|
-
batchFieldList?: {
|
|
480
|
-
batchName: string;
|
|
481
|
-
disabled?: string;
|
|
482
|
-
disVisible?: boolean;
|
|
483
|
-
title?: string;
|
|
484
|
-
helpMsg?: string;
|
|
485
|
-
initRows?: number;
|
|
486
|
-
primaryKey?: string;
|
|
487
|
-
batchDefaultData?: any;
|
|
488
|
-
fieldList: Array<import("../components/types/PageFieldInfo").FieldInfo> | any;
|
|
489
|
-
compUrl?: {
|
|
490
|
-
pageListUrl: string;
|
|
491
|
-
mergeUrl: string;
|
|
492
|
-
mergeDraftUrl: string;
|
|
493
|
-
batchMergeUrl: string;
|
|
494
|
-
batchMergeDraftUrl: string;
|
|
495
|
-
loadByIdUrl: string;
|
|
496
|
-
loadByIdForViewUrl: string;
|
|
497
|
-
deleteUrl: string;
|
|
498
|
-
deleteByConditionUrl?: string;
|
|
499
|
-
exportAllUrl?: string;
|
|
500
|
-
downloadTemplateUrl?: string;
|
|
501
|
-
listConditionUrl?: string;
|
|
502
|
-
oneConditionUrl?: string;
|
|
503
|
-
uploadUrl?: string;
|
|
504
|
-
importUrl?: string;
|
|
505
|
-
executeUrl?: string;
|
|
506
|
-
modifyColumnsUrl?: string;
|
|
507
|
-
customerUrl1?: string;
|
|
508
|
-
customerUrl2?: string;
|
|
509
|
-
customerUrl3?: string;
|
|
510
|
-
customerUrl4?: string;
|
|
511
|
-
customerUrl5?: string;
|
|
512
|
-
basePrefix?: string;
|
|
513
|
-
permissionsUrl?: string;
|
|
514
|
-
redirectExecutionUrl?: string;
|
|
515
|
-
redirectPageListUrl?: string;
|
|
516
|
-
exportSingleDataUrl?: string;
|
|
517
|
-
appName?: string;
|
|
518
|
-
subPrefix?: string;
|
|
519
|
-
condition?: {
|
|
520
|
-
propertyName?: string;
|
|
521
|
-
operation?: string | null;
|
|
522
|
-
value?: any;
|
|
523
|
-
orOperList?: /*elided*/ any[];
|
|
524
|
-
}[];
|
|
525
|
-
redirect?: boolean;
|
|
526
|
-
httpMethod?: string;
|
|
527
|
-
dataType?: string;
|
|
528
|
-
pageAction?: Function;
|
|
529
|
-
mergeAction?: Function;
|
|
530
|
-
mergeDraftAction?: Function;
|
|
531
|
-
batchMergeAction?: Function;
|
|
532
|
-
batchMergeDraftAction?: Function;
|
|
533
|
-
loadByIdAction?: Function;
|
|
534
|
-
deleteAction?: Function;
|
|
535
|
-
deleteByConditionAction?: Function;
|
|
536
|
-
exportDataAction?: Function;
|
|
537
|
-
downloadTemplateAction?: Function;
|
|
538
|
-
queryConditionAction?: Function;
|
|
539
|
-
queryOneByConditionAction?: Function;
|
|
540
|
-
uploadAction?: Function;
|
|
541
|
-
importAction?: Function;
|
|
542
|
-
executeAction?: Function;
|
|
543
|
-
modifyColumnsAction?: Function;
|
|
544
|
-
exportSingleDataAction?: Function;
|
|
545
|
-
};
|
|
546
|
-
importInfo?: {
|
|
547
|
-
downloadTemplateUrl?: string;
|
|
548
|
-
importDataUrl?: string;
|
|
549
|
-
conditions?: {
|
|
550
|
-
propertyName?: string;
|
|
551
|
-
operation?: string | null;
|
|
552
|
-
value?: any;
|
|
553
|
-
orOperList?: /*elided*/ any[];
|
|
554
|
-
}[];
|
|
555
|
-
};
|
|
556
|
-
staticData?: string;
|
|
557
|
-
subFormFlag?: string | boolean;
|
|
558
|
-
formFlag?: string;
|
|
559
|
-
}[];
|
|
560
|
-
userTableFuncs?: {
|
|
561
|
-
authority?: string;
|
|
562
|
-
funcName?: string | Function;
|
|
563
|
-
btnName?: string;
|
|
564
|
-
icon?: string;
|
|
565
|
-
priority?: number;
|
|
566
|
-
helpMsg?: string;
|
|
567
|
-
disabled?: string;
|
|
568
|
-
position?: "table" | "toolbar";
|
|
569
|
-
override?: boolean;
|
|
570
|
-
children?: /*elided*/ any[];
|
|
571
|
-
}[];
|
|
572
|
-
stopAutoLoad?: boolean;
|
|
573
|
-
cellEditable?: boolean;
|
|
574
|
-
orderBy?: {
|
|
575
|
-
fieldName: string;
|
|
576
|
-
orderBy: string;
|
|
577
|
-
}[];
|
|
578
|
-
conditions?: {
|
|
579
|
-
propertyName?: string;
|
|
580
|
-
operation?: string | null;
|
|
581
|
-
value?: any;
|
|
582
|
-
orOperList?: /*elided*/ any[];
|
|
583
|
-
}[];
|
|
584
|
-
batchName?: string;
|
|
585
|
-
sameTable?: boolean;
|
|
586
|
-
primaryKey?: string | Array<any>;
|
|
587
|
-
priority?: number;
|
|
588
|
-
}, PageFieldInfo | {
|
|
589
|
-
fieldList?: Array<import("../components/types/PageFieldInfo").FieldInfo> | any;
|
|
590
|
-
batchFieldList?: {
|
|
591
|
-
batchName: string;
|
|
592
|
-
disabled?: string;
|
|
593
|
-
disVisible?: boolean;
|
|
594
|
-
title?: string;
|
|
595
|
-
helpMsg?: string;
|
|
596
|
-
initRows?: number;
|
|
597
|
-
primaryKey?: string;
|
|
598
|
-
batchDefaultData?: any;
|
|
599
|
-
fieldList: Array<import("../components/types/PageFieldInfo").FieldInfo> | any;
|
|
600
|
-
compUrl?: {
|
|
601
|
-
pageListUrl: string;
|
|
602
|
-
mergeUrl: string;
|
|
603
|
-
mergeDraftUrl: string;
|
|
604
|
-
batchMergeUrl: string;
|
|
605
|
-
batchMergeDraftUrl: string;
|
|
606
|
-
loadByIdUrl: string;
|
|
607
|
-
loadByIdForViewUrl: string;
|
|
608
|
-
deleteUrl: string;
|
|
609
|
-
deleteByConditionUrl?: string;
|
|
610
|
-
exportAllUrl?: string;
|
|
611
|
-
downloadTemplateUrl?: string;
|
|
612
|
-
listConditionUrl?: string;
|
|
613
|
-
oneConditionUrl?: string;
|
|
614
|
-
uploadUrl?: string;
|
|
615
|
-
importUrl?: string;
|
|
616
|
-
executeUrl?: string;
|
|
617
|
-
modifyColumnsUrl?: string;
|
|
618
|
-
customerUrl1?: string;
|
|
619
|
-
customerUrl2?: string;
|
|
620
|
-
customerUrl3?: string;
|
|
621
|
-
customerUrl4?: string;
|
|
622
|
-
customerUrl5?: string;
|
|
623
|
-
basePrefix?: string;
|
|
624
|
-
permissionsUrl?: string;
|
|
625
|
-
redirectExecutionUrl?: string;
|
|
626
|
-
redirectPageListUrl?: string;
|
|
627
|
-
exportSingleDataUrl?: string;
|
|
628
|
-
appName?: string;
|
|
629
|
-
subPrefix?: string;
|
|
630
|
-
condition?: {
|
|
631
|
-
propertyName?: string;
|
|
632
|
-
operation?: string | null;
|
|
633
|
-
value?: any;
|
|
634
|
-
orOperList?: /*elided*/ any[];
|
|
635
|
-
}[];
|
|
636
|
-
redirect?: boolean;
|
|
637
|
-
httpMethod?: string;
|
|
638
|
-
dataType?: string;
|
|
639
|
-
pageAction?: Function;
|
|
640
|
-
mergeAction?: Function;
|
|
641
|
-
mergeDraftAction?: Function;
|
|
642
|
-
batchMergeAction?: Function;
|
|
643
|
-
batchMergeDraftAction?: Function;
|
|
644
|
-
loadByIdAction?: Function;
|
|
645
|
-
deleteAction?: Function;
|
|
646
|
-
deleteByConditionAction?: Function;
|
|
647
|
-
exportDataAction?: Function;
|
|
648
|
-
downloadTemplateAction?: Function;
|
|
649
|
-
queryConditionAction?: Function;
|
|
650
|
-
queryOneByConditionAction?: Function;
|
|
651
|
-
uploadAction?: Function;
|
|
652
|
-
importAction?: Function;
|
|
653
|
-
executeAction?: Function;
|
|
654
|
-
modifyColumnsAction?: Function;
|
|
655
|
-
exportSingleDataAction?: Function;
|
|
656
|
-
};
|
|
657
|
-
importInfo?: {
|
|
658
|
-
downloadTemplateUrl?: string;
|
|
659
|
-
importDataUrl?: string;
|
|
660
|
-
conditions?: {
|
|
661
|
-
propertyName?: string;
|
|
662
|
-
operation?: string | null;
|
|
663
|
-
value?: any;
|
|
664
|
-
orOperList?: /*elided*/ any[];
|
|
665
|
-
}[];
|
|
666
|
-
};
|
|
667
|
-
staticData?: string;
|
|
668
|
-
subFormFlag?: string | boolean;
|
|
669
|
-
formFlag?: string;
|
|
670
|
-
}[];
|
|
671
|
-
userTableFuncs?: {
|
|
672
|
-
authority?: string;
|
|
673
|
-
funcName?: string | Function;
|
|
674
|
-
btnName?: string;
|
|
675
|
-
icon?: string;
|
|
676
|
-
priority?: number;
|
|
677
|
-
helpMsg?: string;
|
|
678
|
-
disabled?: string;
|
|
679
|
-
position?: "table" | "toolbar";
|
|
680
|
-
override?: boolean;
|
|
681
|
-
children?: /*elided*/ any[];
|
|
682
|
-
}[];
|
|
683
|
-
stopAutoLoad?: boolean;
|
|
684
|
-
cellEditable?: boolean;
|
|
685
|
-
orderBy?: {
|
|
686
|
-
fieldName: string;
|
|
687
|
-
orderBy: string;
|
|
688
|
-
}[];
|
|
689
|
-
conditions?: {
|
|
690
|
-
propertyName?: string;
|
|
691
|
-
operation?: string | null;
|
|
692
|
-
value?: any;
|
|
693
|
-
orOperList?: /*elided*/ any[];
|
|
694
|
-
}[];
|
|
695
|
-
batchName?: string;
|
|
696
|
-
sameTable?: boolean;
|
|
697
|
-
primaryKey?: string | Array<any>;
|
|
698
|
-
priority?: number;
|
|
699
|
-
}>;
|
|
700
|
-
fieldItemList: Ref<any, any>;
|
|
701
|
-
formInstance: Ref<any, any>;
|
|
702
|
-
formData: Ref<any, any>;
|
|
703
|
-
setFormInstance: (formRef: Ref) => void;
|
|
704
|
-
setFormFields: (fieldList: PageFieldInfo) => void;
|
|
705
|
-
setFormData: (data: any) => void;
|
|
706
|
-
addFormItem: (formItem: any) => void;
|
|
707
|
-
addFormItemList: (formItems: Array<any>) => void;
|
|
708
|
-
getFormItem: (fieldName: string) => any;
|
|
709
|
-
init: (fieldList: PageFieldInfo, data: any, formRef: Ref) => void;
|
|
710
|
-
clearAll: () => void;
|
|
711
|
-
}, "setFormInstance" | "setFormFields" | "setFormData" | "addFormItem" | "addFormItemList" | "getFormItem" | "init" | "clearAll">>;
|
|
241
|
+
}>;
|