cloud-web-corejs 1.0.54-dev.16 → 1.0.54-dev.160
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 +9 -3
- package/src/components/Qrcode/fileParse.vue +0 -1
- package/src/components/VabUpload/index.vue +2 -1
- package/src/components/VabUpload/mixins.js +1 -1
- package/src/components/VabUpload/view.vue +4 -3
- package/src/components/advancedSearchDialog/mixins.js +1 -1
- package/src/components/baseAttachment/index.vue +22 -13
- package/src/components/baseAttachment/mixins.js +248 -1
- package/src/components/excelExport/exportFieldDialog.vue +16 -6
- package/src/components/excelExport/index.js +2 -1
- package/src/components/excelExport/index.vue +8 -6
- package/src/components/excelExport/mixins.js +1 -2
- package/src/components/excelImport/index.vue +1 -0
- package/src/components/excelImport/mixins.js +1 -1
- package/src/components/fileLibrary/fileObjAuthDialog.vue +1 -1
- package/src/components/fileLibrary/fileObjAuthEditDialog.vue +7 -1
- package/src/components/fileLibrary/fileObjNotifyEdit.vue +90 -68
- package/src/components/fileLibrary/filterDialog.vue +383 -0
- package/src/components/fileLibrary/index.vue +23 -24
- package/src/components/fileLibrary/mixins/categoryMoveDialogMixins.js +1 -1
- package/src/components/fileLibrary/mixins/fileCategoryDialogMixins.js +1 -1
- package/src/components/fileLibrary/mixins/fileHistoryDialogMixins.js +2 -2
- package/src/components/fileLibrary/mixins/fileObjAuthDialogMixin.js +337 -207
- package/src/components/fileLibrary/mixins/fileObjAuthEditDialogMixin.js +33 -26
- package/src/components/fileLibrary/mixins/fileObjAuthEditMixin.js +5 -5
- package/src/components/fileLibrary/mixins/indexMixins.js +77 -27
- package/src/components/fileLibrary/mixins/propertiesDialogMixins.js +63 -3
- package/src/components/fileLibrary/mixins/recycleBinDialogMixins.js +1 -1
- package/src/components/fileLibrary/propertiesDialog.vue +18 -0
- package/src/components/fileLibrary/shareDialog.vue +1 -1
- package/src/components/jsonImport/mixins.js +1 -1
- package/src/components/onlineTalk/index.vue +327 -5
- package/src/components/onlineTalk/mixins.js +1 -1
- package/src/components/table/CellSlot.vue +1 -0
- package/src/components/table/index.js +12 -10
- package/src/components/table/tableForm.vue +99 -63
- package/src/components/table/tableFormMixin.js +1 -1
- package/src/components/table/vxeFilter/mixin.js +1 -1
- package/src/components/vb-tabs/x-tabs.vue +3 -2
- package/src/components/wf/wf.js +1 -1
- package/src/components/wf/wfStartDialog.vue +1 -1
- package/src/components/wf/wfUtil.js +1 -1
- package/src/components/xform/form-designer/designer.js +1 -1
- package/src/components/xform/form-designer/form-widget/dialog/formDialog.vue +16 -4
- package/src/components/xform/form-designer/form-widget/dialog/formDrawer.vue +5 -1
- package/src/components/xform/form-designer/form-widget/dialog/importDialog.vue +35 -5
- package/src/components/xform/form-designer/form-widget/dialog/importDialogMixin.js +3 -1
- package/src/components/xform/form-designer/form-widget/dialog/searchFormDialog.vue +23 -7
- package/src/components/xform/form-designer/form-widget/field-widget/baseAttachment-widget.vue +31 -5
- package/src/components/xform/form-designer/form-widget/field-widget/checkbox-widget.vue +10 -5
- 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 +1245 -16
- 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 -2
- 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/project-tag-widget.vue +67 -3
- package/src/components/xform/form-designer/form-widget/field-widget/radio-widget.vue +9 -4
- package/src/components/xform/form-designer/form-widget/field-widget/select-widget.vue +8 -2
- package/src/components/xform/form-designer/form-widget/field-widget/table-export-button-widget.vue +6 -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/time-range-widget.vue +2 -2
- package/src/components/xform/form-designer/form-widget/field-widget/vabUpload-widget.vue +80 -0
- package/src/components/xform/form-designer/indexMixin.js +784 -1
- package/src/components/xform/form-designer/setting-panel/form-setting.vue +67 -36
- package/src/components/xform/form-designer/setting-panel/indexMixin.js +322 -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/commonAttributeEnabled-editor.vue +41 -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 +1051 -1042
- package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/onCheckboxChange-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/table-column-dialog.vue +643 -300
- 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/event-handler/eventMixin.js +2 -2
- package/src/components/xform/form-designer/setting-panel/property-editor/event-handler/onAfterConfirmFile-editor.vue +32 -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-button/search-dialog-event-editor.vue +27 -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/field-import-button/import-button-editor.vue +17 -1
- 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-table-export-button/table-export-button-editor.vue +26 -7
- package/src/components/xform/form-designer/setting-panel/property-editor/formScriptEnabled-editor.vue +42 -4
- 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/placeholder-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/project-tag-editor.vue +177 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/required-editor.vue +22 -18
- package/src/components/xform/form-designer/setting-panel/property-editor/showRuleFlag-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/property-editor/wfFlag-editor.vue +242 -27
- package/src/components/xform/form-designer/setting-panel/propertyRegister.js +5 -0
- package/src/components/xform/form-designer/toolbar-panel/index.vue +4 -7
- package/src/components/xform/form-designer/toolbar-panel/indexMixin.js +1 -1
- package/src/components/xform/form-designer/widget-panel/indexMixin.js +276 -1
- package/src/components/xform/form-designer/widget-panel/widgetsConfig.js +225 -252
- package/src/components/xform/form-render/container-item/containerItemMixin.js +330 -1
- package/src/components/xform/form-render/container-item/data-table-item.vue +33 -11
- package/src/components/xform/form-render/container-item/data-table-mixin.js +2132 -18
- 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 +1802 -1
- package/src/components/xform/lang/zh-CN.js +1 -1
- package/src/components/xform/mixins/defaultHandle.js +1 -1
- package/src/components/xform/mixins/scriptHttp.js +164 -1
- package/src/components/xform/utils/emitter.js +4 -4
- package/src/components/xform/utils/util.js +1631 -1
- package/src/layout/components/Sidebar/default.vue +50 -6
- package/src/layout/components/TagsView/index.vue +0 -1
- package/src/layout/components/extractedCode/createDialog.vue +92 -0
- package/src/layout/components/extractedCode/queryDialog.vue +96 -0
- package/src/layout/components/extractedCode/viewDialog.vue +192 -0
- package/src/mixins/selectDialog/index.js +1 -1
- package/src/router/modules/customer.js +15 -0
- package/src/store/config/index.js +1 -1
- package/src/store/modules/permission.js +1 -1
- package/src/store/modules/user.js +1 -1
- package/src/utils/index.js +4 -2
- package/src/utils/pddLog.js +103 -0
- package/src/utils/request.js +28 -28
- package/src/utils/vab.js +19 -27
- package/src/views/bd/setting/form_import_log/edit.vue +127 -0
- package/src/views/bd/setting/form_import_log/list.vue +205 -0
- package/src/views/bd/setting/form_script/edit1.vue +1 -1
- package/src/views/bd/setting/form_script/mixins/edit.js +3 -1
- package/src/views/bd/setting/form_script/mixins/edit1.js +1 -1
- package/src/views/bd/setting/form_script/mixins/list.js +1 -1
- package/src/views/bd/setting/form_script/mixins/list1.js +14 -14
- package/src/views/bd/setting/form_template/batchWfObjConfigDialog.vue +105 -0
- package/src/views/bd/setting/form_template/edit.vue +9 -1
- package/src/views/bd/setting/form_template/editWfObjConfigDialog.vue +2 -2
- package/src/views/bd/setting/form_template/mixins/batchWfObjConfigDialog.js +4 -0
- package/src/views/bd/setting/form_template/mixins/edit.js +1 -1
- package/src/views/bd/setting/form_template/mixins/list.js +25 -22
- 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/bd/setting/menu_kind/mixins/list.js +1 -1
- package/src/views/bd/setting/table_model/edit.vue +830 -426
- package/src/views/bd/setting/table_model/mixins/edit.js +1057 -13
- package/src/views/bd/setting/table_model/mixins/list.js +14 -14
- package/src/views/user/area/dialog.vue +21 -9
- package/src/views/user/bill_setting/edit.vue +1 -1
- package/src/views/user/bill_setting/list.vue +1 -1
- package/src/views/user/common_attribute/itemEdit.vue +2 -2
- package/src/views/user/common_attribute/list.vue +1 -1
- package/src/views/user/common_script/edit.vue +1 -1
- package/src/views/user/common_script/list.vue +1 -1
- package/src/views/user/company_info/dialog.vue +164 -154
- package/src/views/user/company_info/edit.vue +1 -1
- package/src/views/user/extend_datasource/dialog.vue +1 -0
- package/src/views/user/extend_datasource/edit.vue +3 -0
- package/src/views/user/extend_datasource/list.vue +2 -1
- package/src/views/user/file_type/edit.vue +30 -1
- package/src/views/user/file_type/list.vue +28 -0
- package/src/views/user/form/vform/designer.vue +772 -749
- package/src/views/user/form/view/list.vue +27 -9
- package/src/views/user/groups/edit.vue +2 -0
- package/src/views/user/groups/list.vue +1 -0
- package/src/views/user/home/default.vue +1007 -979
- package/src/views/user/home/dev.vue +29 -0
- package/src/views/user/home/index.vue +16 -6
- package/src/views/user/login/default.vue +4 -2
- package/src/views/user/login/index2.vue +131 -0
- package/src/views/user/notify_message/dialog.vue +1 -1
- package/src/views/user/notify_template/edit.vue +188 -187
- package/src/views/user/notify_template/edit2.vue +176 -0
- package/src/views/user/notify_template/list.vue +4 -1
- package/src/views/user/notify_template/list2.vue +190 -0
- package/src/views/user/outLink/form_view.vue +39 -12
- package/src/views/user/outLink/index.vue +17 -0
- package/src/views/user/outLink/view.vue +39 -13
- package/src/views/user/position/list.vue +4 -4
- package/src/views/user/push_setting/list.vue +2 -2
- package/src/views/user/role/dialog.vue +1 -1
- package/src/views/user/role/list.vue +4 -4
- package/src/views/user/sale_org/dialog.vue +1 -1
- package/src/views/user/user/dialog.vue +1 -1
- package/src/views/user/user/edit.vue +9 -9
- package/src/views/user/user/form_edit.vue +63 -2
- package/src/views/user/user/form_info.vue +210 -0
- package/src/views/user/user/form_list.vue +1 -0
- package/src/views/user/user/list.vue +4 -4
- package/src/views/user/wf/wf_manage/list.vue +1 -1
- package/src/views/user/wf/wf_manage/wfContentDialog.vue +1 -1
- package/src/views/user/wf/wf_obj_config/list.vue +1 -13
- package/src/views/user/wf/wf_obj_config/wfBizDataSettingDialog.vue +2 -2
@@ -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: "",
|
@@ -13,7 +14,8 @@ export const containers = [
|
|
13
14
|
// colHeight: null,
|
14
15
|
width: '',
|
15
16
|
containerClass: '',
|
16
|
-
customClass: ""
|
17
|
+
customClass: "",
|
18
|
+
...defaultWfConfig,
|
17
19
|
}
|
18
20
|
},
|
19
21
|
{
|
@@ -21,13 +23,15 @@ export const containers = [
|
|
21
23
|
category: "container",
|
22
24
|
icon: "table",
|
23
25
|
commonFlag: !0,
|
26
|
+
columnFlag: true,
|
24
27
|
rows: [],
|
25
28
|
options: {
|
26
29
|
name: "",
|
27
30
|
hidden: !1,
|
28
31
|
customClass: "",
|
29
32
|
styleTableClass: '',
|
30
|
-
fullWidth: false
|
33
|
+
fullWidth: false,
|
34
|
+
...defaultWfConfig,
|
31
35
|
}
|
32
36
|
},
|
33
37
|
{
|
@@ -35,6 +39,7 @@ export const containers = [
|
|
35
39
|
category: "container",
|
36
40
|
icon: "tab",
|
37
41
|
commonFlag: !0,
|
42
|
+
columnFlag: true,
|
38
43
|
tabs: [],
|
39
44
|
options: {
|
40
45
|
name: "",
|
@@ -42,7 +47,8 @@ export const containers = [
|
|
42
47
|
height: '',
|
43
48
|
// isFullscreen: false,
|
44
49
|
tabClass: 'tab-boxCard tabCard-sty1',
|
45
|
-
customClass: ""
|
50
|
+
customClass: "",
|
51
|
+
...defaultWfConfig,
|
46
52
|
}
|
47
53
|
},
|
48
54
|
/* {
|
@@ -259,6 +265,7 @@ export const containers = [
|
|
259
265
|
formScriptEnabled: true,
|
260
266
|
formScriptCode: null,
|
261
267
|
formScriptParam: null,
|
268
|
+
formScriptSuccess: null,
|
262
269
|
formScriptCallback: null,
|
263
270
|
/*isLoadDataByAccess: false,
|
264
271
|
scriptEnabled: false,
|
@@ -277,6 +284,7 @@ export const containers = [
|
|
277
284
|
sortScriptCode: null,
|
278
285
|
importTemplateFile: null,
|
279
286
|
|
287
|
+
...defaultWfConfig,
|
280
288
|
showRuleFlag: 1,
|
281
289
|
showRuleEnabled: 1,
|
282
290
|
showRules: [],
|
@@ -748,7 +756,6 @@ export const containers = [
|
|
748
756
|
}
|
749
757
|
]
|
750
758
|
|
751
|
-
|
752
759
|
export const defaultSearchDialogConfig = {
|
753
760
|
formCode: null,
|
754
761
|
tableEnabled: false,
|
@@ -757,7 +764,31 @@ export const defaultSearchDialogConfig = {
|
|
757
764
|
tableRef: null,
|
758
765
|
tableUniqueKey: null,
|
759
766
|
tableData: [],
|
760
|
-
multipleChoices: true
|
767
|
+
multipleChoices: true,
|
768
|
+
confirmCallback: null
|
769
|
+
}
|
770
|
+
|
771
|
+
export const defaultWfConfig = {
|
772
|
+
wfFlag: 1,
|
773
|
+
wfEdit: false,
|
774
|
+
enabledByWf: false,
|
775
|
+
hiddenByWf: false,
|
776
|
+
wfConfigData: [],
|
777
|
+
wfModifyDataEnabled: false,
|
778
|
+
wfModifyDataConfig: [],
|
779
|
+
}
|
780
|
+
|
781
|
+
export const defaultTextFlagConfig = {
|
782
|
+
textFlag: 1,
|
783
|
+
showTextEnabled: false,
|
784
|
+
showEncryptTextEnabled: false,
|
785
|
+
userTextRuleEnabled: false,
|
786
|
+
userTextRuleConfig: [],
|
787
|
+
textRule1: true,
|
788
|
+
textRule2: false,
|
789
|
+
textRule2Number: null,
|
790
|
+
textRule3: false,
|
791
|
+
textRule3Number: null
|
761
792
|
}
|
762
793
|
|
763
794
|
export const basicFields = [
|
@@ -765,6 +796,7 @@ export const basicFields = [
|
|
765
796
|
type: "input",
|
766
797
|
icon: "text-field",
|
767
798
|
formItemFlag: !0,
|
799
|
+
columnFlag: true,
|
768
800
|
tableField: null,
|
769
801
|
options: {
|
770
802
|
name: "",
|
@@ -813,27 +845,20 @@ export const basicFields = [
|
|
813
845
|
onAppendButtonClick: "",
|
814
846
|
widgetWidth: "",
|
815
847
|
accessType: "1",
|
816
|
-
|
817
|
-
wfEdit: false,
|
818
|
-
enabledByWf: false,
|
819
|
-
hiddenByWf: false,
|
820
|
-
wfConfigData: [],
|
848
|
+
...defaultWfConfig,
|
821
849
|
|
822
850
|
showRuleFlag: 1,
|
823
851
|
showRuleEnabled: 1,
|
824
852
|
showRules: [],
|
825
|
-
|
826
|
-
|
827
|
-
textRule2: false,
|
828
|
-
textRule3: false,
|
829
|
-
textRule2Number: null,
|
830
|
-
textRule3Number: null
|
853
|
+
|
854
|
+
...defaultTextFlagConfig
|
831
855
|
}
|
832
856
|
},
|
833
857
|
{
|
834
858
|
type: "input-batch",
|
835
859
|
icon: "input-batch",
|
836
860
|
formItemFlag: !0,
|
861
|
+
columnFlag: true,
|
837
862
|
tableField: null,
|
838
863
|
options: {
|
839
864
|
name: "",
|
@@ -881,21 +906,12 @@ export const basicFields = [
|
|
881
906
|
onAppendButtonClick: "",
|
882
907
|
widgetWidth: "",
|
883
908
|
accessType: "1",
|
884
|
-
|
885
|
-
wfEdit: false,
|
886
|
-
enabledByWf: false,
|
887
|
-
hiddenByWf: false,
|
888
|
-
wfConfigData: [],
|
909
|
+
...defaultWfConfig,
|
889
910
|
|
890
911
|
showRuleFlag: 1,
|
891
912
|
showRuleEnabled: 1,
|
892
913
|
showRules: [],
|
893
|
-
|
894
|
-
textRule1: false,
|
895
|
-
textRule2: false,
|
896
|
-
textRule3: false,
|
897
|
-
textRule2Number: null,
|
898
|
-
textRule3Number: null
|
914
|
+
|
899
915
|
|
900
916
|
}
|
901
917
|
},
|
@@ -903,6 +919,7 @@ export const basicFields = [
|
|
903
919
|
type: "textarea",
|
904
920
|
icon: "textarea-field",
|
905
921
|
formItemFlag: !0,
|
922
|
+
columnFlag: true,
|
906
923
|
tableField: null,
|
907
924
|
options: {
|
908
925
|
name: "",
|
@@ -941,27 +958,20 @@ export const basicFields = [
|
|
941
958
|
onBlur: "",
|
942
959
|
onValidate: "",
|
943
960
|
accessType: "1",
|
944
|
-
|
945
|
-
wfEdit: false,
|
946
|
-
enabledByWf: false,
|
947
|
-
hiddenByWf: false,
|
948
|
-
wfConfigData: [],
|
961
|
+
...defaultWfConfig,
|
949
962
|
|
950
963
|
showRuleFlag: 1,
|
951
964
|
showRuleEnabled: 1,
|
952
965
|
showRules: [],
|
953
|
-
|
954
|
-
|
955
|
-
textRule2: false,
|
956
|
-
textRule3: false,
|
957
|
-
textRule2Number: null,
|
958
|
-
textRule3Number: null
|
966
|
+
|
967
|
+
...defaultTextFlagConfig
|
959
968
|
}
|
960
969
|
},
|
961
970
|
{
|
962
971
|
type: "number",
|
963
972
|
icon: "number-field",
|
964
973
|
formItemFlag: !0,
|
974
|
+
columnFlag: true,
|
965
975
|
tableField: null,
|
966
976
|
options: {
|
967
977
|
name: "",
|
@@ -984,8 +994,8 @@ export const basicFields = [
|
|
984
994
|
requiredHint: "",
|
985
995
|
validation: "",
|
986
996
|
validationHint: "",
|
987
|
-
|
988
|
-
|
997
|
+
formulaEnabled: !1,
|
998
|
+
formula: "",
|
989
999
|
customClass: "",
|
990
1000
|
labelIconClass: null,
|
991
1001
|
labelIconPosition: "rear",
|
@@ -1002,21 +1012,13 @@ export const basicFields = [
|
|
1002
1012
|
onBlur: "",
|
1003
1013
|
onValidate: "",
|
1004
1014
|
accessType: "1",
|
1005
|
-
|
1006
|
-
wfEdit: false,
|
1007
|
-
enabledByWf: false,
|
1008
|
-
hiddenByWf: false,
|
1009
|
-
wfConfigData: [],
|
1015
|
+
...defaultWfConfig,
|
1010
1016
|
|
1011
1017
|
showRuleFlag: 1,
|
1012
1018
|
showRuleEnabled: 1,
|
1013
1019
|
showRules: [],
|
1014
|
-
|
1015
|
-
|
1016
|
-
textRule2: false,
|
1017
|
-
textRule3: false,
|
1018
|
-
textRule2Number: null,
|
1019
|
-
textRule3Number: null
|
1020
|
+
|
1021
|
+
...defaultTextFlagConfig
|
1020
1022
|
|
1021
1023
|
}
|
1022
1024
|
},
|
@@ -1024,6 +1026,7 @@ export const basicFields = [
|
|
1024
1026
|
type: "radio",
|
1025
1027
|
icon: "radio-field",
|
1026
1028
|
formItemFlag: !0,
|
1029
|
+
columnFlag: true,
|
1027
1030
|
tableField: null,
|
1028
1031
|
options: {
|
1029
1032
|
name: "",
|
@@ -1076,27 +1079,23 @@ export const basicFields = [
|
|
1076
1079
|
formScriptEnabled: false,
|
1077
1080
|
formScriptCode: "getList",
|
1078
1081
|
formScriptParam: null,
|
1079
|
-
|
1080
|
-
|
1081
|
-
|
1082
|
-
|
1083
|
-
|
1082
|
+
formScriptSuccess: null,
|
1083
|
+
...defaultWfConfig,
|
1084
|
+
|
1085
|
+
commonAttributeEnabled: false,
|
1086
|
+
commonAttributeCode: "",
|
1084
1087
|
|
1085
1088
|
showRuleFlag: 1,
|
1086
1089
|
showRuleEnabled: 1,
|
1087
1090
|
showRules: [],
|
1088
|
-
|
1089
|
-
textRule1: false,
|
1090
|
-
textRule2: false,
|
1091
|
-
textRule3: false,
|
1092
|
-
textRule2Number: null,
|
1093
|
-
textRule3Number: null
|
1091
|
+
|
1094
1092
|
}
|
1095
1093
|
},
|
1096
1094
|
{
|
1097
1095
|
type: "checkbox",
|
1098
1096
|
icon: "checkbox-field",
|
1099
1097
|
formItemFlag: !0,
|
1098
|
+
columnFlag: true,
|
1100
1099
|
tableField: null,
|
1101
1100
|
options: {
|
1102
1101
|
name: "",
|
@@ -1149,21 +1148,16 @@ export const basicFields = [
|
|
1149
1148
|
formScriptEnabled: false,
|
1150
1149
|
formScriptCode: "getList",
|
1151
1150
|
formScriptParam: null,
|
1152
|
-
|
1153
|
-
|
1154
|
-
|
1155
|
-
|
1156
|
-
|
1151
|
+
formScriptSuccess: null,
|
1152
|
+
...defaultWfConfig,
|
1153
|
+
|
1154
|
+
commonAttributeEnabled: false,
|
1155
|
+
commonAttributeCode: "",
|
1157
1156
|
|
1158
1157
|
showRuleFlag: 1,
|
1159
1158
|
showRuleEnabled: 1,
|
1160
1159
|
showRules: [],
|
1161
|
-
|
1162
|
-
textRule1: false,
|
1163
|
-
textRule2: false,
|
1164
|
-
textRule3: false,
|
1165
|
-
textRule2Number: null,
|
1166
|
-
textRule3Number: null
|
1160
|
+
|
1167
1161
|
|
1168
1162
|
}
|
1169
1163
|
},
|
@@ -1171,6 +1165,7 @@ export const basicFields = [
|
|
1171
1165
|
type: "select",
|
1172
1166
|
icon: "select-field",
|
1173
1167
|
formItemFlag: !0,
|
1168
|
+
columnFlag: true,
|
1174
1169
|
tableField: null,
|
1175
1170
|
options: {
|
1176
1171
|
name: "",
|
@@ -1233,27 +1228,22 @@ export const basicFields = [
|
|
1233
1228
|
formScriptEnabled: false,
|
1234
1229
|
formScriptCode: "getList",
|
1235
1230
|
formScriptParam: null,
|
1236
|
-
|
1237
|
-
|
1238
|
-
|
1239
|
-
|
1240
|
-
|
1231
|
+
formScriptSuccess: null,
|
1232
|
+
...defaultWfConfig,
|
1233
|
+
|
1234
|
+
commonAttributeEnabled: false,
|
1235
|
+
commonAttributeCode: "",
|
1241
1236
|
|
1242
1237
|
showRuleFlag: 1,
|
1243
1238
|
showRuleEnabled: 1,
|
1244
1239
|
showRules: [],
|
1245
|
-
textFlag: 1,
|
1246
|
-
textRule1: false,
|
1247
|
-
textRule2: false,
|
1248
|
-
textRule3: false,
|
1249
|
-
textRule2Number: null,
|
1250
|
-
textRule3Number: null
|
1251
1240
|
}
|
1252
1241
|
},
|
1253
1242
|
{
|
1254
1243
|
type: "time",
|
1255
1244
|
icon: "time-field",
|
1256
1245
|
formItemFlag: !0,
|
1246
|
+
columnFlag: true,
|
1257
1247
|
tableField: null,
|
1258
1248
|
options: {
|
1259
1249
|
name: "",
|
@@ -1291,21 +1281,13 @@ export const basicFields = [
|
|
1291
1281
|
onBlur: "",
|
1292
1282
|
onValidate: "",
|
1293
1283
|
accessType: "1",
|
1294
|
-
|
1295
|
-
wfEdit: false,
|
1296
|
-
enabledByWf: false,
|
1297
|
-
hiddenByWf: false,
|
1298
|
-
wfConfigData: [],
|
1284
|
+
...defaultWfConfig,
|
1299
1285
|
|
1300
1286
|
showRuleFlag: 1,
|
1301
1287
|
showRuleEnabled: 1,
|
1302
1288
|
showRules: [],
|
1303
|
-
|
1304
|
-
|
1305
|
-
textRule2: false,
|
1306
|
-
textRule3: false,
|
1307
|
-
textRule2Number: null,
|
1308
|
-
textRule3Number: null
|
1289
|
+
|
1290
|
+
...defaultTextFlagConfig
|
1309
1291
|
|
1310
1292
|
}
|
1311
1293
|
},
|
@@ -1313,6 +1295,7 @@ export const basicFields = [
|
|
1313
1295
|
type: "time-range",
|
1314
1296
|
icon: "time-range-field",
|
1315
1297
|
formItemFlag: !0,
|
1298
|
+
columnFlag: true,
|
1316
1299
|
tableField: null,
|
1317
1300
|
options: {
|
1318
1301
|
name: "",
|
@@ -1350,21 +1333,12 @@ export const basicFields = [
|
|
1350
1333
|
onBlur: "",
|
1351
1334
|
onValidate: "",
|
1352
1335
|
accessType: "1",
|
1353
|
-
|
1354
|
-
wfEdit: false,
|
1355
|
-
enabledByWf: false,
|
1356
|
-
hiddenByWf: false,
|
1357
|
-
wfConfigData: [],
|
1336
|
+
...defaultWfConfig,
|
1358
1337
|
|
1359
1338
|
showRuleFlag: 1,
|
1360
1339
|
showRuleEnabled: 1,
|
1361
1340
|
showRules: [],
|
1362
|
-
|
1363
|
-
textRule1: false,
|
1364
|
-
textRule2: false,
|
1365
|
-
textRule3: false,
|
1366
|
-
textRule2Number: null,
|
1367
|
-
textRule3Number: null
|
1341
|
+
|
1368
1342
|
|
1369
1343
|
}
|
1370
1344
|
},
|
@@ -1372,6 +1346,7 @@ export const basicFields = [
|
|
1372
1346
|
type: "date",
|
1373
1347
|
icon: "date-field",
|
1374
1348
|
formItemFlag: !0,
|
1349
|
+
columnFlag: true,
|
1375
1350
|
tableField: null,
|
1376
1351
|
options: {
|
1377
1352
|
name: "",
|
@@ -1411,21 +1386,13 @@ export const basicFields = [
|
|
1411
1386
|
onBlur: "",
|
1412
1387
|
onValidate: "",
|
1413
1388
|
accessType: "1",
|
1414
|
-
|
1415
|
-
wfEdit: false,
|
1416
|
-
enabledByWf: false,
|
1417
|
-
hiddenByWf: false,
|
1418
|
-
wfConfigData: [],
|
1389
|
+
...defaultWfConfig,
|
1419
1390
|
|
1420
1391
|
showRuleFlag: 1,
|
1421
1392
|
showRuleEnabled: 1,
|
1422
1393
|
showRules: [],
|
1423
|
-
|
1424
|
-
|
1425
|
-
textRule2: false,
|
1426
|
-
textRule3: false,
|
1427
|
-
textRule2Number: null,
|
1428
|
-
textRule3Number: null
|
1394
|
+
|
1395
|
+
...defaultTextFlagConfig
|
1429
1396
|
|
1430
1397
|
}
|
1431
1398
|
},
|
@@ -1433,6 +1400,7 @@ export const basicFields = [
|
|
1433
1400
|
type: "date-range",
|
1434
1401
|
icon: "date-range-field",
|
1435
1402
|
formItemFlag: !0,
|
1403
|
+
columnFlag: true,
|
1436
1404
|
tableField: null,
|
1437
1405
|
options: {
|
1438
1406
|
name: "",
|
@@ -1457,6 +1425,7 @@ export const basicFields = [
|
|
1457
1425
|
editable: !1,
|
1458
1426
|
format: "yyyy-MM-dd",
|
1459
1427
|
valueFormat: "yyyy-MM-dd",
|
1428
|
+
defaultTime: ['00:00:00', '23:59:59'],
|
1460
1429
|
required: !1,
|
1461
1430
|
requiredHint: "",
|
1462
1431
|
validation: "",
|
@@ -1472,21 +1441,11 @@ export const basicFields = [
|
|
1472
1441
|
onBlur: "",
|
1473
1442
|
onValidate: "",
|
1474
1443
|
accessType: "1",
|
1475
|
-
|
1476
|
-
wfEdit: false,
|
1477
|
-
enabledByWf: false,
|
1478
|
-
hiddenByWf: false,
|
1479
|
-
wfConfigData: [],
|
1444
|
+
...defaultWfConfig,
|
1480
1445
|
|
1481
1446
|
showRuleFlag: 1,
|
1482
1447
|
showRuleEnabled: 1,
|
1483
1448
|
showRules: [],
|
1484
|
-
textFlag: 1,
|
1485
|
-
textRule1: false,
|
1486
|
-
textRule2: false,
|
1487
|
-
textRule3: false,
|
1488
|
-
textRule2Number: null,
|
1489
|
-
textRule3Number: null
|
1490
1449
|
|
1491
1450
|
}
|
1492
1451
|
},
|
@@ -1618,6 +1577,7 @@ export const basicFields = [
|
|
1618
1577
|
type: "static-text",
|
1619
1578
|
icon: "static-text",
|
1620
1579
|
formItemFlag: !1,
|
1580
|
+
columnFlag: true,
|
1621
1581
|
options: {
|
1622
1582
|
name: "",
|
1623
1583
|
columnWidth: "200px",
|
@@ -1628,16 +1588,13 @@ export const basicFields = [
|
|
1628
1588
|
onCreated: "",
|
1629
1589
|
onMounted: "",
|
1630
1590
|
accessType: "1",
|
1591
|
+
...defaultWfConfig,
|
1631
1592
|
|
1632
1593
|
showRuleFlag: 1,
|
1633
1594
|
showRuleEnabled: 1,
|
1634
1595
|
showRules: [],
|
1635
|
-
|
1636
|
-
|
1637
|
-
textRule2: false,
|
1638
|
-
textRule3: false,
|
1639
|
-
textRule2Number: null,
|
1640
|
-
textRule3Number: null
|
1596
|
+
|
1597
|
+
...defaultTextFlagConfig
|
1641
1598
|
|
1642
1599
|
}
|
1643
1600
|
},
|
@@ -1645,6 +1602,7 @@ export const basicFields = [
|
|
1645
1602
|
type: "html-text",
|
1646
1603
|
icon: "html-text",
|
1647
1604
|
formItemFlag: !1,
|
1605
|
+
columnFlag: true,
|
1648
1606
|
options: {
|
1649
1607
|
name: "",
|
1650
1608
|
columnWidth: "200px",
|
@@ -1654,16 +1612,11 @@ export const basicFields = [
|
|
1654
1612
|
onCreated: "",
|
1655
1613
|
onMounted: "",
|
1656
1614
|
accessType: "1",
|
1615
|
+
...defaultWfConfig,
|
1657
1616
|
|
1658
1617
|
showRuleFlag: 1,
|
1659
1618
|
showRuleEnabled: 1,
|
1660
1619
|
showRules: [],
|
1661
|
-
textFlag: 1,
|
1662
|
-
textRule1: false,
|
1663
|
-
textRule2: false,
|
1664
|
-
textRule3: false,
|
1665
|
-
textRule2Number: null,
|
1666
|
-
textRule3Number: null
|
1667
1620
|
|
1668
1621
|
}
|
1669
1622
|
},
|
@@ -1688,6 +1641,7 @@ export const basicFields = [
|
|
1688
1641
|
type: "button",
|
1689
1642
|
icon: "button",
|
1690
1643
|
formItemFlag: !1,
|
1644
|
+
columnFlag: true,
|
1691
1645
|
options: {
|
1692
1646
|
name: "",
|
1693
1647
|
label: "",
|
@@ -1714,27 +1668,19 @@ export const basicFields = [
|
|
1714
1668
|
tableRef: null,
|
1715
1669
|
tableData: {}
|
1716
1670
|
},
|
1717
|
-
|
1718
|
-
wfEdit: false,
|
1719
|
-
enabledByWf: false,
|
1720
|
-
hiddenByWf: false,
|
1721
|
-
wfConfigData: [],
|
1671
|
+
...defaultWfConfig,
|
1722
1672
|
|
1723
1673
|
showRuleFlag: 1,
|
1724
1674
|
showRuleEnabled: 1,
|
1725
1675
|
showRules: [],
|
1726
|
-
|
1727
|
-
textRule1: false,
|
1728
|
-
textRule2: false,
|
1729
|
-
textRule3: false,
|
1730
|
-
textRule2Number: null,
|
1731
|
-
textRule3Number: null
|
1676
|
+
|
1732
1677
|
}
|
1733
1678
|
},
|
1734
1679
|
{
|
1735
1680
|
type: "divider",
|
1736
1681
|
icon: "divider",
|
1737
1682
|
formItemFlag: !1,
|
1683
|
+
columnFlag: true,
|
1738
1684
|
options: {
|
1739
1685
|
name: "",
|
1740
1686
|
label: "",
|
@@ -1743,6 +1689,7 @@ export const basicFields = [
|
|
1743
1689
|
contentPosition: "center",
|
1744
1690
|
hidden: !1,
|
1745
1691
|
customClass: "",
|
1692
|
+
...defaultWfConfig,
|
1746
1693
|
onCreated: "",
|
1747
1694
|
onMounted: ""
|
1748
1695
|
}
|
@@ -1805,6 +1752,7 @@ export const basicFields = [
|
|
1805
1752
|
type: "text",
|
1806
1753
|
icon: "text",
|
1807
1754
|
formItemFlag: !0,
|
1755
|
+
columnFlag: true,
|
1808
1756
|
tableField: null,
|
1809
1757
|
options: {
|
1810
1758
|
name: "",
|
@@ -1824,28 +1772,30 @@ export const basicFields = [
|
|
1824
1772
|
onMounted: "",
|
1825
1773
|
accessType: "1",
|
1826
1774
|
labelColor: '#555555',
|
1775
|
+
...defaultWfConfig,
|
1776
|
+
|
1777
|
+
autoValueEnabled: false,
|
1778
|
+
autoValueHanlde: null,
|
1827
1779
|
|
1828
1780
|
showRuleFlag: 1,
|
1829
1781
|
showRuleEnabled: 1,
|
1830
1782
|
showRules: [],
|
1831
|
-
|
1832
|
-
|
1833
|
-
textRule2: false,
|
1834
|
-
textRule3: false,
|
1835
|
-
textRule2Number: null,
|
1836
|
-
textRule3Number: null
|
1783
|
+
|
1784
|
+
...defaultTextFlagConfig
|
1837
1785
|
}
|
1838
1786
|
},
|
1839
1787
|
{
|
1840
1788
|
type: "a-text",
|
1841
1789
|
icon: "text-field",
|
1842
1790
|
formItemFlag: !0,
|
1791
|
+
columnFlag: true,
|
1843
1792
|
tableField: null,
|
1844
1793
|
options: {
|
1845
1794
|
name: "",
|
1846
1795
|
keyNameEnabled: !1,
|
1847
1796
|
keyName: "",
|
1848
1797
|
label: "",
|
1798
|
+
displayStyle: "block",
|
1849
1799
|
submitFlag: true,
|
1850
1800
|
/**showText: false,*/
|
1851
1801
|
formField: "",
|
@@ -1872,32 +1822,26 @@ export const basicFields = [
|
|
1872
1822
|
onChange: "",
|
1873
1823
|
onClick: "",
|
1874
1824
|
accessType: "1",
|
1875
|
-
|
1876
|
-
wfEdit: false,
|
1877
|
-
enabledByWf: false,
|
1878
|
-
hiddenByWf: false,
|
1879
|
-
wfConfigData: [],
|
1825
|
+
...defaultWfConfig,
|
1880
1826
|
|
1881
1827
|
showRuleFlag: 1,
|
1882
1828
|
showRuleEnabled: 1,
|
1883
1829
|
showRules: [],
|
1884
|
-
|
1885
|
-
|
1886
|
-
textRule2: false,
|
1887
|
-
textRule3: false,
|
1888
|
-
textRule2Number: null,
|
1889
|
-
textRule3Number: null
|
1830
|
+
|
1831
|
+
...defaultTextFlagConfig
|
1890
1832
|
}
|
1891
1833
|
},
|
1892
1834
|
{
|
1893
1835
|
type: "a-link",
|
1894
1836
|
icon: "button",
|
1895
1837
|
formItemFlag: !1,
|
1838
|
+
columnFlag: true,
|
1896
1839
|
options: {
|
1897
1840
|
name: "",
|
1898
1841
|
keyNameEnabled: !1,
|
1899
1842
|
keyName: "",
|
1900
1843
|
label: "",
|
1844
|
+
displayStyle: "block",
|
1901
1845
|
labelHidden: !1,
|
1902
1846
|
disabled: !1,
|
1903
1847
|
hidden: !1,
|
@@ -1907,7 +1851,7 @@ export const basicFields = [
|
|
1907
1851
|
aLinkFlag: 1,
|
1908
1852
|
underline: false,
|
1909
1853
|
href: "",
|
1910
|
-
coloClass: "f-
|
1854
|
+
coloClass: "f-blue",
|
1911
1855
|
isFormLabel: false,
|
1912
1856
|
onCreated: "",
|
1913
1857
|
onMounted: "",
|
@@ -1920,21 +1864,13 @@ export const basicFields = [
|
|
1920
1864
|
tableRef: null,
|
1921
1865
|
tableData: {}
|
1922
1866
|
},
|
1923
|
-
|
1924
|
-
wfEdit: false,
|
1925
|
-
enabledByWf: false,
|
1926
|
-
hiddenByWf: false,
|
1927
|
-
wfConfigData: [],
|
1867
|
+
...defaultWfConfig,
|
1928
1868
|
|
1929
1869
|
showRuleFlag: 1,
|
1930
1870
|
showRuleEnabled: 1,
|
1931
1871
|
showRules: [],
|
1932
|
-
|
1933
|
-
|
1934
|
-
textRule2: false,
|
1935
|
-
textRule3: false,
|
1936
|
-
textRule2Number: null,
|
1937
|
-
textRule3Number: null
|
1872
|
+
|
1873
|
+
...defaultTextFlagConfig
|
1938
1874
|
}
|
1939
1875
|
},
|
1940
1876
|
|
@@ -1998,10 +1934,11 @@ export const advancedFields = [
|
|
1998
1934
|
color: "",
|
1999
1935
|
fontWeight: "normal"
|
2000
1936
|
},
|
2001
|
-
data: [
|
2002
|
-
|
2003
|
-
|
2004
|
-
|
1937
|
+
data: [
|
1938
|
+
{
|
1939
|
+
value: 1048,
|
1940
|
+
name: 'Search Engine'
|
1941
|
+
},
|
2005
1942
|
{
|
2006
1943
|
value: 735,
|
2007
1944
|
name: 'Direct'
|
@@ -2021,12 +1958,16 @@ export const advancedFields = [
|
|
2021
1958
|
],
|
2022
1959
|
}]
|
2023
1960
|
},
|
1961
|
+
echartConfig: '',
|
2024
1962
|
formScriptEnabled: true,
|
2025
1963
|
formScriptCode: "",
|
2026
1964
|
formScriptParam: null,
|
1965
|
+
formScriptSuccess: null,
|
1966
|
+
onClick: "",
|
2027
1967
|
onCreated: "",
|
2028
1968
|
onMounted: "this.loadDataDefaultHandle()",
|
2029
1969
|
|
1970
|
+
...defaultWfConfig,
|
2030
1971
|
showRuleFlag: 1,
|
2031
1972
|
showRuleEnabled: 1,
|
2032
1973
|
showRules: []
|
@@ -2044,6 +1985,7 @@ export const advancedFields = [
|
|
2044
1985
|
echarBarOption: {
|
2045
1986
|
backgroundColor: "#fff",
|
2046
1987
|
color: ["#5BC1D7", "#FF8A3D", "#56C271", "#694ED6", "#C033A1", "#FFCC10"],
|
1988
|
+
colors: [],
|
2047
1989
|
title: {
|
2048
1990
|
show: true,
|
2049
1991
|
top: '5px',
|
@@ -2190,12 +2132,15 @@ export const advancedFields = [
|
|
2190
2132
|
|
2191
2133
|
}]
|
2192
2134
|
},
|
2135
|
+
echartConfig: '',
|
2193
2136
|
formScriptEnabled: true,
|
2194
2137
|
formScriptCode: "",
|
2195
2138
|
formScriptParam: null,
|
2139
|
+
formScriptSuccess: null,
|
2140
|
+
onClick: "",
|
2196
2141
|
onCreated: "",
|
2197
2142
|
onMounted: "this.loadDataDefaultHandle()",
|
2198
|
-
|
2143
|
+
...defaultWfConfig,
|
2199
2144
|
showRuleFlag: 1,
|
2200
2145
|
showRuleEnabled: 1,
|
2201
2146
|
showRules: []
|
@@ -2214,6 +2159,7 @@ export const advancedFields = [
|
|
2214
2159
|
echarCategoryOption: {
|
2215
2160
|
backgroundColor: "#fff",
|
2216
2161
|
color: ["#5BC1D7", "#FF8A3D", "#56C271", "#694ED6", "#C033A1", "#FFCC10"],
|
2162
|
+
colors: [],
|
2217
2163
|
title: {
|
2218
2164
|
show: true,
|
2219
2165
|
top: '5px',
|
@@ -2324,6 +2270,23 @@ export const advancedFields = [
|
|
2324
2270
|
shadowBlur: 4,
|
2325
2271
|
shadowOffsetY: 6
|
2326
2272
|
},
|
2273
|
+
itemStyle: {
|
2274
|
+
color: {
|
2275
|
+
type: 'linear',
|
2276
|
+
x: 0.5,
|
2277
|
+
y: 0.5,
|
2278
|
+
r: 0.5,
|
2279
|
+
colorStops: [{
|
2280
|
+
offset: 0, color: '#08C084' // 0% 处的颜色
|
2281
|
+
}, {
|
2282
|
+
offset: 1, color: '#97EACE' // 100% 处的颜色
|
2283
|
+
}],
|
2284
|
+
},
|
2285
|
+
cap: 'round',
|
2286
|
+
shadowColor: '#08C08450',
|
2287
|
+
shadowBlur: 4,
|
2288
|
+
shadowOffsetY: 6
|
2289
|
+
},
|
2327
2290
|
emphasis: {
|
2328
2291
|
scale: 1,
|
2329
2292
|
focus: 'series'
|
@@ -2358,6 +2321,23 @@ export const advancedFields = [
|
|
2358
2321
|
shadowBlur: 4,
|
2359
2322
|
shadowOffsetY: 6
|
2360
2323
|
},
|
2324
|
+
itemStyle: {
|
2325
|
+
color: {
|
2326
|
+
type: 'linear',
|
2327
|
+
x: 0.5,
|
2328
|
+
y: 0.5,
|
2329
|
+
r: 0.5,
|
2330
|
+
colorStops: [{
|
2331
|
+
offset: 0, color: '#FF6116' // 0% 处的颜色
|
2332
|
+
}, {
|
2333
|
+
offset: 1, color: '#F9A980' // 100% 处的颜色
|
2334
|
+
}],
|
2335
|
+
},
|
2336
|
+
cap: 'round',
|
2337
|
+
shadowColor: '#FF611650',
|
2338
|
+
shadowBlur: 4,
|
2339
|
+
shadowOffsetY: 6
|
2340
|
+
},
|
2361
2341
|
emphasis: {
|
2362
2342
|
scale: 1,
|
2363
2343
|
focus: 'series'
|
@@ -2367,12 +2347,15 @@ export const advancedFields = [
|
|
2367
2347
|
}]
|
2368
2348
|
|
2369
2349
|
},
|
2350
|
+
echartConfig: '',
|
2370
2351
|
formScriptEnabled: true,
|
2371
2352
|
formScriptCode: "",
|
2372
2353
|
formScriptParam: null,
|
2354
|
+
formScriptSuccess: null,
|
2355
|
+
onClick: "",
|
2373
2356
|
onCreated: "",
|
2374
2357
|
onMounted: "this.loadDataDefaultHandle()",
|
2375
|
-
|
2358
|
+
...defaultWfConfig,
|
2376
2359
|
showRuleFlag: 1,
|
2377
2360
|
showRuleEnabled: 1,
|
2378
2361
|
showRules: []
|
@@ -2507,15 +2490,13 @@ export const advancedFields = [
|
|
2507
2490
|
entityTableDesc: null,
|
2508
2491
|
onCreated: "this.loadDataDefaultHandle();",
|
2509
2492
|
onMounted: "",
|
2493
|
+
onAfterConfirmFile: "",
|
2510
2494
|
vabUpload: 1,
|
2511
2495
|
formScriptEnabled: true,
|
2512
2496
|
formScriptCode: "getList",
|
2513
2497
|
formScriptParam: null,
|
2514
|
-
|
2515
|
-
|
2516
|
-
enabledByWf: false,
|
2517
|
-
hiddenByWf: false,
|
2518
|
-
wfConfigData: [],
|
2498
|
+
formScriptSuccess: null,
|
2499
|
+
...defaultWfConfig,
|
2519
2500
|
|
2520
2501
|
showRuleFlag: 1,
|
2521
2502
|
showRuleEnabled: 1,
|
@@ -2526,6 +2507,7 @@ export const advancedFields = [
|
|
2526
2507
|
type: "vabsearch",
|
2527
2508
|
icon: "searchbox",
|
2528
2509
|
commonFlag: !0,
|
2510
|
+
columnFlag: true,
|
2529
2511
|
formItemFlag: !0,
|
2530
2512
|
tableField: null,
|
2531
2513
|
options: {
|
@@ -2564,11 +2546,7 @@ export const advancedFields = [
|
|
2564
2546
|
...defaultSearchDialogConfig,
|
2565
2547
|
multipleChoices: false
|
2566
2548
|
},
|
2567
|
-
|
2568
|
-
wfEdit: false,
|
2569
|
-
enabledByWf: false,
|
2570
|
-
hiddenByWf: false,
|
2571
|
-
wfConfigData: [],
|
2549
|
+
...defaultWfConfig,
|
2572
2550
|
valueField: null,
|
2573
2551
|
multipleChoices: false,
|
2574
2552
|
|
@@ -2582,6 +2560,7 @@ export const advancedFields = [
|
|
2582
2560
|
type: "search_button",
|
2583
2561
|
icon: "button",
|
2584
2562
|
commonFlag: !0,
|
2563
|
+
columnFlag: true,
|
2585
2564
|
formItemFlag: !1,
|
2586
2565
|
options: {
|
2587
2566
|
name: "",
|
@@ -2613,11 +2592,7 @@ export const advancedFields = [
|
|
2613
2592
|
...defaultSearchDialogConfig,
|
2614
2593
|
tableEnabled: true
|
2615
2594
|
},
|
2616
|
-
|
2617
|
-
wfEdit: false,
|
2618
|
-
enabledByWf: false,
|
2619
|
-
hiddenByWf: false,
|
2620
|
-
wfConfigData: [],
|
2595
|
+
...defaultWfConfig,
|
2621
2596
|
|
2622
2597
|
showRuleFlag: 1,
|
2623
2598
|
showRuleEnabled: 1,
|
@@ -2629,6 +2604,7 @@ export const advancedFields = [
|
|
2629
2604
|
targetType: "button",
|
2630
2605
|
icon: "button",
|
2631
2606
|
commonFlag: !0,
|
2607
|
+
columnFlag: true,
|
2632
2608
|
formItemFlag: !1,
|
2633
2609
|
options: {
|
2634
2610
|
name: "",
|
@@ -2654,11 +2630,7 @@ export const advancedFields = [
|
|
2654
2630
|
searchDialogConfig: {
|
2655
2631
|
...defaultSearchDialogConfig
|
2656
2632
|
},
|
2657
|
-
|
2658
|
-
wfEdit: false,
|
2659
|
-
enabledByWf: false,
|
2660
|
-
hiddenByWf: true,
|
2661
|
-
wfConfigData: [],
|
2633
|
+
...defaultWfConfig,
|
2662
2634
|
|
2663
2635
|
showRuleFlag: 1,
|
2664
2636
|
showRuleEnabled: 1,
|
@@ -2671,6 +2643,7 @@ export const advancedFields = [
|
|
2671
2643
|
targetType: "button",
|
2672
2644
|
icon: "button",
|
2673
2645
|
commonFlag: !0,
|
2646
|
+
columnFlag: true,
|
2674
2647
|
formItemFlag: !1,
|
2675
2648
|
options: {
|
2676
2649
|
name: "",
|
@@ -2694,11 +2667,7 @@ export const advancedFields = [
|
|
2694
2667
|
searchDialogConfig: {
|
2695
2668
|
...defaultSearchDialogConfig
|
2696
2669
|
},
|
2697
|
-
|
2698
|
-
wfEdit: false,
|
2699
|
-
enabledByWf: true,
|
2700
|
-
hiddenByWf: false,
|
2701
|
-
wfConfigData: [],
|
2670
|
+
...defaultWfConfig,
|
2702
2671
|
|
2703
2672
|
showRuleFlag: 1,
|
2704
2673
|
showRuleEnabled: 1,
|
@@ -2710,6 +2679,7 @@ export const advancedFields = [
|
|
2710
2679
|
icon: "list-export",
|
2711
2680
|
formItemFlag: !1,
|
2712
2681
|
commonFlag: !0,
|
2682
|
+
columnFlag: true,
|
2713
2683
|
tableField: null,
|
2714
2684
|
options: {
|
2715
2685
|
name: "",
|
@@ -2720,13 +2690,11 @@ export const advancedFields = [
|
|
2720
2690
|
exportFileName: '导出',
|
2721
2691
|
tableRef: '',
|
2722
2692
|
tableExportParam: "",
|
2693
|
+
showImageAtTable: false,
|
2694
|
+
|
2723
2695
|
onCreated: "",
|
2724
2696
|
onMounted: "",
|
2725
|
-
|
2726
|
-
wfEdit: false,
|
2727
|
-
enabledByWf: false,
|
2728
|
-
hiddenByWf: false,
|
2729
|
-
wfConfigData: [],
|
2697
|
+
...defaultWfConfig,
|
2730
2698
|
|
2731
2699
|
showRuleFlag: 1,
|
2732
2700
|
showRuleEnabled: 1,
|
@@ -2739,6 +2707,7 @@ export const advancedFields = [
|
|
2739
2707
|
targetType: "button",
|
2740
2708
|
icon: "button",
|
2741
2709
|
commonFlag: !0,
|
2710
|
+
columnFlag: true,
|
2742
2711
|
formItemFlag: !1,
|
2743
2712
|
options: {
|
2744
2713
|
name: "",
|
@@ -2761,11 +2730,7 @@ export const advancedFields = [
|
|
2761
2730
|
searchDialogConfig: {
|
2762
2731
|
...defaultSearchDialogConfig
|
2763
2732
|
},
|
2764
|
-
|
2765
|
-
wfEdit: false,
|
2766
|
-
enabledByWf: false,
|
2767
|
-
hiddenByWf: false,
|
2768
|
-
wfConfigData: [],
|
2733
|
+
...defaultWfConfig,
|
2769
2734
|
|
2770
2735
|
showRuleFlag: 1,
|
2771
2736
|
showRuleEnabled: 1,
|
@@ -2777,6 +2742,7 @@ export const advancedFields = [
|
|
2777
2742
|
targetType: "button",
|
2778
2743
|
icon: "button",
|
2779
2744
|
commonFlag: !0,
|
2745
|
+
columnFlag: true,
|
2780
2746
|
formItemFlag: !1,
|
2781
2747
|
options: {
|
2782
2748
|
name: "",
|
@@ -2802,11 +2768,7 @@ export const advancedFields = [
|
|
2802
2768
|
searchDialogConfig: {
|
2803
2769
|
...defaultSearchDialogConfig
|
2804
2770
|
},
|
2805
|
-
|
2806
|
-
wfEdit: false,
|
2807
|
-
enabledByWf: false,
|
2808
|
-
hiddenByWf: true,
|
2809
|
-
wfConfigData: [],
|
2771
|
+
...defaultWfConfig,
|
2810
2772
|
|
2811
2773
|
showRuleFlag: 1,
|
2812
2774
|
showRuleEnabled: 1,
|
@@ -2818,12 +2780,14 @@ export const advancedFields = [
|
|
2818
2780
|
type: "import-button",
|
2819
2781
|
icon: "button",
|
2820
2782
|
commonFlag: !0,
|
2783
|
+
columnFlag: true,
|
2821
2784
|
formItemFlag: !1,
|
2822
2785
|
options: {
|
2823
2786
|
name: "",
|
2824
2787
|
label: "导入",
|
2825
2788
|
columnWidth: "200px",
|
2826
2789
|
size: "",
|
2790
|
+
importFileLimitSize: 200,
|
2827
2791
|
// displayStyle: "block",
|
2828
2792
|
disabled: !1,
|
2829
2793
|
hidden: !1,
|
@@ -2839,17 +2803,16 @@ export const advancedFields = [
|
|
2839
2803
|
searchDialogConfig: {
|
2840
2804
|
...defaultSearchDialogConfig
|
2841
2805
|
},
|
2842
|
-
|
2843
|
-
wfEdit: false,
|
2844
|
-
enabledByWf: false,
|
2845
|
-
hiddenByWf: false,
|
2846
|
-
wfConfigData: [],
|
2806
|
+
...defaultWfConfig,
|
2847
2807
|
importEntity: '',
|
2848
2808
|
importAttachCode: '',
|
2849
2809
|
importScriptCode: '',
|
2850
2810
|
onBeforeImport: '',
|
2851
2811
|
enabledImportPreHandle: false,
|
2852
2812
|
|
2813
|
+
importSaveDisabled:false,
|
2814
|
+
onConfirmImport:'',
|
2815
|
+
|
2853
2816
|
showRuleFlag: 1,
|
2854
2817
|
showRuleEnabled: 1,
|
2855
2818
|
showRules: []
|
@@ -2859,6 +2822,7 @@ export const advancedFields = [
|
|
2859
2822
|
type: "print-button",
|
2860
2823
|
icon: "button",
|
2861
2824
|
commonFlag: !0,
|
2825
|
+
columnFlag: true,
|
2862
2826
|
formItemFlag: !1,
|
2863
2827
|
options: {
|
2864
2828
|
name: "",
|
@@ -2880,11 +2844,7 @@ export const advancedFields = [
|
|
2880
2844
|
searchDialogConfig: {
|
2881
2845
|
...defaultSearchDialogConfig
|
2882
2846
|
},
|
2883
|
-
|
2884
|
-
wfEdit: false,
|
2885
|
-
enabledByWf: false,
|
2886
|
-
hiddenByWf: false,
|
2887
|
-
wfConfigData: [],
|
2847
|
+
...defaultWfConfig,
|
2888
2848
|
printTableRef: "",
|
2889
2849
|
printItems: [],
|
2890
2850
|
|
@@ -2896,6 +2856,7 @@ export const advancedFields = [
|
|
2896
2856
|
{
|
2897
2857
|
type: "baseAttachment",
|
2898
2858
|
icon: "file-upload-field",
|
2859
|
+
columnFlag: true,
|
2899
2860
|
formItemFlag: !0,
|
2900
2861
|
tableField: null,
|
2901
2862
|
options: {
|
@@ -2916,11 +2877,8 @@ export const advancedFields = [
|
|
2916
2877
|
entityTableDesc: null,
|
2917
2878
|
onCreated: "",
|
2918
2879
|
onMounted: "",
|
2919
|
-
|
2920
|
-
|
2921
|
-
enabledByWf: false,
|
2922
|
-
hiddenByWf: false,
|
2923
|
-
wfConfigData: [],
|
2880
|
+
onAfterConfirmFile: "",
|
2881
|
+
...defaultWfConfig,
|
2924
2882
|
|
2925
2883
|
showRuleFlag: 1,
|
2926
2884
|
showRuleEnabled: 1,
|
@@ -2931,6 +2889,7 @@ export const advancedFields = [
|
|
2931
2889
|
type: "status",
|
2932
2890
|
icon: "status",
|
2933
2891
|
commonFlag: !0,
|
2892
|
+
columnFlag: true,
|
2934
2893
|
formItemFlag: !0,
|
2935
2894
|
tableField: null,
|
2936
2895
|
options: {
|
@@ -2949,6 +2908,7 @@ export const advancedFields = [
|
|
2949
2908
|
statusParam: [],
|
2950
2909
|
onCreated: "",
|
2951
2910
|
onMounted: "",
|
2911
|
+
...defaultWfConfig,
|
2952
2912
|
|
2953
2913
|
showRuleFlag: 1,
|
2954
2914
|
showRuleEnabled: 1,
|
@@ -2995,9 +2955,10 @@ export const advancedFields = [
|
|
2995
2955
|
formScriptEnabled: true,
|
2996
2956
|
formScriptCode: "",
|
2997
2957
|
formScriptParam: null,
|
2958
|
+
formScriptSuccess: null,
|
2998
2959
|
onCreated: "",
|
2999
2960
|
onMounted: "",
|
3000
|
-
|
2961
|
+
...defaultWfConfig,
|
3001
2962
|
showRuleFlag: 1,
|
3002
2963
|
showRuleEnabled: 1,
|
3003
2964
|
showRules: []
|
@@ -3006,14 +2967,15 @@ export const advancedFields = [
|
|
3006
2967
|
{
|
3007
2968
|
type: "project-tag",
|
3008
2969
|
icon: "uploadbox",
|
3009
|
-
|
2970
|
+
commonFlag: !0,
|
2971
|
+
columnFlag: true,
|
3010
2972
|
formItemFlag: !0,
|
3011
2973
|
tableField: null,
|
3012
2974
|
options: {
|
3013
2975
|
name: "",
|
3014
2976
|
keyNameEnabled: !1,
|
3015
2977
|
keyName: "",
|
3016
|
-
keyNameSuffix: "",
|
2978
|
+
// keyNameSuffix: "",
|
3017
2979
|
label: "",
|
3018
2980
|
submitFlag: true,
|
3019
2981
|
disabled: !1,
|
@@ -3022,21 +2984,31 @@ export const advancedFields = [
|
|
3022
2984
|
required: !1,
|
3023
2985
|
labelWidth: null,
|
3024
2986
|
labelHidden: !1,
|
3025
|
-
onCreated: "if(this.
|
2987
|
+
onCreated: "if(this.dataId)this.loadDataDefaultHandle();",
|
3026
2988
|
onMounted: "",
|
2989
|
+
onClick: "",
|
3027
2990
|
vabUpload: 1,
|
3028
2991
|
formScriptEnabled: true,
|
3029
2992
|
formScriptCode: "getList",
|
3030
2993
|
formScriptParam: null,
|
3031
|
-
|
3032
|
-
|
3033
|
-
enabledByWf: false,
|
3034
|
-
hiddenByWf: false,
|
3035
|
-
wfConfigData: [],
|
2994
|
+
formScriptSuccess: null,
|
2995
|
+
...defaultWfConfig,
|
3036
2996
|
|
3037
2997
|
showRuleFlag: 1,
|
3038
2998
|
showRuleEnabled: 1,
|
3039
|
-
showRules: []
|
2999
|
+
showRules: [],
|
3000
|
+
|
3001
|
+
tagFormCode: null,
|
3002
|
+
tagFormParam: null,
|
3003
|
+
tagLabelField: null,
|
3004
|
+
tagUniqueField: null,
|
3005
|
+
tagFormLabelField: null,
|
3006
|
+
tagFormUniqueField: null,
|
3007
|
+
tagFillConfig: [],
|
3008
|
+
tagConfirmCallback: null,
|
3009
|
+
tagDeleteCallback: null,
|
3010
|
+
tabDeleteEnabled: false,
|
3011
|
+
|
3040
3012
|
}
|
3041
3013
|
},
|
3042
3014
|
{
|
@@ -3058,9 +3030,10 @@ export const advancedFields = [
|
|
3058
3030
|
formScriptEnabled: true,
|
3059
3031
|
formScriptCode: "",
|
3060
3032
|
formScriptParam: null,
|
3033
|
+
formScriptSuccess: null,
|
3061
3034
|
onCreated: "this.loadDataDefaultHandle()",
|
3062
3035
|
onMounted: "",
|
3063
|
-
|
3036
|
+
...defaultWfConfig,
|
3064
3037
|
showRuleFlag: 1,
|
3065
3038
|
showRuleEnabled: 1,
|
3066
3039
|
showRules: []
|