cloud-web-corejs 1.0.80 → 1.0.82
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/form-widget/dialog/formDialog.vue +11 -3
- 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 +12 -5
- 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/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/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 +1 -0
- package/src/components/xform/form-designer/widget-panel/indexMixin.js +1 -1
- package/src/components/xform/form-designer/widget-panel/widgetsConfig.js +132 -110
- package/src/components/xform/form-render/container-item/containerItemMixin.js +1 -1
- package/src/components/xform/form-render/container-item/data-table-item.vue +42 -20
- 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,30 +1775,28 @@ export const basicFields = [
|
|
1809
1775
|
labelColor: '#555555',
|
1810
1776
|
...defaultWfConfig,
|
1811
1777
|
|
1812
|
-
autoValueEnabled:false,
|
1813
|
-
autoValueHanlde:null,
|
1778
|
+
autoValueEnabled: false,
|
1779
|
+
autoValueHanlde: null,
|
1814
1780
|
|
1815
1781
|
showRuleFlag: 1,
|
1816
1782
|
showRuleEnabled: 1,
|
1817
1783
|
showRules: [],
|
1818
|
-
|
1819
|
-
|
1820
|
-
textRule2: false,
|
1821
|
-
textRule3: false,
|
1822
|
-
textRule2Number: null,
|
1823
|
-
textRule3Number: null
|
1784
|
+
|
1785
|
+
...defaultTextFlagConfig
|
1824
1786
|
}
|
1825
1787
|
},
|
1826
1788
|
{
|
1827
1789
|
type: "a-text",
|
1828
1790
|
icon: "text-field",
|
1829
1791
|
formItemFlag: !0,
|
1792
|
+
columnFlag: true,
|
1830
1793
|
tableField: null,
|
1831
1794
|
options: {
|
1832
1795
|
name: "",
|
1833
1796
|
keyNameEnabled: !1,
|
1834
1797
|
keyName: "",
|
1835
1798
|
label: "",
|
1799
|
+
displayStyle: "block",
|
1836
1800
|
submitFlag: true,
|
1837
1801
|
/**showText: false,*/
|
1838
1802
|
formField: "",
|
@@ -1864,23 +1828,21 @@ export const basicFields = [
|
|
1864
1828
|
showRuleFlag: 1,
|
1865
1829
|
showRuleEnabled: 1,
|
1866
1830
|
showRules: [],
|
1867
|
-
|
1868
|
-
|
1869
|
-
textRule2: false,
|
1870
|
-
textRule3: false,
|
1871
|
-
textRule2Number: null,
|
1872
|
-
textRule3Number: null
|
1831
|
+
|
1832
|
+
...defaultTextFlagConfig
|
1873
1833
|
}
|
1874
1834
|
},
|
1875
1835
|
{
|
1876
1836
|
type: "a-link",
|
1877
1837
|
icon: "button",
|
1878
1838
|
formItemFlag: !1,
|
1839
|
+
columnFlag: true,
|
1879
1840
|
options: {
|
1880
1841
|
name: "",
|
1881
1842
|
keyNameEnabled: !1,
|
1882
1843
|
keyName: "",
|
1883
1844
|
label: "",
|
1845
|
+
displayStyle: "block",
|
1884
1846
|
labelHidden: !1,
|
1885
1847
|
disabled: !1,
|
1886
1848
|
hidden: !1,
|
@@ -1890,7 +1852,7 @@ export const basicFields = [
|
|
1890
1852
|
aLinkFlag: 1,
|
1891
1853
|
underline: false,
|
1892
1854
|
href: "",
|
1893
|
-
coloClass: "f-
|
1855
|
+
coloClass: "f-blue",
|
1894
1856
|
isFormLabel: false,
|
1895
1857
|
onCreated: "",
|
1896
1858
|
onMounted: "",
|
@@ -1908,12 +1870,8 @@ export const basicFields = [
|
|
1908
1870
|
showRuleFlag: 1,
|
1909
1871
|
showRuleEnabled: 1,
|
1910
1872
|
showRules: [],
|
1911
|
-
|
1912
|
-
|
1913
|
-
textRule2: false,
|
1914
|
-
textRule3: false,
|
1915
|
-
textRule2Number: null,
|
1916
|
-
textRule3Number: null
|
1873
|
+
|
1874
|
+
...defaultTextFlagConfig
|
1917
1875
|
}
|
1918
1876
|
},
|
1919
1877
|
|
@@ -2543,13 +2501,20 @@ export const advancedFields = [
|
|
2543
2501
|
|
2544
2502
|
showRuleFlag: 1,
|
2545
2503
|
showRuleEnabled: 1,
|
2546
|
-
showRules: []
|
2504
|
+
showRules: [],
|
2505
|
+
|
2506
|
+
hiddenFileInfo: false,
|
2507
|
+
hiddenFileName: false,
|
2508
|
+
showFileSize: false,
|
2509
|
+
showFileCreateBy: false,
|
2510
|
+
showFileCreateDate: false,
|
2547
2511
|
}
|
2548
2512
|
},
|
2549
2513
|
{
|
2550
2514
|
type: "vabsearch",
|
2551
2515
|
icon: "searchbox",
|
2552
2516
|
commonFlag: !0,
|
2517
|
+
columnFlag: true,
|
2553
2518
|
formItemFlag: !0,
|
2554
2519
|
tableField: null,
|
2555
2520
|
options: {
|
@@ -2602,6 +2567,7 @@ export const advancedFields = [
|
|
2602
2567
|
type: "search_button",
|
2603
2568
|
icon: "button",
|
2604
2569
|
commonFlag: !0,
|
2570
|
+
columnFlag: true,
|
2605
2571
|
formItemFlag: !1,
|
2606
2572
|
options: {
|
2607
2573
|
name: "",
|
@@ -2645,6 +2611,7 @@ export const advancedFields = [
|
|
2645
2611
|
targetType: "button",
|
2646
2612
|
icon: "button",
|
2647
2613
|
commonFlag: !0,
|
2614
|
+
columnFlag: true,
|
2648
2615
|
formItemFlag: !1,
|
2649
2616
|
options: {
|
2650
2617
|
name: "",
|
@@ -2683,6 +2650,7 @@ export const advancedFields = [
|
|
2683
2650
|
targetType: "button",
|
2684
2651
|
icon: "button",
|
2685
2652
|
commonFlag: !0,
|
2653
|
+
columnFlag: true,
|
2686
2654
|
formItemFlag: !1,
|
2687
2655
|
options: {
|
2688
2656
|
name: "",
|
@@ -2718,6 +2686,7 @@ export const advancedFields = [
|
|
2718
2686
|
icon: "list-export",
|
2719
2687
|
formItemFlag: !1,
|
2720
2688
|
commonFlag: !0,
|
2689
|
+
columnFlag: true,
|
2721
2690
|
tableField: null,
|
2722
2691
|
options: {
|
2723
2692
|
name: "",
|
@@ -2745,6 +2714,7 @@ export const advancedFields = [
|
|
2745
2714
|
targetType: "button",
|
2746
2715
|
icon: "button",
|
2747
2716
|
commonFlag: !0,
|
2717
|
+
columnFlag: true,
|
2748
2718
|
formItemFlag: !1,
|
2749
2719
|
options: {
|
2750
2720
|
name: "",
|
@@ -2779,6 +2749,7 @@ export const advancedFields = [
|
|
2779
2749
|
targetType: "button",
|
2780
2750
|
icon: "button",
|
2781
2751
|
commonFlag: !0,
|
2752
|
+
columnFlag: true,
|
2782
2753
|
formItemFlag: !1,
|
2783
2754
|
options: {
|
2784
2755
|
name: "",
|
@@ -2816,13 +2787,14 @@ export const advancedFields = [
|
|
2816
2787
|
type: "import-button",
|
2817
2788
|
icon: "button",
|
2818
2789
|
commonFlag: !0,
|
2790
|
+
columnFlag: true,
|
2819
2791
|
formItemFlag: !1,
|
2820
2792
|
options: {
|
2821
2793
|
name: "",
|
2822
2794
|
label: "导入",
|
2823
2795
|
columnWidth: "200px",
|
2824
2796
|
size: "",
|
2825
|
-
|
2797
|
+
|
2826
2798
|
// displayStyle: "block",
|
2827
2799
|
disabled: !1,
|
2828
2800
|
hidden: !1,
|
@@ -2839,11 +2811,57 @@ export const advancedFields = [
|
|
2839
2811
|
...defaultSearchDialogConfig
|
2840
2812
|
},
|
2841
2813
|
...defaultWfConfig,
|
2814
|
+
|
2815
|
+
importFileLimitSize: 200,
|
2842
2816
|
importEntity: '',
|
2843
2817
|
importAttachCode: '',
|
2844
2818
|
importScriptCode: '',
|
2845
2819
|
onBeforeImport: '',
|
2846
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:'',
|
2847
2865
|
|
2848
2866
|
showRuleFlag: 1,
|
2849
2867
|
showRuleEnabled: 1,
|
@@ -2854,6 +2872,7 @@ export const advancedFields = [
|
|
2854
2872
|
type: "print-button",
|
2855
2873
|
icon: "button",
|
2856
2874
|
commonFlag: !0,
|
2875
|
+
columnFlag: true,
|
2857
2876
|
formItemFlag: !1,
|
2858
2877
|
options: {
|
2859
2878
|
name: "",
|
@@ -2887,6 +2906,7 @@ export const advancedFields = [
|
|
2887
2906
|
{
|
2888
2907
|
type: "baseAttachment",
|
2889
2908
|
icon: "file-upload-field",
|
2909
|
+
columnFlag: true,
|
2890
2910
|
formItemFlag: !0,
|
2891
2911
|
tableField: null,
|
2892
2912
|
options: {
|
@@ -2919,6 +2939,7 @@ export const advancedFields = [
|
|
2919
2939
|
type: "status",
|
2920
2940
|
icon: "status",
|
2921
2941
|
commonFlag: !0,
|
2942
|
+
columnFlag: true,
|
2922
2943
|
formItemFlag: !0,
|
2923
2944
|
tableField: null,
|
2924
2945
|
options: {
|
@@ -2997,6 +3018,7 @@ export const advancedFields = [
|
|
2997
3018
|
type: "project-tag",
|
2998
3019
|
icon: "uploadbox",
|
2999
3020
|
commonFlag: !0,
|
3021
|
+
columnFlag: true,
|
3000
3022
|
formItemFlag: !0,
|
3001
3023
|
tableField: null,
|
3002
3024
|
options: {
|
@@ -3015,7 +3037,7 @@ export const advancedFields = [
|
|
3015
3037
|
onCreated: "if(this.dataId)this.loadDataDefaultHandle();",
|
3016
3038
|
onMounted: "",
|
3017
3039
|
onClick: "",
|
3018
|
-
vabUpload: 1,
|
3040
|
+
// vabUpload: 1,
|
3019
3041
|
formScriptEnabled: true,
|
3020
3042
|
formScriptCode: "getList",
|
3021
3043
|
formScriptParam: null,
|