cloud-web-corejs 1.0.79 → 1.0.81
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/baseAttachment/index.vue +22 -13
- package/src/components/baseAttachment/mixins.js +1 -1
- package/src/components/fileLibrary/fileObjAuthEditDialog.vue +6 -0
- package/src/components/fileLibrary/mixins/fileObjAuthDialogMixin.js +328 -203
- package/src/components/fileLibrary/mixins/fileObjAuthEditDialogMixin.js +27 -23
- package/src/components/table/CellSlot.vue +1 -0
- package/src/components/table/vxeFilter/mixin.js +1 -1
- package/src/components/vb-tabs/x-tabs.vue +3 -2
- package/src/components/xform/form-designer/designer.js +1 -1
- package/src/components/xform/form-designer/form-widget/dialog/formDialog.vue +15 -3
- package/src/components/xform/form-designer/form-widget/dialog/formDrawer.vue +5 -1
- package/src/components/xform/form-designer/form-widget/dialog/importDialog.vue +2 -1
- package/src/components/xform/form-designer/form-widget/dialog/importDialogMixin.js +1 -1
- package/src/components/xform/form-designer/form-widget/dialog/searchFormDialog.vue +17 -6
- package/src/components/xform/form-designer/form-widget/field-widget/baseAttachment-widget.vue +28 -3
- package/src/components/xform/form-designer/form-widget/field-widget/button-widget.vue +1 -1
- package/src/components/xform/form-designer/form-widget/field-widget/checkbox-widget.vue +5 -2
- package/src/components/xform/form-designer/form-widget/field-widget/fieldMixin.js +1 -1
- package/src/components/xform/form-designer/form-widget/field-widget/form-item-wrapper.vue +138 -6
- package/src/components/xform/form-designer/form-widget/field-widget/import-button-widget.vue +4 -7
- package/src/components/xform/form-designer/form-widget/field-widget/import2-button-widget.vue +80 -0
- package/src/components/xform/form-designer/form-widget/field-widget/radio-widget.vue +5 -2
- package/src/components/xform/form-designer/form-widget/field-widget/select-widget.vue +4 -1
- package/src/components/xform/form-designer/form-widget/field-widget/text-widget.vue +46 -34
- package/src/components/xform/form-designer/form-widget/field-widget/vabUpload-widget.vue +6 -0
- package/src/components/xform/form-designer/indexMixin.js +1 -1
- package/src/components/xform/form-designer/setting-panel/form-setting.vue +8 -0
- package/src/components/xform/form-designer/setting-panel/indexMixin.js +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/autoValueEnabled-editor.vue +38 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/censusClass-editor.vue +6 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/columnRenderDialog.vue +125 -0
- 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 +415 -354
- package/src/components/xform/form-designer/setting-panel/property-editor/container-detail/detail-editor.vue +2 -2
- package/src/components/xform/form-designer/setting-panel/property-editor/container-grid-col/grid-col-offset-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/container-grid-col/grid-col-pull-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/container-grid-col/grid-col-push-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-button/search-dialog-event-editor.vue +7 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-import-button/import-button-editor.vue +16 -8
- package/src/components/xform/form-designer/setting-panel/property-editor/field-import-button/import2-button-editor.vue +80 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/field-rate/rate-defaultValue-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-vabUpload/field-vabUpload-editor.vue +30 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/limit-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/multipleLimit-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/precision-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/textFlag-editor.vue +170 -20
- package/src/components/xform/form-designer/setting-panel/propertyRegister.js +2 -0
- package/src/components/xform/form-designer/toolbar-panel/index.vue +0 -4
- package/src/components/xform/form-designer/toolbar-panel/indexMixin.js +1 -1
- package/src/components/xform/form-designer/widget-panel/indexMixin.js +1 -1
- package/src/components/xform/form-designer/widget-panel/widgetsConfig.js +133 -108
- package/src/components/xform/form-render/container-item/containerItemMixin.js +1 -1
- package/src/components/xform/form-render/container-item/data-table-item.vue +43 -21
- package/src/components/xform/form-render/container-item/data-table-mixin.js +3 -3
- package/src/components/xform/form-render/container-item/grid-col-item.vue +10 -3
- package/src/components/xform/form-render/container-item/grid-item.vue +1 -1
- package/src/components/xform/form-render/container-item/tab-item.vue +11 -6
- package/src/components/xform/form-render/container-item/table-cell-item.vue +38 -32
- package/src/components/xform/form-render/container-item/table-item.vue +4 -2
- package/src/components/xform/form-render/indexMixin.js +1 -1
- package/src/components/xform/lang/zh-CN.js +1 -0
- package/src/components/xform/mixins/defaultHandle.js +1 -1
- package/src/components/xform/mixins/scriptHttp.js +3 -1
- package/src/components/xform/utils/util.js +1 -1
- package/src/store/modules/permission.js +1 -1
- package/src/views/bd/setting/table_model/edit.vue +835 -484
- package/src/views/bd/setting/table_model/mixins/edit.js +3 -3
- package/src/views/user/form/vform/designer.vue +772 -753
- package/src/views/user/form/view/list.vue +27 -9
@@ -4,6 +4,7 @@ export const containers = [
|
|
4
4
|
category: "container",
|
5
5
|
icon: "grid",
|
6
6
|
commonFlag: !0,
|
7
|
+
columnFlag: true,
|
7
8
|
cols: [],
|
8
9
|
options: {
|
9
10
|
name: "",
|
@@ -22,6 +23,7 @@ export const containers = [
|
|
22
23
|
category: "container",
|
23
24
|
icon: "table",
|
24
25
|
commonFlag: !0,
|
26
|
+
columnFlag: true,
|
25
27
|
rows: [],
|
26
28
|
options: {
|
27
29
|
name: "",
|
@@ -37,6 +39,7 @@ export const containers = [
|
|
37
39
|
category: "container",
|
38
40
|
icon: "tab",
|
39
41
|
commonFlag: !0,
|
42
|
+
columnFlag: true,
|
40
43
|
tabs: [],
|
41
44
|
options: {
|
42
45
|
name: "",
|
@@ -285,6 +288,7 @@ export const containers = [
|
|
285
288
|
showRuleFlag: 1,
|
286
289
|
showRuleEnabled: 1,
|
287
290
|
showRules: [],
|
291
|
+
hideGridCheckBox:false
|
288
292
|
}
|
289
293
|
},
|
290
294
|
/*{
|
@@ -775,11 +779,25 @@ export const defaultWfConfig = {
|
|
775
779
|
wfModifyDataConfig: [],
|
776
780
|
}
|
777
781
|
|
782
|
+
export const defaultTextFlagConfig = {
|
783
|
+
textFlag: 1,
|
784
|
+
showTextEnabled: false,
|
785
|
+
showEncryptTextEnabled: false,
|
786
|
+
userTextRuleEnabled: false,
|
787
|
+
userTextRuleConfig: [],
|
788
|
+
textRule1: true,
|
789
|
+
textRule2: false,
|
790
|
+
textRule2Number: null,
|
791
|
+
textRule3: false,
|
792
|
+
textRule3Number: null
|
793
|
+
}
|
794
|
+
|
778
795
|
export const basicFields = [
|
779
796
|
{
|
780
797
|
type: "input",
|
781
798
|
icon: "text-field",
|
782
799
|
formItemFlag: !0,
|
800
|
+
columnFlag: true,
|
783
801
|
tableField: null,
|
784
802
|
options: {
|
785
803
|
name: "",
|
@@ -833,18 +851,15 @@ export const basicFields = [
|
|
833
851
|
showRuleFlag: 1,
|
834
852
|
showRuleEnabled: 1,
|
835
853
|
showRules: [],
|
836
|
-
|
837
|
-
|
838
|
-
textRule2: false,
|
839
|
-
textRule3: false,
|
840
|
-
textRule2Number: null,
|
841
|
-
textRule3Number: null
|
854
|
+
|
855
|
+
...defaultTextFlagConfig
|
842
856
|
}
|
843
857
|
},
|
844
858
|
{
|
845
859
|
type: "input-batch",
|
846
860
|
icon: "input-batch",
|
847
861
|
formItemFlag: !0,
|
862
|
+
columnFlag: true,
|
848
863
|
tableField: null,
|
849
864
|
options: {
|
850
865
|
name: "",
|
@@ -897,12 +912,7 @@ export const basicFields = [
|
|
897
912
|
showRuleFlag: 1,
|
898
913
|
showRuleEnabled: 1,
|
899
914
|
showRules: [],
|
900
|
-
|
901
|
-
textRule1: false,
|
902
|
-
textRule2: false,
|
903
|
-
textRule3: false,
|
904
|
-
textRule2Number: null,
|
905
|
-
textRule3Number: null
|
915
|
+
|
906
916
|
|
907
917
|
}
|
908
918
|
},
|
@@ -910,6 +920,7 @@ export const basicFields = [
|
|
910
920
|
type: "textarea",
|
911
921
|
icon: "textarea-field",
|
912
922
|
formItemFlag: !0,
|
923
|
+
columnFlag: true,
|
913
924
|
tableField: null,
|
914
925
|
options: {
|
915
926
|
name: "",
|
@@ -953,18 +964,15 @@ export const basicFields = [
|
|
953
964
|
showRuleFlag: 1,
|
954
965
|
showRuleEnabled: 1,
|
955
966
|
showRules: [],
|
956
|
-
|
957
|
-
|
958
|
-
textRule2: false,
|
959
|
-
textRule3: false,
|
960
|
-
textRule2Number: null,
|
961
|
-
textRule3Number: null
|
967
|
+
|
968
|
+
...defaultTextFlagConfig
|
962
969
|
}
|
963
970
|
},
|
964
971
|
{
|
965
972
|
type: "number",
|
966
973
|
icon: "number-field",
|
967
974
|
formItemFlag: !0,
|
975
|
+
columnFlag: true,
|
968
976
|
tableField: null,
|
969
977
|
options: {
|
970
978
|
name: "",
|
@@ -987,8 +995,8 @@ export const basicFields = [
|
|
987
995
|
requiredHint: "",
|
988
996
|
validation: "",
|
989
997
|
validationHint: "",
|
990
|
-
|
991
|
-
|
998
|
+
formulaEnabled: !1,
|
999
|
+
formula: "",
|
992
1000
|
customClass: "",
|
993
1001
|
labelIconClass: null,
|
994
1002
|
labelIconPosition: "rear",
|
@@ -1010,12 +1018,8 @@ export const basicFields = [
|
|
1010
1018
|
showRuleFlag: 1,
|
1011
1019
|
showRuleEnabled: 1,
|
1012
1020
|
showRules: [],
|
1013
|
-
|
1014
|
-
|
1015
|
-
textRule2: false,
|
1016
|
-
textRule3: false,
|
1017
|
-
textRule2Number: null,
|
1018
|
-
textRule3Number: null
|
1021
|
+
|
1022
|
+
...defaultTextFlagConfig
|
1019
1023
|
|
1020
1024
|
}
|
1021
1025
|
},
|
@@ -1023,6 +1027,7 @@ export const basicFields = [
|
|
1023
1027
|
type: "radio",
|
1024
1028
|
icon: "radio-field",
|
1025
1029
|
formItemFlag: !0,
|
1030
|
+
columnFlag: true,
|
1026
1031
|
tableField: null,
|
1027
1032
|
options: {
|
1028
1033
|
name: "",
|
@@ -1084,18 +1089,14 @@ export const basicFields = [
|
|
1084
1089
|
showRuleFlag: 1,
|
1085
1090
|
showRuleEnabled: 1,
|
1086
1091
|
showRules: [],
|
1087
|
-
|
1088
|
-
textRule1: false,
|
1089
|
-
textRule2: false,
|
1090
|
-
textRule3: false,
|
1091
|
-
textRule2Number: null,
|
1092
|
-
textRule3Number: null
|
1092
|
+
|
1093
1093
|
}
|
1094
1094
|
},
|
1095
1095
|
{
|
1096
1096
|
type: "checkbox",
|
1097
1097
|
icon: "checkbox-field",
|
1098
1098
|
formItemFlag: !0,
|
1099
|
+
columnFlag: true,
|
1099
1100
|
tableField: null,
|
1100
1101
|
options: {
|
1101
1102
|
name: "",
|
@@ -1157,12 +1158,7 @@ export const basicFields = [
|
|
1157
1158
|
showRuleFlag: 1,
|
1158
1159
|
showRuleEnabled: 1,
|
1159
1160
|
showRules: [],
|
1160
|
-
|
1161
|
-
textRule1: false,
|
1162
|
-
textRule2: false,
|
1163
|
-
textRule3: false,
|
1164
|
-
textRule2Number: null,
|
1165
|
-
textRule3Number: null
|
1161
|
+
|
1166
1162
|
|
1167
1163
|
}
|
1168
1164
|
},
|
@@ -1170,6 +1166,7 @@ export const basicFields = [
|
|
1170
1166
|
type: "select",
|
1171
1167
|
icon: "select-field",
|
1172
1168
|
formItemFlag: !0,
|
1169
|
+
columnFlag: true,
|
1173
1170
|
tableField: null,
|
1174
1171
|
options: {
|
1175
1172
|
name: "",
|
@@ -1241,18 +1238,13 @@ export const basicFields = [
|
|
1241
1238
|
showRuleFlag: 1,
|
1242
1239
|
showRuleEnabled: 1,
|
1243
1240
|
showRules: [],
|
1244
|
-
textFlag: 1,
|
1245
|
-
textRule1: false,
|
1246
|
-
textRule2: false,
|
1247
|
-
textRule3: false,
|
1248
|
-
textRule2Number: null,
|
1249
|
-
textRule3Number: null
|
1250
1241
|
}
|
1251
1242
|
},
|
1252
1243
|
{
|
1253
1244
|
type: "time",
|
1254
1245
|
icon: "time-field",
|
1255
1246
|
formItemFlag: !0,
|
1247
|
+
columnFlag: true,
|
1256
1248
|
tableField: null,
|
1257
1249
|
options: {
|
1258
1250
|
name: "",
|
@@ -1295,12 +1287,8 @@ export const basicFields = [
|
|
1295
1287
|
showRuleFlag: 1,
|
1296
1288
|
showRuleEnabled: 1,
|
1297
1289
|
showRules: [],
|
1298
|
-
|
1299
|
-
|
1300
|
-
textRule2: false,
|
1301
|
-
textRule3: false,
|
1302
|
-
textRule2Number: null,
|
1303
|
-
textRule3Number: null
|
1290
|
+
|
1291
|
+
...defaultTextFlagConfig
|
1304
1292
|
|
1305
1293
|
}
|
1306
1294
|
},
|
@@ -1308,6 +1296,7 @@ export const basicFields = [
|
|
1308
1296
|
type: "time-range",
|
1309
1297
|
icon: "time-range-field",
|
1310
1298
|
formItemFlag: !0,
|
1299
|
+
columnFlag: true,
|
1311
1300
|
tableField: null,
|
1312
1301
|
options: {
|
1313
1302
|
name: "",
|
@@ -1350,12 +1339,7 @@ export const basicFields = [
|
|
1350
1339
|
showRuleFlag: 1,
|
1351
1340
|
showRuleEnabled: 1,
|
1352
1341
|
showRules: [],
|
1353
|
-
|
1354
|
-
textRule1: false,
|
1355
|
-
textRule2: false,
|
1356
|
-
textRule3: false,
|
1357
|
-
textRule2Number: null,
|
1358
|
-
textRule3Number: null
|
1342
|
+
|
1359
1343
|
|
1360
1344
|
}
|
1361
1345
|
},
|
@@ -1363,6 +1347,7 @@ export const basicFields = [
|
|
1363
1347
|
type: "date",
|
1364
1348
|
icon: "date-field",
|
1365
1349
|
formItemFlag: !0,
|
1350
|
+
columnFlag: true,
|
1366
1351
|
tableField: null,
|
1367
1352
|
options: {
|
1368
1353
|
name: "",
|
@@ -1407,12 +1392,8 @@ export const basicFields = [
|
|
1407
1392
|
showRuleFlag: 1,
|
1408
1393
|
showRuleEnabled: 1,
|
1409
1394
|
showRules: [],
|
1410
|
-
|
1411
|
-
|
1412
|
-
textRule2: false,
|
1413
|
-
textRule3: false,
|
1414
|
-
textRule2Number: null,
|
1415
|
-
textRule3Number: null
|
1395
|
+
|
1396
|
+
...defaultTextFlagConfig
|
1416
1397
|
|
1417
1398
|
}
|
1418
1399
|
},
|
@@ -1420,6 +1401,7 @@ export const basicFields = [
|
|
1420
1401
|
type: "date-range",
|
1421
1402
|
icon: "date-range-field",
|
1422
1403
|
formItemFlag: !0,
|
1404
|
+
columnFlag: true,
|
1423
1405
|
tableField: null,
|
1424
1406
|
options: {
|
1425
1407
|
name: "",
|
@@ -1465,12 +1447,6 @@ export const basicFields = [
|
|
1465
1447
|
showRuleFlag: 1,
|
1466
1448
|
showRuleEnabled: 1,
|
1467
1449
|
showRules: [],
|
1468
|
-
textFlag: 1,
|
1469
|
-
textRule1: false,
|
1470
|
-
textRule2: false,
|
1471
|
-
textRule3: false,
|
1472
|
-
textRule2Number: null,
|
1473
|
-
textRule3Number: null
|
1474
1450
|
|
1475
1451
|
}
|
1476
1452
|
},
|
@@ -1602,6 +1578,7 @@ export const basicFields = [
|
|
1602
1578
|
type: "static-text",
|
1603
1579
|
icon: "static-text",
|
1604
1580
|
formItemFlag: !1,
|
1581
|
+
columnFlag: true,
|
1605
1582
|
options: {
|
1606
1583
|
name: "",
|
1607
1584
|
columnWidth: "200px",
|
@@ -1617,12 +1594,8 @@ export const basicFields = [
|
|
1617
1594
|
showRuleFlag: 1,
|
1618
1595
|
showRuleEnabled: 1,
|
1619
1596
|
showRules: [],
|
1620
|
-
|
1621
|
-
|
1622
|
-
textRule2: false,
|
1623
|
-
textRule3: false,
|
1624
|
-
textRule2Number: null,
|
1625
|
-
textRule3Number: null
|
1597
|
+
|
1598
|
+
...defaultTextFlagConfig
|
1626
1599
|
|
1627
1600
|
}
|
1628
1601
|
},
|
@@ -1630,6 +1603,7 @@ export const basicFields = [
|
|
1630
1603
|
type: "html-text",
|
1631
1604
|
icon: "html-text",
|
1632
1605
|
formItemFlag: !1,
|
1606
|
+
columnFlag: true,
|
1633
1607
|
options: {
|
1634
1608
|
name: "",
|
1635
1609
|
columnWidth: "200px",
|
@@ -1644,12 +1618,6 @@ export const basicFields = [
|
|
1644
1618
|
showRuleFlag: 1,
|
1645
1619
|
showRuleEnabled: 1,
|
1646
1620
|
showRules: [],
|
1647
|
-
textFlag: 1,
|
1648
|
-
textRule1: false,
|
1649
|
-
textRule2: false,
|
1650
|
-
textRule3: false,
|
1651
|
-
textRule2Number: null,
|
1652
|
-
textRule3Number: null
|
1653
1621
|
|
1654
1622
|
}
|
1655
1623
|
},
|
@@ -1674,6 +1642,7 @@ export const basicFields = [
|
|
1674
1642
|
type: "button",
|
1675
1643
|
icon: "button",
|
1676
1644
|
formItemFlag: !1,
|
1645
|
+
columnFlag: true,
|
1677
1646
|
options: {
|
1678
1647
|
name: "",
|
1679
1648
|
label: "",
|
@@ -1705,18 +1674,14 @@ export const basicFields = [
|
|
1705
1674
|
showRuleFlag: 1,
|
1706
1675
|
showRuleEnabled: 1,
|
1707
1676
|
showRules: [],
|
1708
|
-
|
1709
|
-
textRule1: false,
|
1710
|
-
textRule2: false,
|
1711
|
-
textRule3: false,
|
1712
|
-
textRule2Number: null,
|
1713
|
-
textRule3Number: null
|
1677
|
+
|
1714
1678
|
}
|
1715
1679
|
},
|
1716
1680
|
{
|
1717
1681
|
type: "divider",
|
1718
1682
|
icon: "divider",
|
1719
1683
|
formItemFlag: !1,
|
1684
|
+
columnFlag: true,
|
1720
1685
|
options: {
|
1721
1686
|
name: "",
|
1722
1687
|
label: "",
|
@@ -1788,6 +1753,7 @@ export const basicFields = [
|
|
1788
1753
|
type: "text",
|
1789
1754
|
icon: "text",
|
1790
1755
|
formItemFlag: !0,
|
1756
|
+
columnFlag: true,
|
1791
1757
|
tableField: null,
|
1792
1758
|
options: {
|
1793
1759
|
name: "",
|
@@ -1809,27 +1775,28 @@ export const basicFields = [
|
|
1809
1775
|
labelColor: '#555555',
|
1810
1776
|
...defaultWfConfig,
|
1811
1777
|
|
1778
|
+
autoValueEnabled: false,
|
1779
|
+
autoValueHanlde: null,
|
1780
|
+
|
1812
1781
|
showRuleFlag: 1,
|
1813
1782
|
showRuleEnabled: 1,
|
1814
1783
|
showRules: [],
|
1815
|
-
|
1816
|
-
|
1817
|
-
textRule2: false,
|
1818
|
-
textRule3: false,
|
1819
|
-
textRule2Number: null,
|
1820
|
-
textRule3Number: null
|
1784
|
+
|
1785
|
+
...defaultTextFlagConfig
|
1821
1786
|
}
|
1822
1787
|
},
|
1823
1788
|
{
|
1824
1789
|
type: "a-text",
|
1825
1790
|
icon: "text-field",
|
1826
1791
|
formItemFlag: !0,
|
1792
|
+
columnFlag: true,
|
1827
1793
|
tableField: null,
|
1828
1794
|
options: {
|
1829
1795
|
name: "",
|
1830
1796
|
keyNameEnabled: !1,
|
1831
1797
|
keyName: "",
|
1832
1798
|
label: "",
|
1799
|
+
displayStyle: "block",
|
1833
1800
|
submitFlag: true,
|
1834
1801
|
/**showText: false,*/
|
1835
1802
|
formField: "",
|
@@ -1861,23 +1828,21 @@ export const basicFields = [
|
|
1861
1828
|
showRuleFlag: 1,
|
1862
1829
|
showRuleEnabled: 1,
|
1863
1830
|
showRules: [],
|
1864
|
-
|
1865
|
-
|
1866
|
-
textRule2: false,
|
1867
|
-
textRule3: false,
|
1868
|
-
textRule2Number: null,
|
1869
|
-
textRule3Number: null
|
1831
|
+
|
1832
|
+
...defaultTextFlagConfig
|
1870
1833
|
}
|
1871
1834
|
},
|
1872
1835
|
{
|
1873
1836
|
type: "a-link",
|
1874
1837
|
icon: "button",
|
1875
1838
|
formItemFlag: !1,
|
1839
|
+
columnFlag: true,
|
1876
1840
|
options: {
|
1877
1841
|
name: "",
|
1878
1842
|
keyNameEnabled: !1,
|
1879
1843
|
keyName: "",
|
1880
1844
|
label: "",
|
1845
|
+
displayStyle: "block",
|
1881
1846
|
labelHidden: !1,
|
1882
1847
|
disabled: !1,
|
1883
1848
|
hidden: !1,
|
@@ -1887,7 +1852,7 @@ export const basicFields = [
|
|
1887
1852
|
aLinkFlag: 1,
|
1888
1853
|
underline: false,
|
1889
1854
|
href: "",
|
1890
|
-
coloClass: "f-
|
1855
|
+
coloClass: "f-blue",
|
1891
1856
|
isFormLabel: false,
|
1892
1857
|
onCreated: "",
|
1893
1858
|
onMounted: "",
|
@@ -1905,12 +1870,8 @@ export const basicFields = [
|
|
1905
1870
|
showRuleFlag: 1,
|
1906
1871
|
showRuleEnabled: 1,
|
1907
1872
|
showRules: [],
|
1908
|
-
|
1909
|
-
|
1910
|
-
textRule2: false,
|
1911
|
-
textRule3: false,
|
1912
|
-
textRule2Number: null,
|
1913
|
-
textRule3Number: null
|
1873
|
+
|
1874
|
+
...defaultTextFlagConfig
|
1914
1875
|
}
|
1915
1876
|
},
|
1916
1877
|
|
@@ -2540,13 +2501,20 @@ export const advancedFields = [
|
|
2540
2501
|
|
2541
2502
|
showRuleFlag: 1,
|
2542
2503
|
showRuleEnabled: 1,
|
2543
|
-
showRules: []
|
2504
|
+
showRules: [],
|
2505
|
+
|
2506
|
+
hiddenFileInfo: false,
|
2507
|
+
hiddenFileName: false,
|
2508
|
+
showFileSize: false,
|
2509
|
+
showFileCreateBy: false,
|
2510
|
+
showFileCreateDate: false,
|
2544
2511
|
}
|
2545
2512
|
},
|
2546
2513
|
{
|
2547
2514
|
type: "vabsearch",
|
2548
2515
|
icon: "searchbox",
|
2549
2516
|
commonFlag: !0,
|
2517
|
+
columnFlag: true,
|
2550
2518
|
formItemFlag: !0,
|
2551
2519
|
tableField: null,
|
2552
2520
|
options: {
|
@@ -2599,6 +2567,7 @@ export const advancedFields = [
|
|
2599
2567
|
type: "search_button",
|
2600
2568
|
icon: "button",
|
2601
2569
|
commonFlag: !0,
|
2570
|
+
columnFlag: true,
|
2602
2571
|
formItemFlag: !1,
|
2603
2572
|
options: {
|
2604
2573
|
name: "",
|
@@ -2642,6 +2611,7 @@ export const advancedFields = [
|
|
2642
2611
|
targetType: "button",
|
2643
2612
|
icon: "button",
|
2644
2613
|
commonFlag: !0,
|
2614
|
+
columnFlag: true,
|
2645
2615
|
formItemFlag: !1,
|
2646
2616
|
options: {
|
2647
2617
|
name: "",
|
@@ -2680,6 +2650,7 @@ export const advancedFields = [
|
|
2680
2650
|
targetType: "button",
|
2681
2651
|
icon: "button",
|
2682
2652
|
commonFlag: !0,
|
2653
|
+
columnFlag: true,
|
2683
2654
|
formItemFlag: !1,
|
2684
2655
|
options: {
|
2685
2656
|
name: "",
|
@@ -2715,6 +2686,7 @@ export const advancedFields = [
|
|
2715
2686
|
icon: "list-export",
|
2716
2687
|
formItemFlag: !1,
|
2717
2688
|
commonFlag: !0,
|
2689
|
+
columnFlag: true,
|
2718
2690
|
tableField: null,
|
2719
2691
|
options: {
|
2720
2692
|
name: "",
|
@@ -2742,6 +2714,7 @@ export const advancedFields = [
|
|
2742
2714
|
targetType: "button",
|
2743
2715
|
icon: "button",
|
2744
2716
|
commonFlag: !0,
|
2717
|
+
columnFlag: true,
|
2745
2718
|
formItemFlag: !1,
|
2746
2719
|
options: {
|
2747
2720
|
name: "",
|
@@ -2776,6 +2749,7 @@ export const advancedFields = [
|
|
2776
2749
|
targetType: "button",
|
2777
2750
|
icon: "button",
|
2778
2751
|
commonFlag: !0,
|
2752
|
+
columnFlag: true,
|
2779
2753
|
formItemFlag: !1,
|
2780
2754
|
options: {
|
2781
2755
|
name: "",
|
@@ -2813,13 +2787,14 @@ export const advancedFields = [
|
|
2813
2787
|
type: "import-button",
|
2814
2788
|
icon: "button",
|
2815
2789
|
commonFlag: !0,
|
2790
|
+
columnFlag: true,
|
2816
2791
|
formItemFlag: !1,
|
2817
2792
|
options: {
|
2818
2793
|
name: "",
|
2819
2794
|
label: "导入",
|
2820
2795
|
columnWidth: "200px",
|
2821
2796
|
size: "",
|
2822
|
-
|
2797
|
+
|
2823
2798
|
// displayStyle: "block",
|
2824
2799
|
disabled: !1,
|
2825
2800
|
hidden: !1,
|
@@ -2836,11 +2811,57 @@ export const advancedFields = [
|
|
2836
2811
|
...defaultSearchDialogConfig
|
2837
2812
|
},
|
2838
2813
|
...defaultWfConfig,
|
2814
|
+
|
2815
|
+
importFileLimitSize: 200,
|
2839
2816
|
importEntity: '',
|
2840
2817
|
importAttachCode: '',
|
2841
2818
|
importScriptCode: '',
|
2842
2819
|
onBeforeImport: '',
|
2843
2820
|
enabledImportPreHandle: false,
|
2821
|
+
tableRef:'',
|
2822
|
+
onSuccessImport:'',
|
2823
|
+
|
2824
|
+
showRuleFlag: 1,
|
2825
|
+
showRuleEnabled: 1,
|
2826
|
+
showRules: []
|
2827
|
+
},
|
2828
|
+
},
|
2829
|
+
{
|
2830
|
+
type: "import2-button",
|
2831
|
+
icon: "button",
|
2832
|
+
commonFlag: !0,
|
2833
|
+
columnFlag: true,
|
2834
|
+
formItemFlag: !1,
|
2835
|
+
options: {
|
2836
|
+
name: "",
|
2837
|
+
label: "明细导入",
|
2838
|
+
columnWidth: "200px",
|
2839
|
+
size: "",
|
2840
|
+
|
2841
|
+
// displayStyle: "block",
|
2842
|
+
disabled: !1,
|
2843
|
+
hidden: !1,
|
2844
|
+
type: "primary",
|
2845
|
+
/*plain: !1,
|
2846
|
+
round: !1,
|
2847
|
+
circle: !1,
|
2848
|
+
icon: "el-icon-download",*/
|
2849
|
+
customClass: "",
|
2850
|
+
onCreated: "",
|
2851
|
+
onMounted: "",
|
2852
|
+
// clickBindEvent: null,
|
2853
|
+
searchDialogConfig: {
|
2854
|
+
...defaultSearchDialogConfig
|
2855
|
+
},
|
2856
|
+
...defaultWfConfig,
|
2857
|
+
|
2858
|
+
frontImportFlag:1,
|
2859
|
+
importFileLimitSize: 200,
|
2860
|
+
importAttachCode: '',
|
2861
|
+
tableRef:'',
|
2862
|
+
onConfirmImportEnabled:false,
|
2863
|
+
onConfirmImport: '',
|
2864
|
+
onSuccessImport:'',
|
2844
2865
|
|
2845
2866
|
showRuleFlag: 1,
|
2846
2867
|
showRuleEnabled: 1,
|
@@ -2851,6 +2872,7 @@ export const advancedFields = [
|
|
2851
2872
|
type: "print-button",
|
2852
2873
|
icon: "button",
|
2853
2874
|
commonFlag: !0,
|
2875
|
+
columnFlag: true,
|
2854
2876
|
formItemFlag: !1,
|
2855
2877
|
options: {
|
2856
2878
|
name: "",
|
@@ -2884,6 +2906,7 @@ export const advancedFields = [
|
|
2884
2906
|
{
|
2885
2907
|
type: "baseAttachment",
|
2886
2908
|
icon: "file-upload-field",
|
2909
|
+
columnFlag: true,
|
2887
2910
|
formItemFlag: !0,
|
2888
2911
|
tableField: null,
|
2889
2912
|
options: {
|
@@ -2916,6 +2939,7 @@ export const advancedFields = [
|
|
2916
2939
|
type: "status",
|
2917
2940
|
icon: "status",
|
2918
2941
|
commonFlag: !0,
|
2942
|
+
columnFlag: true,
|
2919
2943
|
formItemFlag: !0,
|
2920
2944
|
tableField: null,
|
2921
2945
|
options: {
|
@@ -2994,6 +3018,7 @@ export const advancedFields = [
|
|
2994
3018
|
type: "project-tag",
|
2995
3019
|
icon: "uploadbox",
|
2996
3020
|
commonFlag: !0,
|
3021
|
+
columnFlag: true,
|
2997
3022
|
formItemFlag: !0,
|
2998
3023
|
tableField: null,
|
2999
3024
|
options: {
|
@@ -3012,7 +3037,7 @@ export const advancedFields = [
|
|
3012
3037
|
onCreated: "if(this.dataId)this.loadDataDefaultHandle();",
|
3013
3038
|
onMounted: "",
|
3014
3039
|
onClick: "",
|
3015
|
-
vabUpload: 1,
|
3040
|
+
// vabUpload: 1,
|
3016
3041
|
formScriptEnabled: true,
|
3017
3042
|
formScriptCode: "getList",
|
3018
3043
|
formScriptParam: null,
|