cloud-web-corejs 1.0.73 → 1.0.75
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/package.json +2 -2
- package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/data-table-editor.vue +3 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/table-column-dialog.vue +582 -299
- package/src/components/xform/form-designer/widget-panel/widgetsConfig.js +4 -3
- package/src/components/xform/form-render/container-item/data-table-item.vue +1 -1
- package/src/components/xform/form-render/container-item/data-table-mixin.js +18 -18
- package/src/views/user/position/list.vue +2 -2
- package/src/views/user/role/list.vue +2 -2
@@ -258,10 +258,11 @@ export const containers = [
|
|
258
258
|
accessScript: null,
|
259
259
|
scriptEnabled: false,
|
260
260
|
accessParam: null,
|
261
|
-
|
261
|
+
|
262
262
|
formScriptEnabled: true,
|
263
263
|
formScriptCode: null,
|
264
264
|
formScriptParam: null,
|
265
|
+
formScriptSuccess: null,
|
265
266
|
formScriptCallback: null,
|
266
267
|
/*isLoadDataByAccess: false,
|
267
268
|
scriptEnabled: false,
|
@@ -272,14 +273,14 @@ export const containers = [
|
|
272
273
|
isQueryTable: false,
|
273
274
|
entityTableCode: null,
|
274
275
|
entityTableDesc: null,
|
275
|
-
|
276
|
+
|
276
277
|
tableConfig: null,
|
277
278
|
isEditTable: false,
|
278
279
|
isTreeTable: false,
|
279
280
|
wbsEnabled: false,
|
280
281
|
sortScriptCode: null,
|
281
282
|
importTemplateFile: null,
|
282
|
-
|
283
|
+
|
283
284
|
...defaultWfConfig,
|
284
285
|
showRuleFlag: 1,
|
285
286
|
showRuleEnabled: 1,
|
@@ -149,7 +149,7 @@
|
|
149
149
|
</vxe-button>
|
150
150
|
</template>
|
151
151
|
|
152
|
-
<template v-for="(subWidget, swIdx) in widget.widgetList" v-slot:[subWidget.options.name]
|
152
|
+
<template v-for="(subWidget, swIdx) in widget.widgetList" v-slot:[subWidget.options.name]>
|
153
153
|
<component
|
154
154
|
v-if="'container' !== subWidget.category"
|
155
155
|
:key="swIdx"
|