cloud-web-corejs 1.0.67 → 1.0.69
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/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 +49 -8
- package/src/components/xform/form-designer/form-widget/field-widget/mixins/echart-category-mixin.js +61 -88
- package/src/components/xform/form-designer/form-widget/field-widget/mixins/echart-pie-mixin.js +13 -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 +185 -69
- package/src/components/xform/form-designer/setting-panel/property-editor/field-echart/echart-category-editor.vue +188 -86
- 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 +330 -37
- package/src/store/modules/permission.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
@@ -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',
|
@@ -1826,10 +1999,11 @@ export const advancedFields = [
|
|
1826
1999
|
color: "",
|
1827
2000
|
fontWeight: "normal"
|
1828
2001
|
},
|
1829
|
-
data: [
|
1830
|
-
|
1831
|
-
|
1832
|
-
|
2002
|
+
data: [
|
2003
|
+
{
|
2004
|
+
value: 1048,
|
2005
|
+
name: 'Search Engine'
|
2006
|
+
},
|
1833
2007
|
{
|
1834
2008
|
value: 735,
|
1835
2009
|
name: 'Direct'
|
@@ -1849,11 +2023,17 @@ export const advancedFields = [
|
|
1849
2023
|
],
|
1850
2024
|
}]
|
1851
2025
|
},
|
2026
|
+
echartConfig: '',
|
1852
2027
|
formScriptEnabled: true,
|
1853
2028
|
formScriptCode: "",
|
1854
2029
|
formScriptParam: null,
|
2030
|
+
onClick: "",
|
1855
2031
|
onCreated: "",
|
1856
2032
|
onMounted: "this.loadDataDefaultHandle()",
|
2033
|
+
|
2034
|
+
showRuleFlag: 1,
|
2035
|
+
showRuleEnabled: 1,
|
2036
|
+
showRules: []
|
1857
2037
|
}
|
1858
2038
|
},
|
1859
2039
|
{
|
@@ -1868,6 +2048,7 @@ export const advancedFields = [
|
|
1868
2048
|
echarBarOption: {
|
1869
2049
|
backgroundColor: "#fff",
|
1870
2050
|
color: ["#5BC1D7", "#FF8A3D", "#56C271", "#694ED6", "#C033A1", "#FFCC10"],
|
2051
|
+
colors: [],
|
1871
2052
|
title: {
|
1872
2053
|
show: true,
|
1873
2054
|
top: '5px',
|
@@ -2014,11 +2195,17 @@ export const advancedFields = [
|
|
2014
2195
|
|
2015
2196
|
}]
|
2016
2197
|
},
|
2198
|
+
echartConfig: '',
|
2017
2199
|
formScriptEnabled: true,
|
2018
2200
|
formScriptCode: "",
|
2019
2201
|
formScriptParam: null,
|
2202
|
+
onClick: "",
|
2020
2203
|
onCreated: "",
|
2021
2204
|
onMounted: "this.loadDataDefaultHandle()",
|
2205
|
+
|
2206
|
+
showRuleFlag: 1,
|
2207
|
+
showRuleEnabled: 1,
|
2208
|
+
showRules: []
|
2022
2209
|
}
|
2023
2210
|
},
|
2024
2211
|
{
|
@@ -2034,6 +2221,7 @@ export const advancedFields = [
|
|
2034
2221
|
echarCategoryOption: {
|
2035
2222
|
backgroundColor: "#fff",
|
2036
2223
|
color: ["#5BC1D7", "#FF8A3D", "#56C271", "#694ED6", "#C033A1", "#FFCC10"],
|
2224
|
+
colors: [],
|
2037
2225
|
title: {
|
2038
2226
|
show: true,
|
2039
2227
|
top: '5px',
|
@@ -2144,6 +2332,23 @@ export const advancedFields = [
|
|
2144
2332
|
shadowBlur: 4,
|
2145
2333
|
shadowOffsetY: 6
|
2146
2334
|
},
|
2335
|
+
itemStyle: {
|
2336
|
+
color: {
|
2337
|
+
type: 'linear',
|
2338
|
+
x: 0.5,
|
2339
|
+
y: 0.5,
|
2340
|
+
r: 0.5,
|
2341
|
+
colorStops: [{
|
2342
|
+
offset: 0, color: '#08C084' // 0% 处的颜色
|
2343
|
+
}, {
|
2344
|
+
offset: 1, color: '#97EACE' // 100% 处的颜色
|
2345
|
+
}],
|
2346
|
+
},
|
2347
|
+
cap: 'round',
|
2348
|
+
shadowColor: '#08C08450',
|
2349
|
+
shadowBlur: 4,
|
2350
|
+
shadowOffsetY: 6
|
2351
|
+
},
|
2147
2352
|
emphasis: {
|
2148
2353
|
scale: 1,
|
2149
2354
|
focus: 'series'
|
@@ -2178,6 +2383,23 @@ export const advancedFields = [
|
|
2178
2383
|
shadowBlur: 4,
|
2179
2384
|
shadowOffsetY: 6
|
2180
2385
|
},
|
2386
|
+
itemStyle: {
|
2387
|
+
color: {
|
2388
|
+
type: 'linear',
|
2389
|
+
x: 0.5,
|
2390
|
+
y: 0.5,
|
2391
|
+
r: 0.5,
|
2392
|
+
colorStops: [{
|
2393
|
+
offset: 0, color: '#FF6116' // 0% 处的颜色
|
2394
|
+
}, {
|
2395
|
+
offset: 1, color: '#F9A980' // 100% 处的颜色
|
2396
|
+
}],
|
2397
|
+
},
|
2398
|
+
cap: 'round',
|
2399
|
+
shadowColor: '#FF611650',
|
2400
|
+
shadowBlur: 4,
|
2401
|
+
shadowOffsetY: 6
|
2402
|
+
},
|
2181
2403
|
emphasis: {
|
2182
2404
|
scale: 1,
|
2183
2405
|
focus: 'series'
|
@@ -2187,11 +2409,17 @@ export const advancedFields = [
|
|
2187
2409
|
}]
|
2188
2410
|
|
2189
2411
|
},
|
2412
|
+
echartConfig: '',
|
2190
2413
|
formScriptEnabled: true,
|
2191
2414
|
formScriptCode: "",
|
2192
2415
|
formScriptParam: null,
|
2416
|
+
onClick: "",
|
2193
2417
|
onCreated: "",
|
2194
2418
|
onMounted: "this.loadDataDefaultHandle()",
|
2419
|
+
|
2420
|
+
showRuleFlag: 1,
|
2421
|
+
showRuleEnabled: 1,
|
2422
|
+
showRules: []
|
2195
2423
|
}
|
2196
2424
|
},
|
2197
2425
|
{
|
@@ -2323,6 +2551,7 @@ export const advancedFields = [
|
|
2323
2551
|
entityTableDesc: null,
|
2324
2552
|
onCreated: "this.loadDataDefaultHandle();",
|
2325
2553
|
onMounted: "",
|
2554
|
+
onAfterConfirmFile: "",
|
2326
2555
|
vabUpload: 1,
|
2327
2556
|
formScriptEnabled: true,
|
2328
2557
|
formScriptCode: "getList",
|
@@ -2331,7 +2560,11 @@ export const advancedFields = [
|
|
2331
2560
|
wfEdit: false,
|
2332
2561
|
enabledByWf: false,
|
2333
2562
|
hiddenByWf: false,
|
2334
|
-
wfConfigData: []
|
2563
|
+
wfConfigData: [],
|
2564
|
+
|
2565
|
+
showRuleFlag: 1,
|
2566
|
+
showRuleEnabled: 1,
|
2567
|
+
showRules: []
|
2335
2568
|
}
|
2336
2569
|
},
|
2337
2570
|
{
|
@@ -2382,7 +2615,11 @@ export const advancedFields = [
|
|
2382
2615
|
hiddenByWf: false,
|
2383
2616
|
wfConfigData: [],
|
2384
2617
|
valueField: null,
|
2385
|
-
multipleChoices: false
|
2618
|
+
multipleChoices: false,
|
2619
|
+
|
2620
|
+
showRuleFlag: 1,
|
2621
|
+
showRuleEnabled: 1,
|
2622
|
+
showRules: []
|
2386
2623
|
|
2387
2624
|
}
|
2388
2625
|
},
|
@@ -2425,7 +2662,11 @@ export const advancedFields = [
|
|
2425
2662
|
wfEdit: false,
|
2426
2663
|
enabledByWf: false,
|
2427
2664
|
hiddenByWf: false,
|
2428
|
-
wfConfigData: []
|
2665
|
+
wfConfigData: [],
|
2666
|
+
|
2667
|
+
showRuleFlag: 1,
|
2668
|
+
showRuleEnabled: 1,
|
2669
|
+
showRules: []
|
2429
2670
|
}
|
2430
2671
|
},
|
2431
2672
|
{
|
@@ -2462,7 +2703,11 @@ export const advancedFields = [
|
|
2462
2703
|
wfEdit: false,
|
2463
2704
|
enabledByWf: false,
|
2464
2705
|
hiddenByWf: true,
|
2465
|
-
wfConfigData: []
|
2706
|
+
wfConfigData: [],
|
2707
|
+
|
2708
|
+
showRuleFlag: 1,
|
2709
|
+
showRuleEnabled: 1,
|
2710
|
+
showRules: []
|
2466
2711
|
|
2467
2712
|
},
|
2468
2713
|
},
|
@@ -2498,7 +2743,11 @@ export const advancedFields = [
|
|
2498
2743
|
wfEdit: false,
|
2499
2744
|
enabledByWf: true,
|
2500
2745
|
hiddenByWf: false,
|
2501
|
-
wfConfigData: []
|
2746
|
+
wfConfigData: [],
|
2747
|
+
|
2748
|
+
showRuleFlag: 1,
|
2749
|
+
showRuleEnabled: 1,
|
2750
|
+
showRules: []
|
2502
2751
|
},
|
2503
2752
|
},
|
2504
2753
|
{
|
@@ -2516,13 +2765,19 @@ export const advancedFields = [
|
|
2516
2765
|
exportFileName: '导出',
|
2517
2766
|
tableRef: '',
|
2518
2767
|
tableExportParam: "",
|
2768
|
+
showImageAtTable: false,
|
2769
|
+
|
2519
2770
|
onCreated: "",
|
2520
2771
|
onMounted: "",
|
2521
2772
|
wfFlag: 1,
|
2522
2773
|
wfEdit: false,
|
2523
2774
|
enabledByWf: false,
|
2524
2775
|
hiddenByWf: false,
|
2525
|
-
wfConfigData: []
|
2776
|
+
wfConfigData: [],
|
2777
|
+
|
2778
|
+
showRuleFlag: 1,
|
2779
|
+
showRuleEnabled: 1,
|
2780
|
+
showRules: []
|
2526
2781
|
|
2527
2782
|
}
|
2528
2783
|
},
|
@@ -2557,7 +2812,11 @@ export const advancedFields = [
|
|
2557
2812
|
wfEdit: false,
|
2558
2813
|
enabledByWf: false,
|
2559
2814
|
hiddenByWf: false,
|
2560
|
-
wfConfigData: []
|
2815
|
+
wfConfigData: [],
|
2816
|
+
|
2817
|
+
showRuleFlag: 1,
|
2818
|
+
showRuleEnabled: 1,
|
2819
|
+
showRules: []
|
2561
2820
|
},
|
2562
2821
|
},
|
2563
2822
|
{
|
@@ -2594,7 +2853,11 @@ export const advancedFields = [
|
|
2594
2853
|
wfEdit: false,
|
2595
2854
|
enabledByWf: false,
|
2596
2855
|
hiddenByWf: true,
|
2597
|
-
wfConfigData: []
|
2856
|
+
wfConfigData: [],
|
2857
|
+
|
2858
|
+
showRuleFlag: 1,
|
2859
|
+
showRuleEnabled: 1,
|
2860
|
+
showRules: []
|
2598
2861
|
|
2599
2862
|
},
|
2600
2863
|
},
|
@@ -2608,6 +2871,7 @@ export const advancedFields = [
|
|
2608
2871
|
label: "导入",
|
2609
2872
|
columnWidth: "200px",
|
2610
2873
|
size: "",
|
2874
|
+
importFileLimitSize: 200,
|
2611
2875
|
// displayStyle: "block",
|
2612
2876
|
disabled: !1,
|
2613
2877
|
hidden: !1,
|
@@ -2632,7 +2896,11 @@ export const advancedFields = [
|
|
2632
2896
|
importAttachCode: '',
|
2633
2897
|
importScriptCode: '',
|
2634
2898
|
onBeforeImport: '',
|
2635
|
-
enabledImportPreHandle: false
|
2899
|
+
enabledImportPreHandle: false,
|
2900
|
+
|
2901
|
+
showRuleFlag: 1,
|
2902
|
+
showRuleEnabled: 1,
|
2903
|
+
showRules: []
|
2636
2904
|
},
|
2637
2905
|
},
|
2638
2906
|
{
|
@@ -2666,7 +2934,11 @@ export const advancedFields = [
|
|
2666
2934
|
hiddenByWf: false,
|
2667
2935
|
wfConfigData: [],
|
2668
2936
|
printTableRef: "",
|
2669
|
-
printItems: []
|
2937
|
+
printItems: [],
|
2938
|
+
|
2939
|
+
showRuleFlag: 1,
|
2940
|
+
showRuleEnabled: 1,
|
2941
|
+
showRules: []
|
2670
2942
|
},
|
2671
2943
|
},
|
2672
2944
|
{
|
@@ -2692,11 +2964,16 @@ export const advancedFields = [
|
|
2692
2964
|
entityTableDesc: null,
|
2693
2965
|
onCreated: "",
|
2694
2966
|
onMounted: "",
|
2967
|
+
onAfterConfirmFile: "",
|
2695
2968
|
wfFlag: 1,
|
2696
2969
|
wfEdit: false,
|
2697
2970
|
enabledByWf: false,
|
2698
2971
|
hiddenByWf: false,
|
2699
|
-
wfConfigData: []
|
2972
|
+
wfConfigData: [],
|
2973
|
+
|
2974
|
+
showRuleFlag: 1,
|
2975
|
+
showRuleEnabled: 1,
|
2976
|
+
showRules: []
|
2700
2977
|
}
|
2701
2978
|
},
|
2702
2979
|
{
|
@@ -2721,6 +2998,10 @@ export const advancedFields = [
|
|
2721
2998
|
statusParam: [],
|
2722
2999
|
onCreated: "",
|
2723
3000
|
onMounted: "",
|
3001
|
+
|
3002
|
+
showRuleFlag: 1,
|
3003
|
+
showRuleEnabled: 1,
|
3004
|
+
showRules: []
|
2724
3005
|
}
|
2725
3006
|
},
|
2726
3007
|
{
|
@@ -2736,7 +3017,7 @@ export const advancedFields = [
|
|
2736
3017
|
hidden: false,
|
2737
3018
|
customClass: '', //自定义css类名
|
2738
3019
|
space: '5',
|
2739
|
-
censusClass:'form-count',
|
3020
|
+
censusClass: 'form-count',
|
2740
3021
|
censusItems: [
|
2741
3022
|
{
|
2742
3023
|
number: "1002",
|
@@ -2765,6 +3046,10 @@ export const advancedFields = [
|
|
2765
3046
|
formScriptParam: null,
|
2766
3047
|
onCreated: "",
|
2767
3048
|
onMounted: "",
|
3049
|
+
|
3050
|
+
showRuleFlag: 1,
|
3051
|
+
showRuleEnabled: 1,
|
3052
|
+
showRules: []
|
2768
3053
|
}
|
2769
3054
|
},
|
2770
3055
|
{
|
@@ -2796,7 +3081,11 @@ export const advancedFields = [
|
|
2796
3081
|
wfEdit: false,
|
2797
3082
|
enabledByWf: false,
|
2798
3083
|
hiddenByWf: false,
|
2799
|
-
wfConfigData: []
|
3084
|
+
wfConfigData: [],
|
3085
|
+
|
3086
|
+
showRuleFlag: 1,
|
3087
|
+
showRuleEnabled: 1,
|
3088
|
+
showRules: []
|
2800
3089
|
}
|
2801
3090
|
},
|
2802
3091
|
{
|
@@ -2820,6 +3109,10 @@ export const advancedFields = [
|
|
2820
3109
|
formScriptParam: null,
|
2821
3110
|
onCreated: "this.loadDataDefaultHandle()",
|
2822
3111
|
onMounted: "",
|
3112
|
+
|
3113
|
+
showRuleFlag: 1,
|
3114
|
+
showRuleEnabled: 1,
|
3115
|
+
showRules: []
|
2823
3116
|
}
|
2824
3117
|
},
|
2825
3118
|
]
|