cloud-web-corejs 1.0.54-dev.305 → 1.0.54-dev.307
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 +1 -1
- package/src/components/excelExport/mixins.js +936 -1
- package/src/components/wf/wfTaskUserRangeDialog.vue +0 -5
- package/src/components/xform/form-designer/form-widget/field-widget/checkbox-widget.vue +2 -2
- package/src/components/xform/form-designer/form-widget/field-widget/fieldMixin.js +1534 -1
- package/src/components/xform/form-designer/form-widget/field-widget/radio-widget.vue +2 -2
- package/src/components/xform/form-designer/form-widget/field-widget/select-widget.vue +4 -4
- package/src/components/xform/form-designer/widget-panel/widgetsConfig.js +7 -0
- package/src/components/xform/utils/util.js +1451 -1
- package/src/views/user/wf/wf_obj_config/itemEdit.vue +3 -3
- package/src/views/user/wf/wf_obj_config/list.vue +3 -3
@@ -68,10 +68,10 @@
|
|
68
68
|
},
|
69
69
|
computed: {
|
70
70
|
labelField(){
|
71
|
-
return this.
|
71
|
+
return this.getOptionItemLabelKey();
|
72
72
|
},
|
73
73
|
valueField(){
|
74
|
-
return this.
|
74
|
+
return this.getOptionItemValueKey();
|
75
75
|
},
|
76
76
|
optionItems(){
|
77
77
|
return this.getOptionItems();
|
@@ -74,11 +74,11 @@ export default {
|
|
74
74
|
}
|
75
75
|
},
|
76
76
|
computed: {
|
77
|
-
labelField()
|
78
|
-
return this.
|
77
|
+
labelField(){
|
78
|
+
return this.getOptionItemLabelKey();
|
79
79
|
},
|
80
|
-
valueField()
|
81
|
-
return this.
|
80
|
+
valueField(){
|
81
|
+
return this.getOptionItemValueKey();
|
82
82
|
},
|
83
83
|
allowDefaultFirstOption() {
|
84
84
|
return (!!this.field.options.filterable && !!this.field.options.allowCreate)
|
@@ -1194,10 +1194,12 @@ export const basicFields = [
|
|
1194
1194
|
{
|
1195
1195
|
label: "radio 1",
|
1196
1196
|
value: "1",
|
1197
|
+
disabled: false
|
1197
1198
|
},
|
1198
1199
|
{
|
1199
1200
|
label: "radio 2",
|
1200
1201
|
value: "2",
|
1202
|
+
disabled: false
|
1201
1203
|
},
|
1202
1204
|
],
|
1203
1205
|
required: !1,
|
@@ -1264,10 +1266,12 @@ export const basicFields = [
|
|
1264
1266
|
{
|
1265
1267
|
label: "check 1",
|
1266
1268
|
value: "1",
|
1269
|
+
disabled: false
|
1267
1270
|
},
|
1268
1271
|
{
|
1269
1272
|
label: "check 2",
|
1270
1273
|
value: "2",
|
1274
|
+
disabled: false
|
1271
1275
|
},
|
1272
1276
|
],
|
1273
1277
|
required: !1,
|
@@ -1341,14 +1345,17 @@ export const basicFields = [
|
|
1341
1345
|
{
|
1342
1346
|
label: "select 1",
|
1343
1347
|
value: "1",
|
1348
|
+
disabled: false
|
1344
1349
|
},
|
1345
1350
|
{
|
1346
1351
|
label: "select 2",
|
1347
1352
|
value: "2",
|
1353
|
+
disabled: false
|
1348
1354
|
},
|
1349
1355
|
{
|
1350
1356
|
label: "select 3",
|
1351
1357
|
value: "3",
|
1358
|
+
disabled: false
|
1352
1359
|
},
|
1353
1360
|
],
|
1354
1361
|
required: !1,
|