super-page-runtime 2.3.39 → 2.3.40-cdn1
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/dist/es/components/runtime/utils/api/page-expose-util.js +2 -2
- package/dist/es/components/runtime/utils/events/standard-event.d.ts +8 -1
- package/dist/es/components/runtime/utils/events/standard-event.js +449 -441
- package/dist/es/components/runtime/utils/page-helper-util.d.ts +7 -0
- package/dist/es/components/runtime/utils/page-helper-util.js +4 -0
- package/dist/es/components/runtime/utils/page-store.js +9 -9
- package/dist/es/components/runtime/views/assemblys/common/task-informition-dialog.vue.js +7 -7
- package/dist/es/components/runtime/views/assemblys/container/card/card-runtime.vue.js +3 -3
- package/dist/es/components/runtime/views/assemblys/container/card/card-runtime.vue2.js +22 -15
- package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue2.js +37 -35
- package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime.vue2.js +47 -45
- package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue.js +1 -1
- package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue2.js +87 -87
- package/dist/es/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue.js +1 -1
- package/dist/es/components/runtime/views/super-page.vue.js +1 -1
- package/dist/es/components/runtime/views/super-page.vue2.js +66 -64
- package/dist/es/style.css +102 -102
- package/package.json +2 -2
|
@@ -167,8 +167,8 @@ function V(e2, t2, n2, o2) {
|
|
|
167
167
|
}
|
|
168
168
|
function j(e2, t2) {
|
|
169
169
|
let n2;
|
|
170
|
-
return null != e2 && t2 && (Array.isArray(e2) ? (n2 = "", e2.forEach((
|
|
171
|
-
n2 = n2 + A(
|
|
170
|
+
return null != e2 && t2 && (Array.isArray(e2) ? (n2 = "", e2.forEach((e3) => {
|
|
171
|
+
n2 = n2 + A(e3, t2) + ",";
|
|
172
172
|
}), n2.indexOf(",") > 0 && (n2 = n2.substring(0, n2.lastIndexOf(",")))) : (n2 = e2, n2 = A(e2, t2))), n2;
|
|
173
173
|
}
|
|
174
174
|
function A(e2, t2) {
|
|
@@ -65,7 +65,14 @@ export declare function getSaveFormRequest(pageContext: PageContext, configureOb
|
|
|
65
65
|
* @param isListButton
|
|
66
66
|
*/
|
|
67
67
|
export declare function dealAfterOperate(pageContext: any, configureObj: any, data: any, successTip: any, isListButton?: boolean): void;
|
|
68
|
-
export declare function updateValuesWhenCloseDialog(parentPageContext
|
|
68
|
+
export declare function updateValuesWhenCloseDialog({ parentPageContext, parentEventParams, parentConfigureObj, sourceModel, sourceTableName, valueMappings }: {
|
|
69
|
+
parentPageContext: any;
|
|
70
|
+
parentConfigureObj: any;
|
|
71
|
+
parentEventParams: any;
|
|
72
|
+
sourceModel: any;
|
|
73
|
+
sourceTableName: any;
|
|
74
|
+
valueMappings?: any;
|
|
75
|
+
}): void;
|
|
69
76
|
export declare function refreshFormOrListPage(pageContext: any, configureObj: any, isRefreshWhenClosePopup: any, mySuccessOperation: any): void;
|
|
70
77
|
export declare function doImportFinally(params: any, fileObj: any): void;
|
|
71
78
|
export declare function judgeDataNumber(buttonConfigureObj: any, ids: any): boolean;
|