cloud-web-corejs 1.0.66 → 1.0.68
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 +1 -1
- package/src/components/fileLibrary/mixins/indexMixins.js +0 -1
- package/src/components/table/index.js +1 -1
- package/src/components/xform/form-designer/form-widget/field-widget/baseAttachment-widget.vue +3 -2
- package/src/components/xform/form-designer/form-widget/field-widget/date-range-widget.vue +1 -0
- package/src/components/xform/form-designer/form-widget/field-widget/echart-bar-widget.vue +1 -1
- package/src/components/xform/form-designer/form-widget/field-widget/echart-category-widget.vue +1 -1
- package/src/components/xform/form-designer/form-widget/field-widget/echart-pie-widget.vue +1 -1
- package/src/components/xform/form-designer/form-widget/field-widget/fieldMixin.js +1 -1
- package/src/components/xform/form-designer/form-widget/field-widget/mixins/echart-bar-mixin.js +12 -1
- package/src/components/xform/form-designer/form-widget/field-widget/mixins/echart-category-mixin.js +6 -0
- package/src/components/xform/form-designer/form-widget/field-widget/mixins/echart-pie-mixin.js +6 -0
- package/src/components/xform/form-designer/form-widget/field-widget/table-export-button-widget.vue +5 -1
- package/src/components/xform/form-designer/form-widget/field-widget/vabUpload-widget.vue +77 -0
- package/src/components/xform/form-designer/indexMixin.js +1 -1
- package/src/components/xform/form-designer/setting-panel/form-setting.vue +40 -3
- package/src/components/xform/form-designer/setting-panel/property-editor/event-handler/onAfterConfirmFile-editor.vue +30 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/event-handler/onClick-editor.vue +2 -2
- package/src/components/xform/form-designer/setting-panel/property-editor/field-date-range/date-range-defaultTime-editor.vue +27 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/field-echart/echart-bar-editor.vue +160 -69
- package/src/components/xform/form-designer/setting-panel/property-editor/field-echart/echart-category-editor.vue +184 -82
- package/src/components/xform/form-designer/setting-panel/property-editor/field-echart/echart-pie-editor.vue +84 -39
- package/src/components/xform/form-designer/setting-panel/property-editor/placeholder-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/showRuleFlag-editor.vue +223 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/textFlag-editor.vue +62 -0
- package/src/components/xform/form-designer/setting-panel/propertyRegister.js +4 -0
- package/src/components/xform/form-designer/setting-panel/wfObjConfigDialog.vue +189 -0
- package/src/components/xform/form-designer/widget-panel/widgetsConfig.js +286 -33
- package/src/store/modules/permission.js +1 -1
- package/src/utils/request.js +28 -28
- package/src/utils/vab.js +1 -1
- package/src/views/bd/setting/form_template/batchWfObjConfigDialog.vue +105 -0
- package/src/views/bd/setting/form_template/mixins/batchWfObjConfigDialog.js +4 -0
- package/src/views/bd/setting/form_template/mixins/wf_list.js +12 -0
- package/src/views/bd/setting/form_template/wfObjConfigDialog.vue +254 -0
- package/src/views/bd/setting/form_template/wf_list.vue +127 -0
- package/src/views/user/outLink/form_view.vue +39 -12
- package/src/views/user/outLink/view.vue +28 -23
@@ -259,7 +259,7 @@ export const containers = [
|
|
259
259
|
formScriptEnabled: true,
|
260
260
|
formScriptCode: null,
|
261
261
|
formScriptParam: null,
|
262
|
-
formScriptCallback:null,
|
262
|
+
formScriptCallback: null,
|
263
263
|
/*isLoadDataByAccess: false,
|
264
264
|
scriptEnabled: false,
|
265
265
|
scriptName: null,
|
@@ -275,7 +275,11 @@ export const containers = [
|
|
275
275
|
isTreeTable: false,
|
276
276
|
wbsEnabled: false,
|
277
277
|
sortScriptCode: null,
|
278
|
-
importTemplateFile: null
|
278
|
+
importTemplateFile: null,
|
279
|
+
|
280
|
+
showRuleFlag: 1,
|
281
|
+
showRuleEnabled: 1,
|
282
|
+
showRules: [],
|
279
283
|
}
|
280
284
|
},
|
281
285
|
/*{
|
@@ -813,7 +817,17 @@ export const basicFields = [
|
|
813
817
|
wfEdit: false,
|
814
818
|
enabledByWf: false,
|
815
819
|
hiddenByWf: false,
|
816
|
-
wfConfigData: []
|
820
|
+
wfConfigData: [],
|
821
|
+
|
822
|
+
showRuleFlag: 1,
|
823
|
+
showRuleEnabled: 1,
|
824
|
+
showRules: [],
|
825
|
+
textFlag: 1,
|
826
|
+
textRule1: false,
|
827
|
+
textRule2: false,
|
828
|
+
textRule3: false,
|
829
|
+
textRule2Number: null,
|
830
|
+
textRule3Number: null
|
817
831
|
}
|
818
832
|
},
|
819
833
|
{
|
@@ -871,7 +885,17 @@ export const basicFields = [
|
|
871
885
|
wfEdit: false,
|
872
886
|
enabledByWf: false,
|
873
887
|
hiddenByWf: false,
|
874
|
-
wfConfigData: []
|
888
|
+
wfConfigData: [],
|
889
|
+
|
890
|
+
showRuleFlag: 1,
|
891
|
+
showRuleEnabled: 1,
|
892
|
+
showRules: [],
|
893
|
+
textFlag: 1,
|
894
|
+
textRule1: false,
|
895
|
+
textRule2: false,
|
896
|
+
textRule3: false,
|
897
|
+
textRule2Number: null,
|
898
|
+
textRule3Number: null
|
875
899
|
|
876
900
|
}
|
877
901
|
},
|
@@ -921,8 +945,17 @@ export const basicFields = [
|
|
921
945
|
wfEdit: false,
|
922
946
|
enabledByWf: false,
|
923
947
|
hiddenByWf: false,
|
924
|
-
wfConfigData: []
|
948
|
+
wfConfigData: [],
|
925
949
|
|
950
|
+
showRuleFlag: 1,
|
951
|
+
showRuleEnabled: 1,
|
952
|
+
showRules: [],
|
953
|
+
textFlag: 1,
|
954
|
+
textRule1: false,
|
955
|
+
textRule2: false,
|
956
|
+
textRule3: false,
|
957
|
+
textRule2Number: null,
|
958
|
+
textRule3Number: null
|
926
959
|
}
|
927
960
|
},
|
928
961
|
{
|
@@ -973,7 +1006,17 @@ export const basicFields = [
|
|
973
1006
|
wfEdit: false,
|
974
1007
|
enabledByWf: false,
|
975
1008
|
hiddenByWf: false,
|
976
|
-
wfConfigData: []
|
1009
|
+
wfConfigData: [],
|
1010
|
+
|
1011
|
+
showRuleFlag: 1,
|
1012
|
+
showRuleEnabled: 1,
|
1013
|
+
showRules: [],
|
1014
|
+
textFlag: 1,
|
1015
|
+
textRule1: false,
|
1016
|
+
textRule2: false,
|
1017
|
+
textRule3: false,
|
1018
|
+
textRule2Number: null,
|
1019
|
+
textRule3Number: null
|
977
1020
|
|
978
1021
|
}
|
979
1022
|
},
|
@@ -1037,7 +1080,17 @@ export const basicFields = [
|
|
1037
1080
|
wfEdit: false,
|
1038
1081
|
enabledByWf: false,
|
1039
1082
|
hiddenByWf: false,
|
1040
|
-
wfConfigData: []
|
1083
|
+
wfConfigData: [],
|
1084
|
+
|
1085
|
+
showRuleFlag: 1,
|
1086
|
+
showRuleEnabled: 1,
|
1087
|
+
showRules: [],
|
1088
|
+
textFlag: 1,
|
1089
|
+
textRule1: false,
|
1090
|
+
textRule2: false,
|
1091
|
+
textRule3: false,
|
1092
|
+
textRule2Number: null,
|
1093
|
+
textRule3Number: null
|
1041
1094
|
}
|
1042
1095
|
},
|
1043
1096
|
{
|
@@ -1100,7 +1153,17 @@ export const basicFields = [
|
|
1100
1153
|
wfEdit: false,
|
1101
1154
|
enabledByWf: false,
|
1102
1155
|
hiddenByWf: false,
|
1103
|
-
wfConfigData: []
|
1156
|
+
wfConfigData: [],
|
1157
|
+
|
1158
|
+
showRuleFlag: 1,
|
1159
|
+
showRuleEnabled: 1,
|
1160
|
+
showRules: [],
|
1161
|
+
textFlag: 1,
|
1162
|
+
textRule1: false,
|
1163
|
+
textRule2: false,
|
1164
|
+
textRule3: false,
|
1165
|
+
textRule2Number: null,
|
1166
|
+
textRule3Number: null
|
1104
1167
|
|
1105
1168
|
}
|
1106
1169
|
},
|
@@ -1174,7 +1237,17 @@ export const basicFields = [
|
|
1174
1237
|
wfEdit: false,
|
1175
1238
|
enabledByWf: false,
|
1176
1239
|
hiddenByWf: false,
|
1177
|
-
wfConfigData: []
|
1240
|
+
wfConfigData: [],
|
1241
|
+
|
1242
|
+
showRuleFlag: 1,
|
1243
|
+
showRuleEnabled: 1,
|
1244
|
+
showRules: [],
|
1245
|
+
textFlag: 1,
|
1246
|
+
textRule1: false,
|
1247
|
+
textRule2: false,
|
1248
|
+
textRule3: false,
|
1249
|
+
textRule2Number: null,
|
1250
|
+
textRule3Number: null
|
1178
1251
|
}
|
1179
1252
|
},
|
1180
1253
|
{
|
@@ -1222,7 +1295,17 @@ export const basicFields = [
|
|
1222
1295
|
wfEdit: false,
|
1223
1296
|
enabledByWf: false,
|
1224
1297
|
hiddenByWf: false,
|
1225
|
-
wfConfigData: []
|
1298
|
+
wfConfigData: [],
|
1299
|
+
|
1300
|
+
showRuleFlag: 1,
|
1301
|
+
showRuleEnabled: 1,
|
1302
|
+
showRules: [],
|
1303
|
+
textFlag: 1,
|
1304
|
+
textRule1: false,
|
1305
|
+
textRule2: false,
|
1306
|
+
textRule3: false,
|
1307
|
+
textRule2Number: null,
|
1308
|
+
textRule3Number: null
|
1226
1309
|
|
1227
1310
|
}
|
1228
1311
|
},
|
@@ -1271,7 +1354,17 @@ export const basicFields = [
|
|
1271
1354
|
wfEdit: false,
|
1272
1355
|
enabledByWf: false,
|
1273
1356
|
hiddenByWf: false,
|
1274
|
-
wfConfigData: []
|
1357
|
+
wfConfigData: [],
|
1358
|
+
|
1359
|
+
showRuleFlag: 1,
|
1360
|
+
showRuleEnabled: 1,
|
1361
|
+
showRules: [],
|
1362
|
+
textFlag: 1,
|
1363
|
+
textRule1: false,
|
1364
|
+
textRule2: false,
|
1365
|
+
textRule3: false,
|
1366
|
+
textRule2Number: null,
|
1367
|
+
textRule3Number: null
|
1275
1368
|
|
1276
1369
|
}
|
1277
1370
|
},
|
@@ -1322,7 +1415,17 @@ export const basicFields = [
|
|
1322
1415
|
wfEdit: false,
|
1323
1416
|
enabledByWf: false,
|
1324
1417
|
hiddenByWf: false,
|
1325
|
-
wfConfigData: []
|
1418
|
+
wfConfigData: [],
|
1419
|
+
|
1420
|
+
showRuleFlag: 1,
|
1421
|
+
showRuleEnabled: 1,
|
1422
|
+
showRules: [],
|
1423
|
+
textFlag: 1,
|
1424
|
+
textRule1: false,
|
1425
|
+
textRule2: false,
|
1426
|
+
textRule3: false,
|
1427
|
+
textRule2Number: null,
|
1428
|
+
textRule3Number: null
|
1326
1429
|
|
1327
1430
|
}
|
1328
1431
|
},
|
@@ -1354,6 +1457,7 @@ export const basicFields = [
|
|
1354
1457
|
editable: !1,
|
1355
1458
|
format: "yyyy-MM-dd",
|
1356
1459
|
valueFormat: "yyyy-MM-dd",
|
1460
|
+
defaultTime: ['00:00:00', '23:59:59'],
|
1357
1461
|
required: !1,
|
1358
1462
|
requiredHint: "",
|
1359
1463
|
validation: "",
|
@@ -1373,7 +1477,17 @@ export const basicFields = [
|
|
1373
1477
|
wfEdit: false,
|
1374
1478
|
enabledByWf: false,
|
1375
1479
|
hiddenByWf: false,
|
1376
|
-
wfConfigData: []
|
1480
|
+
wfConfigData: [],
|
1481
|
+
|
1482
|
+
showRuleFlag: 1,
|
1483
|
+
showRuleEnabled: 1,
|
1484
|
+
showRules: [],
|
1485
|
+
textFlag: 1,
|
1486
|
+
textRule1: false,
|
1487
|
+
textRule2: false,
|
1488
|
+
textRule3: false,
|
1489
|
+
textRule2Number: null,
|
1490
|
+
textRule3Number: null
|
1377
1491
|
|
1378
1492
|
}
|
1379
1493
|
},
|
@@ -1516,6 +1630,16 @@ export const basicFields = [
|
|
1516
1630
|
onMounted: "",
|
1517
1631
|
accessType: "1",
|
1518
1632
|
|
1633
|
+
showRuleFlag: 1,
|
1634
|
+
showRuleEnabled: 1,
|
1635
|
+
showRules: [],
|
1636
|
+
textFlag: 1,
|
1637
|
+
textRule1: false,
|
1638
|
+
textRule2: false,
|
1639
|
+
textRule3: false,
|
1640
|
+
textRule2Number: null,
|
1641
|
+
textRule3Number: null
|
1642
|
+
|
1519
1643
|
}
|
1520
1644
|
},
|
1521
1645
|
{
|
@@ -1532,6 +1656,16 @@ export const basicFields = [
|
|
1532
1656
|
onMounted: "",
|
1533
1657
|
accessType: "1",
|
1534
1658
|
|
1659
|
+
showRuleFlag: 1,
|
1660
|
+
showRuleEnabled: 1,
|
1661
|
+
showRules: [],
|
1662
|
+
textFlag: 1,
|
1663
|
+
textRule1: false,
|
1664
|
+
textRule2: false,
|
1665
|
+
textRule3: false,
|
1666
|
+
textRule2Number: null,
|
1667
|
+
textRule3Number: null
|
1668
|
+
|
1535
1669
|
}
|
1536
1670
|
},
|
1537
1671
|
/* {
|
@@ -1585,7 +1719,17 @@ export const basicFields = [
|
|
1585
1719
|
wfEdit: false,
|
1586
1720
|
enabledByWf: false,
|
1587
1721
|
hiddenByWf: false,
|
1588
|
-
wfConfigData: []
|
1722
|
+
wfConfigData: [],
|
1723
|
+
|
1724
|
+
showRuleFlag: 1,
|
1725
|
+
showRuleEnabled: 1,
|
1726
|
+
showRules: [],
|
1727
|
+
textFlag: 1,
|
1728
|
+
textRule1: false,
|
1729
|
+
textRule2: false,
|
1730
|
+
textRule3: false,
|
1731
|
+
textRule2Number: null,
|
1732
|
+
textRule3Number: null
|
1589
1733
|
}
|
1590
1734
|
},
|
1591
1735
|
{
|
@@ -1682,6 +1826,15 @@ export const basicFields = [
|
|
1682
1826
|
accessType: "1",
|
1683
1827
|
labelColor: '#555555',
|
1684
1828
|
|
1829
|
+
showRuleFlag: 1,
|
1830
|
+
showRuleEnabled: 1,
|
1831
|
+
showRules: [],
|
1832
|
+
textFlag: 1,
|
1833
|
+
textRule1: false,
|
1834
|
+
textRule2: false,
|
1835
|
+
textRule3: false,
|
1836
|
+
textRule2Number: null,
|
1837
|
+
textRule3Number: null
|
1685
1838
|
}
|
1686
1839
|
},
|
1687
1840
|
{
|
@@ -1724,7 +1877,17 @@ export const basicFields = [
|
|
1724
1877
|
wfEdit: false,
|
1725
1878
|
enabledByWf: false,
|
1726
1879
|
hiddenByWf: false,
|
1727
|
-
wfConfigData: []
|
1880
|
+
wfConfigData: [],
|
1881
|
+
|
1882
|
+
showRuleFlag: 1,
|
1883
|
+
showRuleEnabled: 1,
|
1884
|
+
showRules: [],
|
1885
|
+
textFlag: 1,
|
1886
|
+
textRule1: false,
|
1887
|
+
textRule2: false,
|
1888
|
+
textRule3: false,
|
1889
|
+
textRule2Number: null,
|
1890
|
+
textRule3Number: null
|
1728
1891
|
}
|
1729
1892
|
},
|
1730
1893
|
{
|
@@ -1762,7 +1925,17 @@ export const basicFields = [
|
|
1762
1925
|
wfEdit: false,
|
1763
1926
|
enabledByWf: false,
|
1764
1927
|
hiddenByWf: false,
|
1765
|
-
wfConfigData: []
|
1928
|
+
wfConfigData: [],
|
1929
|
+
|
1930
|
+
showRuleFlag: 1,
|
1931
|
+
showRuleEnabled: 1,
|
1932
|
+
showRules: [],
|
1933
|
+
textFlag: 1,
|
1934
|
+
textRule1: false,
|
1935
|
+
textRule2: false,
|
1936
|
+
textRule3: false,
|
1937
|
+
textRule2Number: null,
|
1938
|
+
textRule3Number: null
|
1766
1939
|
}
|
1767
1940
|
},
|
1768
1941
|
|
@@ -1794,12 +1967,12 @@ export const advancedFields = [
|
|
1794
1967
|
containLabel: true
|
1795
1968
|
},
|
1796
1969
|
legend: {
|
1797
|
-
show:false,
|
1970
|
+
show: false,
|
1798
1971
|
right: '12px',
|
1799
1972
|
itemGap: 20,
|
1800
|
-
itemWidth:10,
|
1801
|
-
itemHeight:10,
|
1802
|
-
orient:'horizontal'
|
1973
|
+
itemWidth: 10,
|
1974
|
+
itemHeight: 10,
|
1975
|
+
orient: 'horizontal'
|
1803
1976
|
},
|
1804
1977
|
tooltip: {
|
1805
1978
|
trigger: 'axis',
|
@@ -1849,11 +2022,17 @@ export const advancedFields = [
|
|
1849
2022
|
],
|
1850
2023
|
}]
|
1851
2024
|
},
|
2025
|
+
echartConfig: '',
|
1852
2026
|
formScriptEnabled: true,
|
1853
2027
|
formScriptCode: "",
|
1854
2028
|
formScriptParam: null,
|
2029
|
+
onClick: "",
|
1855
2030
|
onCreated: "",
|
1856
2031
|
onMounted: "this.loadDataDefaultHandle()",
|
2032
|
+
|
2033
|
+
showRuleFlag: 1,
|
2034
|
+
showRuleEnabled: 1,
|
2035
|
+
showRules: []
|
1857
2036
|
}
|
1858
2037
|
},
|
1859
2038
|
{
|
@@ -2014,11 +2193,17 @@ export const advancedFields = [
|
|
2014
2193
|
|
2015
2194
|
}]
|
2016
2195
|
},
|
2196
|
+
echartConfig: '',
|
2017
2197
|
formScriptEnabled: true,
|
2018
2198
|
formScriptCode: "",
|
2019
2199
|
formScriptParam: null,
|
2200
|
+
onClick: "",
|
2020
2201
|
onCreated: "",
|
2021
2202
|
onMounted: "this.loadDataDefaultHandle()",
|
2203
|
+
|
2204
|
+
showRuleFlag: 1,
|
2205
|
+
showRuleEnabled: 1,
|
2206
|
+
showRules: []
|
2022
2207
|
}
|
2023
2208
|
},
|
2024
2209
|
{
|
@@ -2187,11 +2372,17 @@ export const advancedFields = [
|
|
2187
2372
|
}]
|
2188
2373
|
|
2189
2374
|
},
|
2375
|
+
echartConfig: '',
|
2190
2376
|
formScriptEnabled: true,
|
2191
2377
|
formScriptCode: "",
|
2192
2378
|
formScriptParam: null,
|
2379
|
+
onClick: "",
|
2193
2380
|
onCreated: "",
|
2194
2381
|
onMounted: "this.loadDataDefaultHandle()",
|
2382
|
+
|
2383
|
+
showRuleFlag: 1,
|
2384
|
+
showRuleEnabled: 1,
|
2385
|
+
showRules: []
|
2195
2386
|
}
|
2196
2387
|
},
|
2197
2388
|
{
|
@@ -2323,6 +2514,7 @@ export const advancedFields = [
|
|
2323
2514
|
entityTableDesc: null,
|
2324
2515
|
onCreated: "this.loadDataDefaultHandle();",
|
2325
2516
|
onMounted: "",
|
2517
|
+
onAfterConfirmFile: "",
|
2326
2518
|
vabUpload: 1,
|
2327
2519
|
formScriptEnabled: true,
|
2328
2520
|
formScriptCode: "getList",
|
@@ -2331,7 +2523,11 @@ export const advancedFields = [
|
|
2331
2523
|
wfEdit: false,
|
2332
2524
|
enabledByWf: false,
|
2333
2525
|
hiddenByWf: false,
|
2334
|
-
wfConfigData: []
|
2526
|
+
wfConfigData: [],
|
2527
|
+
|
2528
|
+
showRuleFlag: 1,
|
2529
|
+
showRuleEnabled: 1,
|
2530
|
+
showRules: []
|
2335
2531
|
}
|
2336
2532
|
},
|
2337
2533
|
{
|
@@ -2382,7 +2578,11 @@ export const advancedFields = [
|
|
2382
2578
|
hiddenByWf: false,
|
2383
2579
|
wfConfigData: [],
|
2384
2580
|
valueField: null,
|
2385
|
-
multipleChoices: false
|
2581
|
+
multipleChoices: false,
|
2582
|
+
|
2583
|
+
showRuleFlag: 1,
|
2584
|
+
showRuleEnabled: 1,
|
2585
|
+
showRules: []
|
2386
2586
|
|
2387
2587
|
}
|
2388
2588
|
},
|
@@ -2425,7 +2625,11 @@ export const advancedFields = [
|
|
2425
2625
|
wfEdit: false,
|
2426
2626
|
enabledByWf: false,
|
2427
2627
|
hiddenByWf: false,
|
2428
|
-
wfConfigData: []
|
2628
|
+
wfConfigData: [],
|
2629
|
+
|
2630
|
+
showRuleFlag: 1,
|
2631
|
+
showRuleEnabled: 1,
|
2632
|
+
showRules: []
|
2429
2633
|
}
|
2430
2634
|
},
|
2431
2635
|
{
|
@@ -2462,7 +2666,11 @@ export const advancedFields = [
|
|
2462
2666
|
wfEdit: false,
|
2463
2667
|
enabledByWf: false,
|
2464
2668
|
hiddenByWf: true,
|
2465
|
-
wfConfigData: []
|
2669
|
+
wfConfigData: [],
|
2670
|
+
|
2671
|
+
showRuleFlag: 1,
|
2672
|
+
showRuleEnabled: 1,
|
2673
|
+
showRules: []
|
2466
2674
|
|
2467
2675
|
},
|
2468
2676
|
},
|
@@ -2498,7 +2706,11 @@ export const advancedFields = [
|
|
2498
2706
|
wfEdit: false,
|
2499
2707
|
enabledByWf: true,
|
2500
2708
|
hiddenByWf: false,
|
2501
|
-
wfConfigData: []
|
2709
|
+
wfConfigData: [],
|
2710
|
+
|
2711
|
+
showRuleFlag: 1,
|
2712
|
+
showRuleEnabled: 1,
|
2713
|
+
showRules: []
|
2502
2714
|
},
|
2503
2715
|
},
|
2504
2716
|
{
|
@@ -2522,7 +2734,11 @@ export const advancedFields = [
|
|
2522
2734
|
wfEdit: false,
|
2523
2735
|
enabledByWf: false,
|
2524
2736
|
hiddenByWf: false,
|
2525
|
-
wfConfigData: []
|
2737
|
+
wfConfigData: [],
|
2738
|
+
|
2739
|
+
showRuleFlag: 1,
|
2740
|
+
showRuleEnabled: 1,
|
2741
|
+
showRules: []
|
2526
2742
|
|
2527
2743
|
}
|
2528
2744
|
},
|
@@ -2557,7 +2773,11 @@ export const advancedFields = [
|
|
2557
2773
|
wfEdit: false,
|
2558
2774
|
enabledByWf: false,
|
2559
2775
|
hiddenByWf: false,
|
2560
|
-
wfConfigData: []
|
2776
|
+
wfConfigData: [],
|
2777
|
+
|
2778
|
+
showRuleFlag: 1,
|
2779
|
+
showRuleEnabled: 1,
|
2780
|
+
showRules: []
|
2561
2781
|
},
|
2562
2782
|
},
|
2563
2783
|
{
|
@@ -2594,7 +2814,11 @@ export const advancedFields = [
|
|
2594
2814
|
wfEdit: false,
|
2595
2815
|
enabledByWf: false,
|
2596
2816
|
hiddenByWf: true,
|
2597
|
-
wfConfigData: []
|
2817
|
+
wfConfigData: [],
|
2818
|
+
|
2819
|
+
showRuleFlag: 1,
|
2820
|
+
showRuleEnabled: 1,
|
2821
|
+
showRules: []
|
2598
2822
|
|
2599
2823
|
},
|
2600
2824
|
},
|
@@ -2632,7 +2856,11 @@ export const advancedFields = [
|
|
2632
2856
|
importAttachCode: '',
|
2633
2857
|
importScriptCode: '',
|
2634
2858
|
onBeforeImport: '',
|
2635
|
-
enabledImportPreHandle: false
|
2859
|
+
enabledImportPreHandle: false,
|
2860
|
+
|
2861
|
+
showRuleFlag: 1,
|
2862
|
+
showRuleEnabled: 1,
|
2863
|
+
showRules: []
|
2636
2864
|
},
|
2637
2865
|
},
|
2638
2866
|
{
|
@@ -2666,7 +2894,11 @@ export const advancedFields = [
|
|
2666
2894
|
hiddenByWf: false,
|
2667
2895
|
wfConfigData: [],
|
2668
2896
|
printTableRef: "",
|
2669
|
-
printItems: []
|
2897
|
+
printItems: [],
|
2898
|
+
|
2899
|
+
showRuleFlag: 1,
|
2900
|
+
showRuleEnabled: 1,
|
2901
|
+
showRules: []
|
2670
2902
|
},
|
2671
2903
|
},
|
2672
2904
|
{
|
@@ -2692,11 +2924,16 @@ export const advancedFields = [
|
|
2692
2924
|
entityTableDesc: null,
|
2693
2925
|
onCreated: "",
|
2694
2926
|
onMounted: "",
|
2927
|
+
onAfterConfirmFile: "",
|
2695
2928
|
wfFlag: 1,
|
2696
2929
|
wfEdit: false,
|
2697
2930
|
enabledByWf: false,
|
2698
2931
|
hiddenByWf: false,
|
2699
|
-
wfConfigData: []
|
2932
|
+
wfConfigData: [],
|
2933
|
+
|
2934
|
+
showRuleFlag: 1,
|
2935
|
+
showRuleEnabled: 1,
|
2936
|
+
showRules: []
|
2700
2937
|
}
|
2701
2938
|
},
|
2702
2939
|
{
|
@@ -2721,6 +2958,10 @@ export const advancedFields = [
|
|
2721
2958
|
statusParam: [],
|
2722
2959
|
onCreated: "",
|
2723
2960
|
onMounted: "",
|
2961
|
+
|
2962
|
+
showRuleFlag: 1,
|
2963
|
+
showRuleEnabled: 1,
|
2964
|
+
showRules: []
|
2724
2965
|
}
|
2725
2966
|
},
|
2726
2967
|
{
|
@@ -2736,7 +2977,7 @@ export const advancedFields = [
|
|
2736
2977
|
hidden: false,
|
2737
2978
|
customClass: '', //自定义css类名
|
2738
2979
|
space: '5',
|
2739
|
-
censusClass:'form-count',
|
2980
|
+
censusClass: 'form-count',
|
2740
2981
|
censusItems: [
|
2741
2982
|
{
|
2742
2983
|
number: "1002",
|
@@ -2765,6 +3006,10 @@ export const advancedFields = [
|
|
2765
3006
|
formScriptParam: null,
|
2766
3007
|
onCreated: "",
|
2767
3008
|
onMounted: "",
|
3009
|
+
|
3010
|
+
showRuleFlag: 1,
|
3011
|
+
showRuleEnabled: 1,
|
3012
|
+
showRules: []
|
2768
3013
|
}
|
2769
3014
|
},
|
2770
3015
|
{
|
@@ -2796,7 +3041,11 @@ export const advancedFields = [
|
|
2796
3041
|
wfEdit: false,
|
2797
3042
|
enabledByWf: false,
|
2798
3043
|
hiddenByWf: false,
|
2799
|
-
wfConfigData: []
|
3044
|
+
wfConfigData: [],
|
3045
|
+
|
3046
|
+
showRuleFlag: 1,
|
3047
|
+
showRuleEnabled: 1,
|
3048
|
+
showRules: []
|
2800
3049
|
}
|
2801
3050
|
},
|
2802
3051
|
{
|
@@ -2820,6 +3069,10 @@ export const advancedFields = [
|
|
2820
3069
|
formScriptParam: null,
|
2821
3070
|
onCreated: "this.loadDataDefaultHandle()",
|
2822
3071
|
onMounted: "",
|
3072
|
+
|
3073
|
+
showRuleFlag: 1,
|
3074
|
+
showRuleEnabled: 1,
|
3075
|
+
showRules: []
|
2823
3076
|
}
|
2824
3077
|
},
|
2825
3078
|
]
|