cloud-web-corejs 1.0.54-dev.17 → 1.0.54-dev.171
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 +1 -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 -735
- 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 +37 -6
- 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 +34 -5
- package/src/components/xform/form-designer/form-widget/field-widget/button-widget.vue +1 -1
- package/src/components/xform/form-designer/form-widget/field-widget/checkbox-widget.vue +14 -6
- 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 +1330 -16
- package/src/components/xform/form-designer/form-widget/field-widget/form-item-wrapper.vue +170 -6
- package/src/components/xform/form-designer/form-widget/field-widget/import-button-widget.vue +4 -7
- package/src/components/xform/form-designer/form-widget/field-widget/import2-button-widget.vue +80 -0
- package/src/components/xform/form-designer/form-widget/field-widget/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 +13 -5
- package/src/components/xform/form-designer/form-widget/field-widget/select-widget.vue +11 -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 +1 -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 +1054 -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 +812 -455
- 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 +19 -8
- package/src/components/xform/form-designer/setting-panel/property-editor/field-import-button/import2-button-editor.vue +80 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/field-rate/rate-defaultValue-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-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 +217 -18
- 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 +6 -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 +1 -1
- package/src/components/xform/form-designer/widget-panel/widgetsConfig.js +279 -254
- package/src/components/xform/form-render/container-item/containerItemMixin.js +1 -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 +18 -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 +2 -23
- package/src/components/xform/lang/zh-CN.js +2 -1
- package/src/components/xform/mixins/defaultHandle.js +1 -1
- package/src/components/xform/mixins/scriptHttp.js +3 -1
- package/src/components/xform/utils/emitter.js +4 -4
- package/src/components/xform/utils/util.js +1 -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 +835 -426
- package/src/views/bd/setting/table_model/mixins/edit.js +12 -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 -5
- 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,9 +284,11 @@ 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: [],
|
291
|
+
hideGridCheckBox:false
|
283
292
|
}
|
284
293
|
},
|
285
294
|
/*{
|
@@ -748,7 +757,6 @@ export const containers = [
|
|
748
757
|
}
|
749
758
|
]
|
750
759
|
|
751
|
-
|
752
760
|
export const defaultSearchDialogConfig = {
|
753
761
|
formCode: null,
|
754
762
|
tableEnabled: false,
|
@@ -757,7 +765,33 @@ export const defaultSearchDialogConfig = {
|
|
757
765
|
tableRef: null,
|
758
766
|
tableUniqueKey: null,
|
759
767
|
tableData: [],
|
760
|
-
multipleChoices: true
|
768
|
+
multipleChoices: true,
|
769
|
+
confirmCallback: null
|
770
|
+
}
|
771
|
+
|
772
|
+
export const defaultWfConfig = {
|
773
|
+
wfFlag: 1,
|
774
|
+
wfEdit: false,
|
775
|
+
enabledByWf: false,
|
776
|
+
hiddenByWf: false,
|
777
|
+
wfConfigData: [],
|
778
|
+
wfModifyDataEnabled: false,
|
779
|
+
wfModifyDataConfig: [],
|
780
|
+
}
|
781
|
+
|
782
|
+
export const defaultTextFlagConfig = {
|
783
|
+
widgetTextFlag: null,
|
784
|
+
textFlag: 1,
|
785
|
+
showTextEnabled: false,
|
786
|
+
showEncryptTextEnabled: false,
|
787
|
+
userTextRuleEnabled: false,
|
788
|
+
userTextRuleConfig: [],
|
789
|
+
textRule1: true,
|
790
|
+
textRule2: false,
|
791
|
+
textRule2Number: null,
|
792
|
+
textRule3: false,
|
793
|
+
textRule3Number: null,
|
794
|
+
widgetTextLinkConfig:null
|
761
795
|
}
|
762
796
|
|
763
797
|
export const basicFields = [
|
@@ -765,6 +799,7 @@ export const basicFields = [
|
|
765
799
|
type: "input",
|
766
800
|
icon: "text-field",
|
767
801
|
formItemFlag: !0,
|
802
|
+
columnFlag: true,
|
768
803
|
tableField: null,
|
769
804
|
options: {
|
770
805
|
name: "",
|
@@ -813,27 +848,20 @@ export const basicFields = [
|
|
813
848
|
onAppendButtonClick: "",
|
814
849
|
widgetWidth: "",
|
815
850
|
accessType: "1",
|
816
|
-
|
817
|
-
wfEdit: false,
|
818
|
-
enabledByWf: false,
|
819
|
-
hiddenByWf: false,
|
820
|
-
wfConfigData: [],
|
851
|
+
...defaultWfConfig,
|
821
852
|
|
822
853
|
showRuleFlag: 1,
|
823
854
|
showRuleEnabled: 1,
|
824
855
|
showRules: [],
|
825
|
-
|
826
|
-
|
827
|
-
textRule2: false,
|
828
|
-
textRule3: false,
|
829
|
-
textRule2Number: null,
|
830
|
-
textRule3Number: null
|
856
|
+
|
857
|
+
...defaultTextFlagConfig
|
831
858
|
}
|
832
859
|
},
|
833
860
|
{
|
834
861
|
type: "input-batch",
|
835
862
|
icon: "input-batch",
|
836
863
|
formItemFlag: !0,
|
864
|
+
columnFlag: true,
|
837
865
|
tableField: null,
|
838
866
|
options: {
|
839
867
|
name: "",
|
@@ -881,21 +909,12 @@ export const basicFields = [
|
|
881
909
|
onAppendButtonClick: "",
|
882
910
|
widgetWidth: "",
|
883
911
|
accessType: "1",
|
884
|
-
|
885
|
-
wfEdit: false,
|
886
|
-
enabledByWf: false,
|
887
|
-
hiddenByWf: false,
|
888
|
-
wfConfigData: [],
|
912
|
+
...defaultWfConfig,
|
889
913
|
|
890
914
|
showRuleFlag: 1,
|
891
915
|
showRuleEnabled: 1,
|
892
916
|
showRules: [],
|
893
|
-
|
894
|
-
textRule1: false,
|
895
|
-
textRule2: false,
|
896
|
-
textRule3: false,
|
897
|
-
textRule2Number: null,
|
898
|
-
textRule3Number: null
|
917
|
+
|
899
918
|
|
900
919
|
}
|
901
920
|
},
|
@@ -903,6 +922,7 @@ export const basicFields = [
|
|
903
922
|
type: "textarea",
|
904
923
|
icon: "textarea-field",
|
905
924
|
formItemFlag: !0,
|
925
|
+
columnFlag: true,
|
906
926
|
tableField: null,
|
907
927
|
options: {
|
908
928
|
name: "",
|
@@ -941,27 +961,20 @@ export const basicFields = [
|
|
941
961
|
onBlur: "",
|
942
962
|
onValidate: "",
|
943
963
|
accessType: "1",
|
944
|
-
|
945
|
-
wfEdit: false,
|
946
|
-
enabledByWf: false,
|
947
|
-
hiddenByWf: false,
|
948
|
-
wfConfigData: [],
|
964
|
+
...defaultWfConfig,
|
949
965
|
|
950
966
|
showRuleFlag: 1,
|
951
967
|
showRuleEnabled: 1,
|
952
968
|
showRules: [],
|
953
|
-
|
954
|
-
|
955
|
-
textRule2: false,
|
956
|
-
textRule3: false,
|
957
|
-
textRule2Number: null,
|
958
|
-
textRule3Number: null
|
969
|
+
|
970
|
+
...defaultTextFlagConfig
|
959
971
|
}
|
960
972
|
},
|
961
973
|
{
|
962
974
|
type: "number",
|
963
975
|
icon: "number-field",
|
964
976
|
formItemFlag: !0,
|
977
|
+
columnFlag: true,
|
965
978
|
tableField: null,
|
966
979
|
options: {
|
967
980
|
name: "",
|
@@ -984,8 +997,8 @@ export const basicFields = [
|
|
984
997
|
requiredHint: "",
|
985
998
|
validation: "",
|
986
999
|
validationHint: "",
|
987
|
-
|
988
|
-
|
1000
|
+
formulaEnabled: !1,
|
1001
|
+
formula: "",
|
989
1002
|
customClass: "",
|
990
1003
|
labelIconClass: null,
|
991
1004
|
labelIconPosition: "rear",
|
@@ -1002,21 +1015,13 @@ export const basicFields = [
|
|
1002
1015
|
onBlur: "",
|
1003
1016
|
onValidate: "",
|
1004
1017
|
accessType: "1",
|
1005
|
-
|
1006
|
-
wfEdit: false,
|
1007
|
-
enabledByWf: false,
|
1008
|
-
hiddenByWf: false,
|
1009
|
-
wfConfigData: [],
|
1018
|
+
...defaultWfConfig,
|
1010
1019
|
|
1011
1020
|
showRuleFlag: 1,
|
1012
1021
|
showRuleEnabled: 1,
|
1013
1022
|
showRules: [],
|
1014
|
-
|
1015
|
-
|
1016
|
-
textRule2: false,
|
1017
|
-
textRule3: false,
|
1018
|
-
textRule2Number: null,
|
1019
|
-
textRule3Number: null
|
1023
|
+
|
1024
|
+
...defaultTextFlagConfig
|
1020
1025
|
|
1021
1026
|
}
|
1022
1027
|
},
|
@@ -1024,6 +1029,7 @@ export const basicFields = [
|
|
1024
1029
|
type: "radio",
|
1025
1030
|
icon: "radio-field",
|
1026
1031
|
formItemFlag: !0,
|
1032
|
+
columnFlag: true,
|
1027
1033
|
tableField: null,
|
1028
1034
|
options: {
|
1029
1035
|
name: "",
|
@@ -1076,27 +1082,23 @@ export const basicFields = [
|
|
1076
1082
|
formScriptEnabled: false,
|
1077
1083
|
formScriptCode: "getList",
|
1078
1084
|
formScriptParam: null,
|
1079
|
-
|
1080
|
-
|
1081
|
-
|
1082
|
-
|
1083
|
-
|
1085
|
+
formScriptSuccess: null,
|
1086
|
+
...defaultWfConfig,
|
1087
|
+
|
1088
|
+
commonAttributeEnabled: false,
|
1089
|
+
commonAttributeCode: "",
|
1084
1090
|
|
1085
1091
|
showRuleFlag: 1,
|
1086
1092
|
showRuleEnabled: 1,
|
1087
1093
|
showRules: [],
|
1088
|
-
|
1089
|
-
textRule1: false,
|
1090
|
-
textRule2: false,
|
1091
|
-
textRule3: false,
|
1092
|
-
textRule2Number: null,
|
1093
|
-
textRule3Number: null
|
1094
|
+
|
1094
1095
|
}
|
1095
1096
|
},
|
1096
1097
|
{
|
1097
1098
|
type: "checkbox",
|
1098
1099
|
icon: "checkbox-field",
|
1099
1100
|
formItemFlag: !0,
|
1101
|
+
columnFlag: true,
|
1100
1102
|
tableField: null,
|
1101
1103
|
options: {
|
1102
1104
|
name: "",
|
@@ -1149,21 +1151,16 @@ export const basicFields = [
|
|
1149
1151
|
formScriptEnabled: false,
|
1150
1152
|
formScriptCode: "getList",
|
1151
1153
|
formScriptParam: null,
|
1152
|
-
|
1153
|
-
|
1154
|
-
|
1155
|
-
|
1156
|
-
|
1154
|
+
formScriptSuccess: null,
|
1155
|
+
...defaultWfConfig,
|
1156
|
+
|
1157
|
+
commonAttributeEnabled: false,
|
1158
|
+
commonAttributeCode: "",
|
1157
1159
|
|
1158
1160
|
showRuleFlag: 1,
|
1159
1161
|
showRuleEnabled: 1,
|
1160
1162
|
showRules: [],
|
1161
|
-
|
1162
|
-
textRule1: false,
|
1163
|
-
textRule2: false,
|
1164
|
-
textRule3: false,
|
1165
|
-
textRule2Number: null,
|
1166
|
-
textRule3Number: null
|
1163
|
+
|
1167
1164
|
|
1168
1165
|
}
|
1169
1166
|
},
|
@@ -1171,6 +1168,7 @@ export const basicFields = [
|
|
1171
1168
|
type: "select",
|
1172
1169
|
icon: "select-field",
|
1173
1170
|
formItemFlag: !0,
|
1171
|
+
columnFlag: true,
|
1174
1172
|
tableField: null,
|
1175
1173
|
options: {
|
1176
1174
|
name: "",
|
@@ -1233,27 +1231,22 @@ export const basicFields = [
|
|
1233
1231
|
formScriptEnabled: false,
|
1234
1232
|
formScriptCode: "getList",
|
1235
1233
|
formScriptParam: null,
|
1236
|
-
|
1237
|
-
|
1238
|
-
|
1239
|
-
|
1240
|
-
|
1234
|
+
formScriptSuccess: null,
|
1235
|
+
...defaultWfConfig,
|
1236
|
+
|
1237
|
+
commonAttributeEnabled: false,
|
1238
|
+
commonAttributeCode: "",
|
1241
1239
|
|
1242
1240
|
showRuleFlag: 1,
|
1243
1241
|
showRuleEnabled: 1,
|
1244
1242
|
showRules: [],
|
1245
|
-
textFlag: 1,
|
1246
|
-
textRule1: false,
|
1247
|
-
textRule2: false,
|
1248
|
-
textRule3: false,
|
1249
|
-
textRule2Number: null,
|
1250
|
-
textRule3Number: null
|
1251
1243
|
}
|
1252
1244
|
},
|
1253
1245
|
{
|
1254
1246
|
type: "time",
|
1255
1247
|
icon: "time-field",
|
1256
1248
|
formItemFlag: !0,
|
1249
|
+
columnFlag: true,
|
1257
1250
|
tableField: null,
|
1258
1251
|
options: {
|
1259
1252
|
name: "",
|
@@ -1291,21 +1284,13 @@ export const basicFields = [
|
|
1291
1284
|
onBlur: "",
|
1292
1285
|
onValidate: "",
|
1293
1286
|
accessType: "1",
|
1294
|
-
|
1295
|
-
wfEdit: false,
|
1296
|
-
enabledByWf: false,
|
1297
|
-
hiddenByWf: false,
|
1298
|
-
wfConfigData: [],
|
1287
|
+
...defaultWfConfig,
|
1299
1288
|
|
1300
1289
|
showRuleFlag: 1,
|
1301
1290
|
showRuleEnabled: 1,
|
1302
1291
|
showRules: [],
|
1303
|
-
|
1304
|
-
|
1305
|
-
textRule2: false,
|
1306
|
-
textRule3: false,
|
1307
|
-
textRule2Number: null,
|
1308
|
-
textRule3Number: null
|
1292
|
+
|
1293
|
+
...defaultTextFlagConfig
|
1309
1294
|
|
1310
1295
|
}
|
1311
1296
|
},
|
@@ -1313,6 +1298,7 @@ export const basicFields = [
|
|
1313
1298
|
type: "time-range",
|
1314
1299
|
icon: "time-range-field",
|
1315
1300
|
formItemFlag: !0,
|
1301
|
+
columnFlag: true,
|
1316
1302
|
tableField: null,
|
1317
1303
|
options: {
|
1318
1304
|
name: "",
|
@@ -1350,21 +1336,12 @@ export const basicFields = [
|
|
1350
1336
|
onBlur: "",
|
1351
1337
|
onValidate: "",
|
1352
1338
|
accessType: "1",
|
1353
|
-
|
1354
|
-
wfEdit: false,
|
1355
|
-
enabledByWf: false,
|
1356
|
-
hiddenByWf: false,
|
1357
|
-
wfConfigData: [],
|
1339
|
+
...defaultWfConfig,
|
1358
1340
|
|
1359
1341
|
showRuleFlag: 1,
|
1360
1342
|
showRuleEnabled: 1,
|
1361
1343
|
showRules: [],
|
1362
|
-
|
1363
|
-
textRule1: false,
|
1364
|
-
textRule2: false,
|
1365
|
-
textRule3: false,
|
1366
|
-
textRule2Number: null,
|
1367
|
-
textRule3Number: null
|
1344
|
+
|
1368
1345
|
|
1369
1346
|
}
|
1370
1347
|
},
|
@@ -1372,6 +1349,7 @@ export const basicFields = [
|
|
1372
1349
|
type: "date",
|
1373
1350
|
icon: "date-field",
|
1374
1351
|
formItemFlag: !0,
|
1352
|
+
columnFlag: true,
|
1375
1353
|
tableField: null,
|
1376
1354
|
options: {
|
1377
1355
|
name: "",
|
@@ -1411,21 +1389,13 @@ export const basicFields = [
|
|
1411
1389
|
onBlur: "",
|
1412
1390
|
onValidate: "",
|
1413
1391
|
accessType: "1",
|
1414
|
-
|
1415
|
-
wfEdit: false,
|
1416
|
-
enabledByWf: false,
|
1417
|
-
hiddenByWf: false,
|
1418
|
-
wfConfigData: [],
|
1392
|
+
...defaultWfConfig,
|
1419
1393
|
|
1420
1394
|
showRuleFlag: 1,
|
1421
1395
|
showRuleEnabled: 1,
|
1422
1396
|
showRules: [],
|
1423
|
-
|
1424
|
-
|
1425
|
-
textRule2: false,
|
1426
|
-
textRule3: false,
|
1427
|
-
textRule2Number: null,
|
1428
|
-
textRule3Number: null
|
1397
|
+
|
1398
|
+
...defaultTextFlagConfig
|
1429
1399
|
|
1430
1400
|
}
|
1431
1401
|
},
|
@@ -1433,6 +1403,7 @@ export const basicFields = [
|
|
1433
1403
|
type: "date-range",
|
1434
1404
|
icon: "date-range-field",
|
1435
1405
|
formItemFlag: !0,
|
1406
|
+
columnFlag: true,
|
1436
1407
|
tableField: null,
|
1437
1408
|
options: {
|
1438
1409
|
name: "",
|
@@ -1457,6 +1428,7 @@ export const basicFields = [
|
|
1457
1428
|
editable: !1,
|
1458
1429
|
format: "yyyy-MM-dd",
|
1459
1430
|
valueFormat: "yyyy-MM-dd",
|
1431
|
+
defaultTime: ['00:00:00', '23:59:59'],
|
1460
1432
|
required: !1,
|
1461
1433
|
requiredHint: "",
|
1462
1434
|
validation: "",
|
@@ -1472,21 +1444,11 @@ export const basicFields = [
|
|
1472
1444
|
onBlur: "",
|
1473
1445
|
onValidate: "",
|
1474
1446
|
accessType: "1",
|
1475
|
-
|
1476
|
-
wfEdit: false,
|
1477
|
-
enabledByWf: false,
|
1478
|
-
hiddenByWf: false,
|
1479
|
-
wfConfigData: [],
|
1447
|
+
...defaultWfConfig,
|
1480
1448
|
|
1481
1449
|
showRuleFlag: 1,
|
1482
1450
|
showRuleEnabled: 1,
|
1483
1451
|
showRules: [],
|
1484
|
-
textFlag: 1,
|
1485
|
-
textRule1: false,
|
1486
|
-
textRule2: false,
|
1487
|
-
textRule3: false,
|
1488
|
-
textRule2Number: null,
|
1489
|
-
textRule3Number: null
|
1490
1452
|
|
1491
1453
|
}
|
1492
1454
|
},
|
@@ -1618,6 +1580,7 @@ export const basicFields = [
|
|
1618
1580
|
type: "static-text",
|
1619
1581
|
icon: "static-text",
|
1620
1582
|
formItemFlag: !1,
|
1583
|
+
columnFlag: true,
|
1621
1584
|
options: {
|
1622
1585
|
name: "",
|
1623
1586
|
columnWidth: "200px",
|
@@ -1628,16 +1591,13 @@ export const basicFields = [
|
|
1628
1591
|
onCreated: "",
|
1629
1592
|
onMounted: "",
|
1630
1593
|
accessType: "1",
|
1594
|
+
...defaultWfConfig,
|
1631
1595
|
|
1632
1596
|
showRuleFlag: 1,
|
1633
1597
|
showRuleEnabled: 1,
|
1634
1598
|
showRules: [],
|
1635
|
-
|
1636
|
-
|
1637
|
-
textRule2: false,
|
1638
|
-
textRule3: false,
|
1639
|
-
textRule2Number: null,
|
1640
|
-
textRule3Number: null
|
1599
|
+
|
1600
|
+
...defaultTextFlagConfig
|
1641
1601
|
|
1642
1602
|
}
|
1643
1603
|
},
|
@@ -1645,6 +1605,7 @@ export const basicFields = [
|
|
1645
1605
|
type: "html-text",
|
1646
1606
|
icon: "html-text",
|
1647
1607
|
formItemFlag: !1,
|
1608
|
+
columnFlag: true,
|
1648
1609
|
options: {
|
1649
1610
|
name: "",
|
1650
1611
|
columnWidth: "200px",
|
@@ -1654,16 +1615,11 @@ export const basicFields = [
|
|
1654
1615
|
onCreated: "",
|
1655
1616
|
onMounted: "",
|
1656
1617
|
accessType: "1",
|
1618
|
+
...defaultWfConfig,
|
1657
1619
|
|
1658
1620
|
showRuleFlag: 1,
|
1659
1621
|
showRuleEnabled: 1,
|
1660
1622
|
showRules: [],
|
1661
|
-
textFlag: 1,
|
1662
|
-
textRule1: false,
|
1663
|
-
textRule2: false,
|
1664
|
-
textRule3: false,
|
1665
|
-
textRule2Number: null,
|
1666
|
-
textRule3Number: null
|
1667
1623
|
|
1668
1624
|
}
|
1669
1625
|
},
|
@@ -1688,6 +1644,7 @@ export const basicFields = [
|
|
1688
1644
|
type: "button",
|
1689
1645
|
icon: "button",
|
1690
1646
|
formItemFlag: !1,
|
1647
|
+
columnFlag: true,
|
1691
1648
|
options: {
|
1692
1649
|
name: "",
|
1693
1650
|
label: "",
|
@@ -1714,27 +1671,19 @@ export const basicFields = [
|
|
1714
1671
|
tableRef: null,
|
1715
1672
|
tableData: {}
|
1716
1673
|
},
|
1717
|
-
|
1718
|
-
wfEdit: false,
|
1719
|
-
enabledByWf: false,
|
1720
|
-
hiddenByWf: false,
|
1721
|
-
wfConfigData: [],
|
1674
|
+
...defaultWfConfig,
|
1722
1675
|
|
1723
1676
|
showRuleFlag: 1,
|
1724
1677
|
showRuleEnabled: 1,
|
1725
1678
|
showRules: [],
|
1726
|
-
|
1727
|
-
textRule1: false,
|
1728
|
-
textRule2: false,
|
1729
|
-
textRule3: false,
|
1730
|
-
textRule2Number: null,
|
1731
|
-
textRule3Number: null
|
1679
|
+
|
1732
1680
|
}
|
1733
1681
|
},
|
1734
1682
|
{
|
1735
1683
|
type: "divider",
|
1736
1684
|
icon: "divider",
|
1737
1685
|
formItemFlag: !1,
|
1686
|
+
columnFlag: true,
|
1738
1687
|
options: {
|
1739
1688
|
name: "",
|
1740
1689
|
label: "",
|
@@ -1743,6 +1692,7 @@ export const basicFields = [
|
|
1743
1692
|
contentPosition: "center",
|
1744
1693
|
hidden: !1,
|
1745
1694
|
customClass: "",
|
1695
|
+
...defaultWfConfig,
|
1746
1696
|
onCreated: "",
|
1747
1697
|
onMounted: ""
|
1748
1698
|
}
|
@@ -1805,6 +1755,7 @@ export const basicFields = [
|
|
1805
1755
|
type: "text",
|
1806
1756
|
icon: "text",
|
1807
1757
|
formItemFlag: !0,
|
1758
|
+
columnFlag: true,
|
1808
1759
|
tableField: null,
|
1809
1760
|
options: {
|
1810
1761
|
name: "",
|
@@ -1824,28 +1775,30 @@ export const basicFields = [
|
|
1824
1775
|
onMounted: "",
|
1825
1776
|
accessType: "1",
|
1826
1777
|
labelColor: '#555555',
|
1778
|
+
...defaultWfConfig,
|
1779
|
+
|
1780
|
+
autoValueEnabled: false,
|
1781
|
+
autoValueHanlde: null,
|
1827
1782
|
|
1828
1783
|
showRuleFlag: 1,
|
1829
1784
|
showRuleEnabled: 1,
|
1830
1785
|
showRules: [],
|
1831
|
-
|
1832
|
-
|
1833
|
-
textRule2: false,
|
1834
|
-
textRule3: false,
|
1835
|
-
textRule2Number: null,
|
1836
|
-
textRule3Number: null
|
1786
|
+
|
1787
|
+
...defaultTextFlagConfig
|
1837
1788
|
}
|
1838
1789
|
},
|
1839
1790
|
{
|
1840
1791
|
type: "a-text",
|
1841
1792
|
icon: "text-field",
|
1842
1793
|
formItemFlag: !0,
|
1794
|
+
columnFlag: true,
|
1843
1795
|
tableField: null,
|
1844
1796
|
options: {
|
1845
1797
|
name: "",
|
1846
1798
|
keyNameEnabled: !1,
|
1847
1799
|
keyName: "",
|
1848
1800
|
label: "",
|
1801
|
+
displayStyle: "block",
|
1849
1802
|
submitFlag: true,
|
1850
1803
|
/**showText: false,*/
|
1851
1804
|
formField: "",
|
@@ -1872,32 +1825,26 @@ export const basicFields = [
|
|
1872
1825
|
onChange: "",
|
1873
1826
|
onClick: "",
|
1874
1827
|
accessType: "1",
|
1875
|
-
|
1876
|
-
wfEdit: false,
|
1877
|
-
enabledByWf: false,
|
1878
|
-
hiddenByWf: false,
|
1879
|
-
wfConfigData: [],
|
1828
|
+
...defaultWfConfig,
|
1880
1829
|
|
1881
1830
|
showRuleFlag: 1,
|
1882
1831
|
showRuleEnabled: 1,
|
1883
1832
|
showRules: [],
|
1884
|
-
|
1885
|
-
|
1886
|
-
textRule2: false,
|
1887
|
-
textRule3: false,
|
1888
|
-
textRule2Number: null,
|
1889
|
-
textRule3Number: null
|
1833
|
+
|
1834
|
+
...defaultTextFlagConfig
|
1890
1835
|
}
|
1891
1836
|
},
|
1892
1837
|
{
|
1893
1838
|
type: "a-link",
|
1894
1839
|
icon: "button",
|
1895
1840
|
formItemFlag: !1,
|
1841
|
+
columnFlag: true,
|
1896
1842
|
options: {
|
1897
1843
|
name: "",
|
1898
1844
|
keyNameEnabled: !1,
|
1899
1845
|
keyName: "",
|
1900
1846
|
label: "",
|
1847
|
+
displayStyle: "block",
|
1901
1848
|
labelHidden: !1,
|
1902
1849
|
disabled: !1,
|
1903
1850
|
hidden: !1,
|
@@ -1907,7 +1854,7 @@ export const basicFields = [
|
|
1907
1854
|
aLinkFlag: 1,
|
1908
1855
|
underline: false,
|
1909
1856
|
href: "",
|
1910
|
-
coloClass: "f-
|
1857
|
+
coloClass: "f-blue",
|
1911
1858
|
isFormLabel: false,
|
1912
1859
|
onCreated: "",
|
1913
1860
|
onMounted: "",
|
@@ -1920,21 +1867,13 @@ export const basicFields = [
|
|
1920
1867
|
tableRef: null,
|
1921
1868
|
tableData: {}
|
1922
1869
|
},
|
1923
|
-
|
1924
|
-
wfEdit: false,
|
1925
|
-
enabledByWf: false,
|
1926
|
-
hiddenByWf: false,
|
1927
|
-
wfConfigData: [],
|
1870
|
+
...defaultWfConfig,
|
1928
1871
|
|
1929
1872
|
showRuleFlag: 1,
|
1930
1873
|
showRuleEnabled: 1,
|
1931
1874
|
showRules: [],
|
1932
|
-
|
1933
|
-
|
1934
|
-
textRule2: false,
|
1935
|
-
textRule3: false,
|
1936
|
-
textRule2Number: null,
|
1937
|
-
textRule3Number: null
|
1875
|
+
|
1876
|
+
...defaultTextFlagConfig
|
1938
1877
|
}
|
1939
1878
|
},
|
1940
1879
|
|
@@ -1998,10 +1937,11 @@ export const advancedFields = [
|
|
1998
1937
|
color: "",
|
1999
1938
|
fontWeight: "normal"
|
2000
1939
|
},
|
2001
|
-
data: [
|
2002
|
-
|
2003
|
-
|
2004
|
-
|
1940
|
+
data: [
|
1941
|
+
{
|
1942
|
+
value: 1048,
|
1943
|
+
name: 'Search Engine'
|
1944
|
+
},
|
2005
1945
|
{
|
2006
1946
|
value: 735,
|
2007
1947
|
name: 'Direct'
|
@@ -2021,12 +1961,16 @@ export const advancedFields = [
|
|
2021
1961
|
],
|
2022
1962
|
}]
|
2023
1963
|
},
|
1964
|
+
echartConfig: '',
|
2024
1965
|
formScriptEnabled: true,
|
2025
1966
|
formScriptCode: "",
|
2026
1967
|
formScriptParam: null,
|
1968
|
+
formScriptSuccess: null,
|
1969
|
+
onClick: "",
|
2027
1970
|
onCreated: "",
|
2028
1971
|
onMounted: "this.loadDataDefaultHandle()",
|
2029
1972
|
|
1973
|
+
...defaultWfConfig,
|
2030
1974
|
showRuleFlag: 1,
|
2031
1975
|
showRuleEnabled: 1,
|
2032
1976
|
showRules: []
|
@@ -2044,6 +1988,7 @@ export const advancedFields = [
|
|
2044
1988
|
echarBarOption: {
|
2045
1989
|
backgroundColor: "#fff",
|
2046
1990
|
color: ["#5BC1D7", "#FF8A3D", "#56C271", "#694ED6", "#C033A1", "#FFCC10"],
|
1991
|
+
colors: [],
|
2047
1992
|
title: {
|
2048
1993
|
show: true,
|
2049
1994
|
top: '5px',
|
@@ -2190,12 +2135,15 @@ export const advancedFields = [
|
|
2190
2135
|
|
2191
2136
|
}]
|
2192
2137
|
},
|
2138
|
+
echartConfig: '',
|
2193
2139
|
formScriptEnabled: true,
|
2194
2140
|
formScriptCode: "",
|
2195
2141
|
formScriptParam: null,
|
2142
|
+
formScriptSuccess: null,
|
2143
|
+
onClick: "",
|
2196
2144
|
onCreated: "",
|
2197
2145
|
onMounted: "this.loadDataDefaultHandle()",
|
2198
|
-
|
2146
|
+
...defaultWfConfig,
|
2199
2147
|
showRuleFlag: 1,
|
2200
2148
|
showRuleEnabled: 1,
|
2201
2149
|
showRules: []
|
@@ -2214,6 +2162,7 @@ export const advancedFields = [
|
|
2214
2162
|
echarCategoryOption: {
|
2215
2163
|
backgroundColor: "#fff",
|
2216
2164
|
color: ["#5BC1D7", "#FF8A3D", "#56C271", "#694ED6", "#C033A1", "#FFCC10"],
|
2165
|
+
colors: [],
|
2217
2166
|
title: {
|
2218
2167
|
show: true,
|
2219
2168
|
top: '5px',
|
@@ -2324,6 +2273,23 @@ export const advancedFields = [
|
|
2324
2273
|
shadowBlur: 4,
|
2325
2274
|
shadowOffsetY: 6
|
2326
2275
|
},
|
2276
|
+
itemStyle: {
|
2277
|
+
color: {
|
2278
|
+
type: 'linear',
|
2279
|
+
x: 0.5,
|
2280
|
+
y: 0.5,
|
2281
|
+
r: 0.5,
|
2282
|
+
colorStops: [{
|
2283
|
+
offset: 0, color: '#08C084' // 0% 处的颜色
|
2284
|
+
}, {
|
2285
|
+
offset: 1, color: '#97EACE' // 100% 处的颜色
|
2286
|
+
}],
|
2287
|
+
},
|
2288
|
+
cap: 'round',
|
2289
|
+
shadowColor: '#08C08450',
|
2290
|
+
shadowBlur: 4,
|
2291
|
+
shadowOffsetY: 6
|
2292
|
+
},
|
2327
2293
|
emphasis: {
|
2328
2294
|
scale: 1,
|
2329
2295
|
focus: 'series'
|
@@ -2358,6 +2324,23 @@ export const advancedFields = [
|
|
2358
2324
|
shadowBlur: 4,
|
2359
2325
|
shadowOffsetY: 6
|
2360
2326
|
},
|
2327
|
+
itemStyle: {
|
2328
|
+
color: {
|
2329
|
+
type: 'linear',
|
2330
|
+
x: 0.5,
|
2331
|
+
y: 0.5,
|
2332
|
+
r: 0.5,
|
2333
|
+
colorStops: [{
|
2334
|
+
offset: 0, color: '#FF6116' // 0% 处的颜色
|
2335
|
+
}, {
|
2336
|
+
offset: 1, color: '#F9A980' // 100% 处的颜色
|
2337
|
+
}],
|
2338
|
+
},
|
2339
|
+
cap: 'round',
|
2340
|
+
shadowColor: '#FF611650',
|
2341
|
+
shadowBlur: 4,
|
2342
|
+
shadowOffsetY: 6
|
2343
|
+
},
|
2361
2344
|
emphasis: {
|
2362
2345
|
scale: 1,
|
2363
2346
|
focus: 'series'
|
@@ -2367,12 +2350,15 @@ export const advancedFields = [
|
|
2367
2350
|
}]
|
2368
2351
|
|
2369
2352
|
},
|
2353
|
+
echartConfig: '',
|
2370
2354
|
formScriptEnabled: true,
|
2371
2355
|
formScriptCode: "",
|
2372
2356
|
formScriptParam: null,
|
2357
|
+
formScriptSuccess: null,
|
2358
|
+
onClick: "",
|
2373
2359
|
onCreated: "",
|
2374
2360
|
onMounted: "this.loadDataDefaultHandle()",
|
2375
|
-
|
2361
|
+
...defaultWfConfig,
|
2376
2362
|
showRuleFlag: 1,
|
2377
2363
|
showRuleEnabled: 1,
|
2378
2364
|
showRules: []
|
@@ -2507,25 +2493,30 @@ export const advancedFields = [
|
|
2507
2493
|
entityTableDesc: null,
|
2508
2494
|
onCreated: "this.loadDataDefaultHandle();",
|
2509
2495
|
onMounted: "",
|
2496
|
+
onAfterConfirmFile: "",
|
2510
2497
|
vabUpload: 1,
|
2511
2498
|
formScriptEnabled: true,
|
2512
2499
|
formScriptCode: "getList",
|
2513
2500
|
formScriptParam: null,
|
2514
|
-
|
2515
|
-
|
2516
|
-
enabledByWf: false,
|
2517
|
-
hiddenByWf: false,
|
2518
|
-
wfConfigData: [],
|
2501
|
+
formScriptSuccess: null,
|
2502
|
+
...defaultWfConfig,
|
2519
2503
|
|
2520
2504
|
showRuleFlag: 1,
|
2521
2505
|
showRuleEnabled: 1,
|
2522
|
-
showRules: []
|
2506
|
+
showRules: [],
|
2507
|
+
|
2508
|
+
hiddenFileInfo: false,
|
2509
|
+
hiddenFileName: false,
|
2510
|
+
showFileSize: false,
|
2511
|
+
showFileCreateBy: false,
|
2512
|
+
showFileCreateDate: false,
|
2523
2513
|
}
|
2524
2514
|
},
|
2525
2515
|
{
|
2526
2516
|
type: "vabsearch",
|
2527
2517
|
icon: "searchbox",
|
2528
2518
|
commonFlag: !0,
|
2519
|
+
columnFlag: true,
|
2529
2520
|
formItemFlag: !0,
|
2530
2521
|
tableField: null,
|
2531
2522
|
options: {
|
@@ -2564,11 +2555,7 @@ export const advancedFields = [
|
|
2564
2555
|
...defaultSearchDialogConfig,
|
2565
2556
|
multipleChoices: false
|
2566
2557
|
},
|
2567
|
-
|
2568
|
-
wfEdit: false,
|
2569
|
-
enabledByWf: false,
|
2570
|
-
hiddenByWf: false,
|
2571
|
-
wfConfigData: [],
|
2558
|
+
...defaultWfConfig,
|
2572
2559
|
valueField: null,
|
2573
2560
|
multipleChoices: false,
|
2574
2561
|
|
@@ -2582,6 +2569,7 @@ export const advancedFields = [
|
|
2582
2569
|
type: "search_button",
|
2583
2570
|
icon: "button",
|
2584
2571
|
commonFlag: !0,
|
2572
|
+
columnFlag: true,
|
2585
2573
|
formItemFlag: !1,
|
2586
2574
|
options: {
|
2587
2575
|
name: "",
|
@@ -2613,11 +2601,7 @@ export const advancedFields = [
|
|
2613
2601
|
...defaultSearchDialogConfig,
|
2614
2602
|
tableEnabled: true
|
2615
2603
|
},
|
2616
|
-
|
2617
|
-
wfEdit: false,
|
2618
|
-
enabledByWf: false,
|
2619
|
-
hiddenByWf: false,
|
2620
|
-
wfConfigData: [],
|
2604
|
+
...defaultWfConfig,
|
2621
2605
|
|
2622
2606
|
showRuleFlag: 1,
|
2623
2607
|
showRuleEnabled: 1,
|
@@ -2629,6 +2613,7 @@ export const advancedFields = [
|
|
2629
2613
|
targetType: "button",
|
2630
2614
|
icon: "button",
|
2631
2615
|
commonFlag: !0,
|
2616
|
+
columnFlag: true,
|
2632
2617
|
formItemFlag: !1,
|
2633
2618
|
options: {
|
2634
2619
|
name: "",
|
@@ -2654,11 +2639,7 @@ export const advancedFields = [
|
|
2654
2639
|
searchDialogConfig: {
|
2655
2640
|
...defaultSearchDialogConfig
|
2656
2641
|
},
|
2657
|
-
|
2658
|
-
wfEdit: false,
|
2659
|
-
enabledByWf: false,
|
2660
|
-
hiddenByWf: true,
|
2661
|
-
wfConfigData: [],
|
2642
|
+
...defaultWfConfig,
|
2662
2643
|
|
2663
2644
|
showRuleFlag: 1,
|
2664
2645
|
showRuleEnabled: 1,
|
@@ -2671,6 +2652,7 @@ export const advancedFields = [
|
|
2671
2652
|
targetType: "button",
|
2672
2653
|
icon: "button",
|
2673
2654
|
commonFlag: !0,
|
2655
|
+
columnFlag: true,
|
2674
2656
|
formItemFlag: !1,
|
2675
2657
|
options: {
|
2676
2658
|
name: "",
|
@@ -2694,11 +2676,7 @@ export const advancedFields = [
|
|
2694
2676
|
searchDialogConfig: {
|
2695
2677
|
...defaultSearchDialogConfig
|
2696
2678
|
},
|
2697
|
-
|
2698
|
-
wfEdit: false,
|
2699
|
-
enabledByWf: true,
|
2700
|
-
hiddenByWf: false,
|
2701
|
-
wfConfigData: [],
|
2679
|
+
...defaultWfConfig,
|
2702
2680
|
|
2703
2681
|
showRuleFlag: 1,
|
2704
2682
|
showRuleEnabled: 1,
|
@@ -2710,6 +2688,7 @@ export const advancedFields = [
|
|
2710
2688
|
icon: "list-export",
|
2711
2689
|
formItemFlag: !1,
|
2712
2690
|
commonFlag: !0,
|
2691
|
+
columnFlag: true,
|
2713
2692
|
tableField: null,
|
2714
2693
|
options: {
|
2715
2694
|
name: "",
|
@@ -2720,13 +2699,11 @@ export const advancedFields = [
|
|
2720
2699
|
exportFileName: '导出',
|
2721
2700
|
tableRef: '',
|
2722
2701
|
tableExportParam: "",
|
2702
|
+
showImageAtTable: false,
|
2703
|
+
|
2723
2704
|
onCreated: "",
|
2724
2705
|
onMounted: "",
|
2725
|
-
|
2726
|
-
wfEdit: false,
|
2727
|
-
enabledByWf: false,
|
2728
|
-
hiddenByWf: false,
|
2729
|
-
wfConfigData: [],
|
2706
|
+
...defaultWfConfig,
|
2730
2707
|
|
2731
2708
|
showRuleFlag: 1,
|
2732
2709
|
showRuleEnabled: 1,
|
@@ -2739,6 +2716,7 @@ export const advancedFields = [
|
|
2739
2716
|
targetType: "button",
|
2740
2717
|
icon: "button",
|
2741
2718
|
commonFlag: !0,
|
2719
|
+
columnFlag: true,
|
2742
2720
|
formItemFlag: !1,
|
2743
2721
|
options: {
|
2744
2722
|
name: "",
|
@@ -2761,11 +2739,7 @@ export const advancedFields = [
|
|
2761
2739
|
searchDialogConfig: {
|
2762
2740
|
...defaultSearchDialogConfig
|
2763
2741
|
},
|
2764
|
-
|
2765
|
-
wfEdit: false,
|
2766
|
-
enabledByWf: false,
|
2767
|
-
hiddenByWf: false,
|
2768
|
-
wfConfigData: [],
|
2742
|
+
...defaultWfConfig,
|
2769
2743
|
|
2770
2744
|
showRuleFlag: 1,
|
2771
2745
|
showRuleEnabled: 1,
|
@@ -2777,6 +2751,7 @@ export const advancedFields = [
|
|
2777
2751
|
targetType: "button",
|
2778
2752
|
icon: "button",
|
2779
2753
|
commonFlag: !0,
|
2754
|
+
columnFlag: true,
|
2780
2755
|
formItemFlag: !1,
|
2781
2756
|
options: {
|
2782
2757
|
name: "",
|
@@ -2802,11 +2777,7 @@ export const advancedFields = [
|
|
2802
2777
|
searchDialogConfig: {
|
2803
2778
|
...defaultSearchDialogConfig
|
2804
2779
|
},
|
2805
|
-
|
2806
|
-
wfEdit: false,
|
2807
|
-
enabledByWf: false,
|
2808
|
-
hiddenByWf: true,
|
2809
|
-
wfConfigData: [],
|
2780
|
+
...defaultWfConfig,
|
2810
2781
|
|
2811
2782
|
showRuleFlag: 1,
|
2812
2783
|
showRuleEnabled: 1,
|
@@ -2818,12 +2789,14 @@ export const advancedFields = [
|
|
2818
2789
|
type: "import-button",
|
2819
2790
|
icon: "button",
|
2820
2791
|
commonFlag: !0,
|
2792
|
+
columnFlag: true,
|
2821
2793
|
formItemFlag: !1,
|
2822
2794
|
options: {
|
2823
2795
|
name: "",
|
2824
2796
|
label: "导入",
|
2825
2797
|
columnWidth: "200px",
|
2826
2798
|
size: "",
|
2799
|
+
|
2827
2800
|
// displayStyle: "block",
|
2828
2801
|
disabled: !1,
|
2829
2802
|
hidden: !1,
|
@@ -2839,16 +2812,58 @@ export const advancedFields = [
|
|
2839
2812
|
searchDialogConfig: {
|
2840
2813
|
...defaultSearchDialogConfig
|
2841
2814
|
},
|
2842
|
-
|
2843
|
-
|
2844
|
-
|
2845
|
-
hiddenByWf: false,
|
2846
|
-
wfConfigData: [],
|
2815
|
+
...defaultWfConfig,
|
2816
|
+
|
2817
|
+
importFileLimitSize: 200,
|
2847
2818
|
importEntity: '',
|
2848
2819
|
importAttachCode: '',
|
2849
2820
|
importScriptCode: '',
|
2850
2821
|
onBeforeImport: '',
|
2851
2822
|
enabledImportPreHandle: false,
|
2823
|
+
tableRef:'',
|
2824
|
+
onSuccessImport:'',
|
2825
|
+
|
2826
|
+
showRuleFlag: 1,
|
2827
|
+
showRuleEnabled: 1,
|
2828
|
+
showRules: []
|
2829
|
+
},
|
2830
|
+
},
|
2831
|
+
{
|
2832
|
+
type: "import2-button",
|
2833
|
+
icon: "button",
|
2834
|
+
commonFlag: !0,
|
2835
|
+
columnFlag: true,
|
2836
|
+
formItemFlag: !1,
|
2837
|
+
options: {
|
2838
|
+
name: "",
|
2839
|
+
label: "明细导入",
|
2840
|
+
columnWidth: "200px",
|
2841
|
+
size: "",
|
2842
|
+
|
2843
|
+
// displayStyle: "block",
|
2844
|
+
disabled: !1,
|
2845
|
+
hidden: !1,
|
2846
|
+
type: "primary",
|
2847
|
+
/*plain: !1,
|
2848
|
+
round: !1,
|
2849
|
+
circle: !1,
|
2850
|
+
icon: "el-icon-download",*/
|
2851
|
+
customClass: "",
|
2852
|
+
onCreated: "",
|
2853
|
+
onMounted: "",
|
2854
|
+
// clickBindEvent: null,
|
2855
|
+
searchDialogConfig: {
|
2856
|
+
...defaultSearchDialogConfig
|
2857
|
+
},
|
2858
|
+
...defaultWfConfig,
|
2859
|
+
|
2860
|
+
frontImportFlag:1,
|
2861
|
+
importFileLimitSize: 200,
|
2862
|
+
importAttachCode: '',
|
2863
|
+
tableRef:'',
|
2864
|
+
onConfirmImportEnabled:false,
|
2865
|
+
onConfirmImport: '',
|
2866
|
+
onSuccessImport:'',
|
2852
2867
|
|
2853
2868
|
showRuleFlag: 1,
|
2854
2869
|
showRuleEnabled: 1,
|
@@ -2859,6 +2874,7 @@ export const advancedFields = [
|
|
2859
2874
|
type: "print-button",
|
2860
2875
|
icon: "button",
|
2861
2876
|
commonFlag: !0,
|
2877
|
+
columnFlag: true,
|
2862
2878
|
formItemFlag: !1,
|
2863
2879
|
options: {
|
2864
2880
|
name: "",
|
@@ -2880,11 +2896,7 @@ export const advancedFields = [
|
|
2880
2896
|
searchDialogConfig: {
|
2881
2897
|
...defaultSearchDialogConfig
|
2882
2898
|
},
|
2883
|
-
|
2884
|
-
wfEdit: false,
|
2885
|
-
enabledByWf: false,
|
2886
|
-
hiddenByWf: false,
|
2887
|
-
wfConfigData: [],
|
2899
|
+
...defaultWfConfig,
|
2888
2900
|
printTableRef: "",
|
2889
2901
|
printItems: [],
|
2890
2902
|
|
@@ -2896,6 +2908,7 @@ export const advancedFields = [
|
|
2896
2908
|
{
|
2897
2909
|
type: "baseAttachment",
|
2898
2910
|
icon: "file-upload-field",
|
2911
|
+
columnFlag: true,
|
2899
2912
|
formItemFlag: !0,
|
2900
2913
|
tableField: null,
|
2901
2914
|
options: {
|
@@ -2916,11 +2929,8 @@ export const advancedFields = [
|
|
2916
2929
|
entityTableDesc: null,
|
2917
2930
|
onCreated: "",
|
2918
2931
|
onMounted: "",
|
2919
|
-
|
2920
|
-
|
2921
|
-
enabledByWf: false,
|
2922
|
-
hiddenByWf: false,
|
2923
|
-
wfConfigData: [],
|
2932
|
+
onAfterConfirmFile: "",
|
2933
|
+
...defaultWfConfig,
|
2924
2934
|
|
2925
2935
|
showRuleFlag: 1,
|
2926
2936
|
showRuleEnabled: 1,
|
@@ -2931,6 +2941,7 @@ export const advancedFields = [
|
|
2931
2941
|
type: "status",
|
2932
2942
|
icon: "status",
|
2933
2943
|
commonFlag: !0,
|
2944
|
+
columnFlag: true,
|
2934
2945
|
formItemFlag: !0,
|
2935
2946
|
tableField: null,
|
2936
2947
|
options: {
|
@@ -2949,6 +2960,7 @@ export const advancedFields = [
|
|
2949
2960
|
statusParam: [],
|
2950
2961
|
onCreated: "",
|
2951
2962
|
onMounted: "",
|
2963
|
+
...defaultWfConfig,
|
2952
2964
|
|
2953
2965
|
showRuleFlag: 1,
|
2954
2966
|
showRuleEnabled: 1,
|
@@ -2995,9 +3007,10 @@ export const advancedFields = [
|
|
2995
3007
|
formScriptEnabled: true,
|
2996
3008
|
formScriptCode: "",
|
2997
3009
|
formScriptParam: null,
|
3010
|
+
formScriptSuccess: null,
|
2998
3011
|
onCreated: "",
|
2999
3012
|
onMounted: "",
|
3000
|
-
|
3013
|
+
...defaultWfConfig,
|
3001
3014
|
showRuleFlag: 1,
|
3002
3015
|
showRuleEnabled: 1,
|
3003
3016
|
showRules: []
|
@@ -3006,14 +3019,15 @@ export const advancedFields = [
|
|
3006
3019
|
{
|
3007
3020
|
type: "project-tag",
|
3008
3021
|
icon: "uploadbox",
|
3009
|
-
|
3022
|
+
commonFlag: !0,
|
3023
|
+
columnFlag: true,
|
3010
3024
|
formItemFlag: !0,
|
3011
3025
|
tableField: null,
|
3012
3026
|
options: {
|
3013
3027
|
name: "",
|
3014
3028
|
keyNameEnabled: !1,
|
3015
3029
|
keyName: "",
|
3016
|
-
keyNameSuffix: "",
|
3030
|
+
// keyNameSuffix: "",
|
3017
3031
|
label: "",
|
3018
3032
|
submitFlag: true,
|
3019
3033
|
disabled: !1,
|
@@ -3022,21 +3036,31 @@ export const advancedFields = [
|
|
3022
3036
|
required: !1,
|
3023
3037
|
labelWidth: null,
|
3024
3038
|
labelHidden: !1,
|
3025
|
-
onCreated: "if(this.
|
3039
|
+
onCreated: "if(this.dataId)this.loadDataDefaultHandle();",
|
3026
3040
|
onMounted: "",
|
3027
|
-
|
3041
|
+
onClick: "",
|
3042
|
+
// vabUpload: 1,
|
3028
3043
|
formScriptEnabled: true,
|
3029
3044
|
formScriptCode: "getList",
|
3030
3045
|
formScriptParam: null,
|
3031
|
-
|
3032
|
-
|
3033
|
-
enabledByWf: false,
|
3034
|
-
hiddenByWf: false,
|
3035
|
-
wfConfigData: [],
|
3046
|
+
formScriptSuccess: null,
|
3047
|
+
...defaultWfConfig,
|
3036
3048
|
|
3037
3049
|
showRuleFlag: 1,
|
3038
3050
|
showRuleEnabled: 1,
|
3039
|
-
showRules: []
|
3051
|
+
showRules: [],
|
3052
|
+
|
3053
|
+
tagFormCode: null,
|
3054
|
+
tagFormParam: null,
|
3055
|
+
tagLabelField: null,
|
3056
|
+
tagUniqueField: null,
|
3057
|
+
tagFormLabelField: null,
|
3058
|
+
tagFormUniqueField: null,
|
3059
|
+
tagFillConfig: [],
|
3060
|
+
tagConfirmCallback: null,
|
3061
|
+
tagDeleteCallback: null,
|
3062
|
+
tabDeleteEnabled: false,
|
3063
|
+
|
3040
3064
|
}
|
3041
3065
|
},
|
3042
3066
|
{
|
@@ -3058,9 +3082,10 @@ export const advancedFields = [
|
|
3058
3082
|
formScriptEnabled: true,
|
3059
3083
|
formScriptCode: "",
|
3060
3084
|
formScriptParam: null,
|
3085
|
+
formScriptSuccess: null,
|
3061
3086
|
onCreated: "this.loadDataDefaultHandle()",
|
3062
3087
|
onMounted: "",
|
3063
|
-
|
3088
|
+
...defaultWfConfig,
|
3064
3089
|
showRuleFlag: 1,
|
3065
3090
|
showRuleEnabled: 1,
|
3066
3091
|
showRules: []
|