cloud-web-corejs 1.0.54-dev.16 → 1.0.54-dev.161
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 +22 -6
- 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 +86 -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/field-vabUpload/field-vabUpload-editor.vue +30 -1
- 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 +233 -254
- 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 +832 -426
- package/src/views/bd/setting/table_model/mixins/edit.js +1098 -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,25 +2490,30 @@ 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,
|
2522
|
-
showRules: []
|
2503
|
+
showRules: [],
|
2504
|
+
|
2505
|
+
hiddenFileInfo: false,
|
2506
|
+
hiddenFileName: false,
|
2507
|
+
showFileSize: false,
|
2508
|
+
showFileCreateBy: false,
|
2509
|
+
showFileCreateDate: false,
|
2523
2510
|
}
|
2524
2511
|
},
|
2525
2512
|
{
|
2526
2513
|
type: "vabsearch",
|
2527
2514
|
icon: "searchbox",
|
2528
2515
|
commonFlag: !0,
|
2516
|
+
columnFlag: true,
|
2529
2517
|
formItemFlag: !0,
|
2530
2518
|
tableField: null,
|
2531
2519
|
options: {
|
@@ -2564,11 +2552,7 @@ export const advancedFields = [
|
|
2564
2552
|
...defaultSearchDialogConfig,
|
2565
2553
|
multipleChoices: false
|
2566
2554
|
},
|
2567
|
-
|
2568
|
-
wfEdit: false,
|
2569
|
-
enabledByWf: false,
|
2570
|
-
hiddenByWf: false,
|
2571
|
-
wfConfigData: [],
|
2555
|
+
...defaultWfConfig,
|
2572
2556
|
valueField: null,
|
2573
2557
|
multipleChoices: false,
|
2574
2558
|
|
@@ -2582,6 +2566,7 @@ export const advancedFields = [
|
|
2582
2566
|
type: "search_button",
|
2583
2567
|
icon: "button",
|
2584
2568
|
commonFlag: !0,
|
2569
|
+
columnFlag: true,
|
2585
2570
|
formItemFlag: !1,
|
2586
2571
|
options: {
|
2587
2572
|
name: "",
|
@@ -2613,11 +2598,7 @@ export const advancedFields = [
|
|
2613
2598
|
...defaultSearchDialogConfig,
|
2614
2599
|
tableEnabled: true
|
2615
2600
|
},
|
2616
|
-
|
2617
|
-
wfEdit: false,
|
2618
|
-
enabledByWf: false,
|
2619
|
-
hiddenByWf: false,
|
2620
|
-
wfConfigData: [],
|
2601
|
+
...defaultWfConfig,
|
2621
2602
|
|
2622
2603
|
showRuleFlag: 1,
|
2623
2604
|
showRuleEnabled: 1,
|
@@ -2629,6 +2610,7 @@ export const advancedFields = [
|
|
2629
2610
|
targetType: "button",
|
2630
2611
|
icon: "button",
|
2631
2612
|
commonFlag: !0,
|
2613
|
+
columnFlag: true,
|
2632
2614
|
formItemFlag: !1,
|
2633
2615
|
options: {
|
2634
2616
|
name: "",
|
@@ -2654,11 +2636,7 @@ export const advancedFields = [
|
|
2654
2636
|
searchDialogConfig: {
|
2655
2637
|
...defaultSearchDialogConfig
|
2656
2638
|
},
|
2657
|
-
|
2658
|
-
wfEdit: false,
|
2659
|
-
enabledByWf: false,
|
2660
|
-
hiddenByWf: true,
|
2661
|
-
wfConfigData: [],
|
2639
|
+
...defaultWfConfig,
|
2662
2640
|
|
2663
2641
|
showRuleFlag: 1,
|
2664
2642
|
showRuleEnabled: 1,
|
@@ -2671,6 +2649,7 @@ export const advancedFields = [
|
|
2671
2649
|
targetType: "button",
|
2672
2650
|
icon: "button",
|
2673
2651
|
commonFlag: !0,
|
2652
|
+
columnFlag: true,
|
2674
2653
|
formItemFlag: !1,
|
2675
2654
|
options: {
|
2676
2655
|
name: "",
|
@@ -2694,11 +2673,7 @@ export const advancedFields = [
|
|
2694
2673
|
searchDialogConfig: {
|
2695
2674
|
...defaultSearchDialogConfig
|
2696
2675
|
},
|
2697
|
-
|
2698
|
-
wfEdit: false,
|
2699
|
-
enabledByWf: true,
|
2700
|
-
hiddenByWf: false,
|
2701
|
-
wfConfigData: [],
|
2676
|
+
...defaultWfConfig,
|
2702
2677
|
|
2703
2678
|
showRuleFlag: 1,
|
2704
2679
|
showRuleEnabled: 1,
|
@@ -2710,6 +2685,7 @@ export const advancedFields = [
|
|
2710
2685
|
icon: "list-export",
|
2711
2686
|
formItemFlag: !1,
|
2712
2687
|
commonFlag: !0,
|
2688
|
+
columnFlag: true,
|
2713
2689
|
tableField: null,
|
2714
2690
|
options: {
|
2715
2691
|
name: "",
|
@@ -2720,13 +2696,11 @@ export const advancedFields = [
|
|
2720
2696
|
exportFileName: '导出',
|
2721
2697
|
tableRef: '',
|
2722
2698
|
tableExportParam: "",
|
2699
|
+
showImageAtTable: false,
|
2700
|
+
|
2723
2701
|
onCreated: "",
|
2724
2702
|
onMounted: "",
|
2725
|
-
|
2726
|
-
wfEdit: false,
|
2727
|
-
enabledByWf: false,
|
2728
|
-
hiddenByWf: false,
|
2729
|
-
wfConfigData: [],
|
2703
|
+
...defaultWfConfig,
|
2730
2704
|
|
2731
2705
|
showRuleFlag: 1,
|
2732
2706
|
showRuleEnabled: 1,
|
@@ -2739,6 +2713,7 @@ export const advancedFields = [
|
|
2739
2713
|
targetType: "button",
|
2740
2714
|
icon: "button",
|
2741
2715
|
commonFlag: !0,
|
2716
|
+
columnFlag: true,
|
2742
2717
|
formItemFlag: !1,
|
2743
2718
|
options: {
|
2744
2719
|
name: "",
|
@@ -2761,11 +2736,7 @@ export const advancedFields = [
|
|
2761
2736
|
searchDialogConfig: {
|
2762
2737
|
...defaultSearchDialogConfig
|
2763
2738
|
},
|
2764
|
-
|
2765
|
-
wfEdit: false,
|
2766
|
-
enabledByWf: false,
|
2767
|
-
hiddenByWf: false,
|
2768
|
-
wfConfigData: [],
|
2739
|
+
...defaultWfConfig,
|
2769
2740
|
|
2770
2741
|
showRuleFlag: 1,
|
2771
2742
|
showRuleEnabled: 1,
|
@@ -2777,6 +2748,7 @@ export const advancedFields = [
|
|
2777
2748
|
targetType: "button",
|
2778
2749
|
icon: "button",
|
2779
2750
|
commonFlag: !0,
|
2751
|
+
columnFlag: true,
|
2780
2752
|
formItemFlag: !1,
|
2781
2753
|
options: {
|
2782
2754
|
name: "",
|
@@ -2802,11 +2774,7 @@ export const advancedFields = [
|
|
2802
2774
|
searchDialogConfig: {
|
2803
2775
|
...defaultSearchDialogConfig
|
2804
2776
|
},
|
2805
|
-
|
2806
|
-
wfEdit: false,
|
2807
|
-
enabledByWf: false,
|
2808
|
-
hiddenByWf: true,
|
2809
|
-
wfConfigData: [],
|
2777
|
+
...defaultWfConfig,
|
2810
2778
|
|
2811
2779
|
showRuleFlag: 1,
|
2812
2780
|
showRuleEnabled: 1,
|
@@ -2818,12 +2786,14 @@ export const advancedFields = [
|
|
2818
2786
|
type: "import-button",
|
2819
2787
|
icon: "button",
|
2820
2788
|
commonFlag: !0,
|
2789
|
+
columnFlag: true,
|
2821
2790
|
formItemFlag: !1,
|
2822
2791
|
options: {
|
2823
2792
|
name: "",
|
2824
2793
|
label: "导入",
|
2825
2794
|
columnWidth: "200px",
|
2826
2795
|
size: "",
|
2796
|
+
importFileLimitSize: 200,
|
2827
2797
|
// displayStyle: "block",
|
2828
2798
|
disabled: !1,
|
2829
2799
|
hidden: !1,
|
@@ -2839,17 +2809,16 @@ export const advancedFields = [
|
|
2839
2809
|
searchDialogConfig: {
|
2840
2810
|
...defaultSearchDialogConfig
|
2841
2811
|
},
|
2842
|
-
|
2843
|
-
wfEdit: false,
|
2844
|
-
enabledByWf: false,
|
2845
|
-
hiddenByWf: false,
|
2846
|
-
wfConfigData: [],
|
2812
|
+
...defaultWfConfig,
|
2847
2813
|
importEntity: '',
|
2848
2814
|
importAttachCode: '',
|
2849
2815
|
importScriptCode: '',
|
2850
2816
|
onBeforeImport: '',
|
2851
2817
|
enabledImportPreHandle: false,
|
2852
2818
|
|
2819
|
+
importSaveDisabled: false,
|
2820
|
+
onConfirmImport: '',
|
2821
|
+
|
2853
2822
|
showRuleFlag: 1,
|
2854
2823
|
showRuleEnabled: 1,
|
2855
2824
|
showRules: []
|
@@ -2859,6 +2828,7 @@ export const advancedFields = [
|
|
2859
2828
|
type: "print-button",
|
2860
2829
|
icon: "button",
|
2861
2830
|
commonFlag: !0,
|
2831
|
+
columnFlag: true,
|
2862
2832
|
formItemFlag: !1,
|
2863
2833
|
options: {
|
2864
2834
|
name: "",
|
@@ -2880,11 +2850,7 @@ export const advancedFields = [
|
|
2880
2850
|
searchDialogConfig: {
|
2881
2851
|
...defaultSearchDialogConfig
|
2882
2852
|
},
|
2883
|
-
|
2884
|
-
wfEdit: false,
|
2885
|
-
enabledByWf: false,
|
2886
|
-
hiddenByWf: false,
|
2887
|
-
wfConfigData: [],
|
2853
|
+
...defaultWfConfig,
|
2888
2854
|
printTableRef: "",
|
2889
2855
|
printItems: [],
|
2890
2856
|
|
@@ -2896,6 +2862,7 @@ export const advancedFields = [
|
|
2896
2862
|
{
|
2897
2863
|
type: "baseAttachment",
|
2898
2864
|
icon: "file-upload-field",
|
2865
|
+
columnFlag: true,
|
2899
2866
|
formItemFlag: !0,
|
2900
2867
|
tableField: null,
|
2901
2868
|
options: {
|
@@ -2916,11 +2883,8 @@ export const advancedFields = [
|
|
2916
2883
|
entityTableDesc: null,
|
2917
2884
|
onCreated: "",
|
2918
2885
|
onMounted: "",
|
2919
|
-
|
2920
|
-
|
2921
|
-
enabledByWf: false,
|
2922
|
-
hiddenByWf: false,
|
2923
|
-
wfConfigData: [],
|
2886
|
+
onAfterConfirmFile: "",
|
2887
|
+
...defaultWfConfig,
|
2924
2888
|
|
2925
2889
|
showRuleFlag: 1,
|
2926
2890
|
showRuleEnabled: 1,
|
@@ -2931,6 +2895,7 @@ export const advancedFields = [
|
|
2931
2895
|
type: "status",
|
2932
2896
|
icon: "status",
|
2933
2897
|
commonFlag: !0,
|
2898
|
+
columnFlag: true,
|
2934
2899
|
formItemFlag: !0,
|
2935
2900
|
tableField: null,
|
2936
2901
|
options: {
|
@@ -2949,6 +2914,7 @@ export const advancedFields = [
|
|
2949
2914
|
statusParam: [],
|
2950
2915
|
onCreated: "",
|
2951
2916
|
onMounted: "",
|
2917
|
+
...defaultWfConfig,
|
2952
2918
|
|
2953
2919
|
showRuleFlag: 1,
|
2954
2920
|
showRuleEnabled: 1,
|
@@ -2995,9 +2961,10 @@ export const advancedFields = [
|
|
2995
2961
|
formScriptEnabled: true,
|
2996
2962
|
formScriptCode: "",
|
2997
2963
|
formScriptParam: null,
|
2964
|
+
formScriptSuccess: null,
|
2998
2965
|
onCreated: "",
|
2999
2966
|
onMounted: "",
|
3000
|
-
|
2967
|
+
...defaultWfConfig,
|
3001
2968
|
showRuleFlag: 1,
|
3002
2969
|
showRuleEnabled: 1,
|
3003
2970
|
showRules: []
|
@@ -3006,14 +2973,15 @@ export const advancedFields = [
|
|
3006
2973
|
{
|
3007
2974
|
type: "project-tag",
|
3008
2975
|
icon: "uploadbox",
|
3009
|
-
|
2976
|
+
commonFlag: !0,
|
2977
|
+
columnFlag: true,
|
3010
2978
|
formItemFlag: !0,
|
3011
2979
|
tableField: null,
|
3012
2980
|
options: {
|
3013
2981
|
name: "",
|
3014
2982
|
keyNameEnabled: !1,
|
3015
2983
|
keyName: "",
|
3016
|
-
keyNameSuffix: "",
|
2984
|
+
// keyNameSuffix: "",
|
3017
2985
|
label: "",
|
3018
2986
|
submitFlag: true,
|
3019
2987
|
disabled: !1,
|
@@ -3022,21 +2990,31 @@ export const advancedFields = [
|
|
3022
2990
|
required: !1,
|
3023
2991
|
labelWidth: null,
|
3024
2992
|
labelHidden: !1,
|
3025
|
-
onCreated: "if(this.
|
2993
|
+
onCreated: "if(this.dataId)this.loadDataDefaultHandle();",
|
3026
2994
|
onMounted: "",
|
3027
|
-
|
2995
|
+
onClick: "",
|
2996
|
+
// vabUpload: 1,
|
3028
2997
|
formScriptEnabled: true,
|
3029
2998
|
formScriptCode: "getList",
|
3030
2999
|
formScriptParam: null,
|
3031
|
-
|
3032
|
-
|
3033
|
-
enabledByWf: false,
|
3034
|
-
hiddenByWf: false,
|
3035
|
-
wfConfigData: [],
|
3000
|
+
formScriptSuccess: null,
|
3001
|
+
...defaultWfConfig,
|
3036
3002
|
|
3037
3003
|
showRuleFlag: 1,
|
3038
3004
|
showRuleEnabled: 1,
|
3039
|
-
showRules: []
|
3005
|
+
showRules: [],
|
3006
|
+
|
3007
|
+
tagFormCode: null,
|
3008
|
+
tagFormParam: null,
|
3009
|
+
tagLabelField: null,
|
3010
|
+
tagUniqueField: null,
|
3011
|
+
tagFormLabelField: null,
|
3012
|
+
tagFormUniqueField: null,
|
3013
|
+
tagFillConfig: [],
|
3014
|
+
tagConfirmCallback: null,
|
3015
|
+
tagDeleteCallback: null,
|
3016
|
+
tabDeleteEnabled: false,
|
3017
|
+
|
3040
3018
|
}
|
3041
3019
|
},
|
3042
3020
|
{
|
@@ -3058,9 +3036,10 @@ export const advancedFields = [
|
|
3058
3036
|
formScriptEnabled: true,
|
3059
3037
|
formScriptCode: "",
|
3060
3038
|
formScriptParam: null,
|
3039
|
+
formScriptSuccess: null,
|
3061
3040
|
onCreated: "this.loadDataDefaultHandle()",
|
3062
3041
|
onMounted: "",
|
3063
|
-
|
3042
|
+
...defaultWfConfig,
|
3064
3043
|
showRuleFlag: 1,
|
3065
3044
|
showRuleEnabled: 1,
|
3066
3045
|
showRules: []
|