cloud-web-corejs 1.0.54-dev.24 → 1.0.54-dev.240
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 +6 -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 +3 -2
- 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/formOplog/mixins.js +77 -1
- package/src/components/jsonImport/index.js +1 -1
- package/src/components/jsonImport/mixins.js +1 -1
- package/src/components/onlineTalk/index.vue +277 -121
- package/src/components/onlineTalk/mixins.js +1 -1
- package/src/components/statusTag/mixins.js +66 -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/util/index.js +328 -0
- package/src/components/table/vxeFilter/mixin.js +1 -1
- package/src/components/vb-tabs/x-tabs.vue +3 -2
- package/src/components/wf/content.vue +2 -0
- package/src/components/wf/setCandidateDialog.vue +1 -0
- package/src/components/wf/wf.js +1774 -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/container-widget/data-table-mixin.js +2 -1
- package/src/components/xform/form-designer/form-widget/dialog/exportDialog.vue +13 -0
- 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 +26 -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/dropdown-item-widget.vue +77 -0
- package/src/components/xform/form-designer/form-widget/field-widget/dropdown-menu-widget.vue +106 -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 +1400 -16
- package/src/components/xform/form-designer/form-widget/field-widget/form-item-wrapper.vue +200 -6
- package/src/components/xform/form-designer/form-widget/field-widget/import-button-widget.vue +6 -8
- package/src/components/xform/form-designer/form-widget/field-widget/import2-button-widget.vue +81 -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/mixins/vabsearch-mixin.js +176 -0
- package/src/components/xform/form-designer/form-widget/field-widget/multiSearch-widget.vue +53 -0
- package/src/components/xform/form-designer/form-widget/field-widget/number-widget.vue +1 -1
- package/src/components/xform/form-designer/form-widget/field-widget/project-tag-widget.vue +70 -3
- package/src/components/xform/form-designer/form-widget/field-widget/radio-widget.vue +21 -5
- package/src/components/xform/form-designer/form-widget/field-widget/search_button-widget.vue +1 -1
- package/src/components/xform/form-designer/form-widget/field-widget/select-widget.vue +17 -5
- package/src/components/xform/form-designer/form-widget/field-widget/singerSearch-widget.vue +53 -0
- package/src/components/xform/form-designer/form-widget/field-widget/status-widget.vue +6 -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/vabSearch-widget.vue +2 -170
- package/src/components/xform/form-designer/form-widget/field-widget/vabUpload-widget.vue +88 -8
- package/src/components/xform/form-designer/indexMixin.js +811 -1
- package/src/components/xform/form-designer/setting-panel/form-setting.vue +312 -56
- package/src/components/xform/form-designer/setting-panel/index.vue +4 -0
- package/src/components/xform/form-designer/setting-panel/indexMixin.js +1 -1
- package/src/components/xform/form-designer/setting-panel/option-items-setting.vue +8 -3
- package/src/components/xform/form-designer/setting-panel/property-editor/a-link-editor.vue +1 -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 +126 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/data-table-editor.vue +1077 -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 +1043 -496
- 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-detail-pane/detail-pane-editor.vue +3 -3
- 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/container-list-h5/list-h5-editor.vue +0 -8
- 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 +48 -5
- 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-dropdown-menu/dropdown-item-editor.vue +21 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/field-dropdown-menu/dropdown-menu-editor.vue +59 -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 +26 -10
- package/src/components/xform/form-designer/setting-panel/property-editor/field-import-button/import2-button-editor.vue +86 -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-status/field-status-editor.vue +47 -28
- 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-vabSearch/vabSearchName-editor.vue +13 -1
- 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 +46 -4
- package/src/components/xform/form-designer/setting-panel/property-editor/formula-editor.vue +721 -466
- package/src/components/xform/form-designer/setting-panel/property-editor/labelIconClass-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/labelIconPosition-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/labelTooltip-editor.vue +1 -1
- 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/multiple-editor.vue +19 -14
- 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 +318 -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 +216 -17
- package/src/components/xform/form-designer/setting-panel/property-editor/wfFlag-editor.vue +256 -29
- package/src/components/xform/form-designer/setting-panel/property-editor/widgetShowRuleFlag-editor.vue +220 -0
- package/src/components/xform/form-designer/setting-panel/propertyRegister.js +17 -6
- package/src/components/xform/form-designer/toolbar-panel/index.vue +12 -11
- package/src/components/xform/form-designer/toolbar-panel/indexMixin.js +1 -1
- package/src/components/xform/form-designer/widget-panel/index.vue +21 -1
- package/src/components/xform/form-designer/widget-panel/indexMixin.js +3 -2
- package/src/components/xform/form-designer/widget-panel/widgetsConfig.js +755 -362
- package/src/components/xform/form-render/container-item/containerItemMixin.js +1 -1
- package/src/components/xform/form-render/container-item/data-table-item.vue +45 -15
- package/src/components/xform/form-render/container-item/data-table-mixin.js +21 -18
- package/src/components/xform/form-render/container-item/data-table-mixin2.js +2169 -0
- package/src/components/xform/form-render/container-item/detail-pane-item.vue +17 -3
- 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/list-h5-item.vue +1 -9
- package/src/components/xform/form-render/container-item/list-h5-item2.vue +1 -8
- 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 +2379 -3
- package/src/components/xform/lang/zh-CN.js +14 -3
- package/src/components/xform/mixins/defaultHandle.js +1 -1
- package/src/components/xform/mixins/scriptHttp.js +184 -1
- package/src/components/xform/utils/emitter.js +4 -4
- package/src/components/xform/utils/format.js +21 -30
- package/src/components/xform/utils/formula-util.js +669 -0
- package/src/components/xform/utils/util.js +1 -1
- package/src/index.js +1 -1
- package/src/layout/components/AppMain.vue +5 -1
- package/src/layout/components/Sidebar/default.vue +50 -6
- package/src/layout/components/TagsView/index.vue +22 -8
- 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/layout/components/watermark/index.vue +83 -0
- package/src/layout/defaultLayout.vue +1 -1
- package/src/mixins/selectDialog/index.js +1 -1
- package/src/mixins/tableTree/index.js +1 -1
- package/src/router/modules/customer.js +15 -0
- package/src/store/config/index.js +667 -1
- package/src/store/modules/permission.js +1 -1
- package/src/store/modules/settings.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 -357
- package/src/utils/vab.js +19 -27
- package/src/views/bd/setting/bd_attach_setting/edit.vue +5 -5
- package/src/views/bd/setting/bd_attach_setting/list.vue +28 -55
- package/src/views/bd/setting/bd_attach_setting/mixins/edit.js +4 -5
- package/src/views/bd/setting/bd_attach_setting/mixins/list.js +239 -1
- package/src/views/bd/setting/config_manage/list.vue +47 -0
- 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/edit.vue +9 -0
- package/src/views/bd/setting/form_script/edit1.vue +36 -3
- package/src/views/bd/setting/form_script/form_list.vue +1 -1
- package/src/views/bd/setting/form_script/list1.vue +4 -4
- package/src/views/bd/setting/form_script/mixins/dialog.js +130 -1
- package/src/views/bd/setting/form_script/mixins/edit.js +201 -1
- package/src/views/bd/setting/form_script/mixins/edit1.js +193 -1
- package/src/views/bd/setting/form_script/mixins/form_list.js +1 -1
- package/src/views/bd/setting/form_script/mixins/list.js +236 -1
- package/src/views/bd/setting/form_script/mixins/list1.js +422 -14
- package/src/views/bd/setting/form_script/mixins/otherAuthDialog.js +194 -0
- package/src/views/bd/setting/form_script/otherAuthDialog.vue +83 -0
- package/src/views/bd/setting/form_template/batchWfObjConfigDialog.vue +105 -0
- package/src/views/bd/setting/form_template/edit.vue +22 -1
- package/src/views/bd/setting/form_template/editWfObjConfigDialog.vue +2 -2
- package/src/views/bd/setting/form_template/list.vue +5 -5
- package/src/views/bd/setting/form_template/mixins/batchWfObjConfigDialog.js +4 -0
- package/src/views/bd/setting/form_template/mixins/edit.js +201 -1
- package/src/views/bd/setting/form_template/mixins/list.js +688 -22
- package/src/views/bd/setting/form_template/mixins/otherAuthDialog.js +193 -0
- package/src/views/bd/setting/form_template/mixins/wf_list.js +12 -0
- package/src/views/bd/setting/form_template/otherAuthDialog.vue +83 -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/list.vue +4 -0
- package/src/views/bd/setting/menu_kind/mixins/authDialog.js +1 -1
- package/src/views/bd/setting/menu_kind/mixins/list.js +201 -1
- package/src/views/bd/setting/table_model/edit.vue +862 -426
- package/src/views/bd/setting/table_model/list.vue +4 -4
- package/src/views/bd/setting/table_model/mixins/dialog.js +1 -1
- package/src/views/bd/setting/table_model/mixins/edit.js +1130 -13
- package/src/views/bd/setting/table_model/mixins/list.js +439 -14
- package/src/views/bd/setting/table_model/mixins/otherAuthDialog.js +201 -0
- package/src/views/bd/setting/table_model/otherAuthDialog.vue +83 -0
- 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/fieldTranslation/editDialog.vue +7 -7
- package/src/views/user/fieldTranslation/list.vue +32 -32
- 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 +775 -749
- package/src/views/user/form/vform/out_render.vue +1 -1
- package/src/views/user/form/vform/render.vue +3 -3
- package/src/views/user/form/view/list.vue +30 -12
- 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 +1022 -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 +36 -5
- package/src/views/user/login/indexMixin.js +117 -3
- 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 +28 -23
- package/src/views/user/position/dialog.vue +1 -1
- package/src/views/user/position/list.vue +4 -4
- package/src/views/user/project_tag/edit.vue +2 -2
- package/src/views/user/project_tag/list.vue +9 -4
- package/src/views/user/push_setting/list.vue +2 -2
- package/src/views/user/request_setting/edit.vue +253 -0
- package/src/views/user/request_setting/list.vue +249 -0
- 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/sale_org/list.vue +4 -1
- package/src/views/user/user/dialog.vue +2 -2
- package/src/views/user/user/edit.vue +39 -19
- package/src/views/user/user/form_dialog.vue +158 -0
- 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 -20
- 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/importItemDialog.vue +109 -0
- package/src/views/user/wf/wf_obj_config/list.vue +97 -10
- 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
|
/* {
|
@@ -205,6 +211,14 @@ export const containers = [
|
|
205
211
|
pageSize: 20,
|
206
212
|
total: 366
|
207
213
|
},
|
214
|
+
gridPageSize: 100,
|
215
|
+
gridPageSizeList: [
|
216
|
+
{value: 50},
|
217
|
+
{value: 100},
|
218
|
+
{value: 200},
|
219
|
+
{value: 500}
|
220
|
+
],
|
221
|
+
|
208
222
|
dsEnabled: !1,
|
209
223
|
dsName: "",
|
210
224
|
tableData: [
|
@@ -256,10 +270,10 @@ export const containers = [
|
|
256
270
|
scriptEnabled: false,
|
257
271
|
accessParam: null,
|
258
272
|
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
273
|
+
accessFormCode: null,
|
274
|
+
|
275
|
+
...httpConfig,
|
276
|
+
|
263
277
|
/*isLoadDataByAccess: false,
|
264
278
|
scriptEnabled: false,
|
265
279
|
scriptName: null,
|
@@ -277,9 +291,11 @@ export const containers = [
|
|
277
291
|
sortScriptCode: null,
|
278
292
|
importTemplateFile: null,
|
279
293
|
|
294
|
+
...defaultWfConfig,
|
280
295
|
showRuleFlag: 1,
|
281
296
|
showRuleEnabled: 1,
|
282
297
|
showRules: [],
|
298
|
+
hideGridCheckBox: false
|
283
299
|
}
|
284
300
|
},
|
285
301
|
/*{
|
@@ -425,8 +441,9 @@ export const containers = [
|
|
425
441
|
customClass: "",
|
426
442
|
tableRef: "",
|
427
443
|
detailPaneContainer: true,
|
428
|
-
|
429
|
-
|
444
|
+
defaultCollapse:false,
|
445
|
+
/*onCreated: "",
|
446
|
+
onMounted: "",*/
|
430
447
|
}
|
431
448
|
},
|
432
449
|
{
|
@@ -748,7 +765,6 @@ export const containers = [
|
|
748
765
|
}
|
749
766
|
]
|
750
767
|
|
751
|
-
|
752
768
|
export const defaultSearchDialogConfig = {
|
753
769
|
formCode: null,
|
754
770
|
tableEnabled: false,
|
@@ -757,14 +773,149 @@ export const defaultSearchDialogConfig = {
|
|
757
773
|
tableRef: null,
|
758
774
|
tableUniqueKey: null,
|
759
775
|
tableData: [],
|
760
|
-
multipleChoices: true
|
776
|
+
multipleChoices: true,
|
777
|
+
confirmCallback: null,
|
778
|
+
dialogQueryParam: null
|
761
779
|
}
|
762
780
|
|
781
|
+
export const defaultWfConfig = {
|
782
|
+
wfFlag: 1,
|
783
|
+
wfEdit: false,
|
784
|
+
enabledByWf: false,
|
785
|
+
hiddenByWf: false,
|
786
|
+
wfConfigData: [],
|
787
|
+
wfModifyDataEnabled: false,
|
788
|
+
wfModifyDataConfig: [],
|
789
|
+
}
|
790
|
+
|
791
|
+
export const defaultTextFlagConfig = {
|
792
|
+
widgetTextFlag: null,
|
793
|
+
textFlag: 1,
|
794
|
+
showTextEnabled: false,
|
795
|
+
showEncryptTextEnabled: false,
|
796
|
+
userTextRuleEnabled: false,
|
797
|
+
userTextRuleConfig: [],
|
798
|
+
textRule1: true,
|
799
|
+
textRule2: false,
|
800
|
+
textRule2Number: null,
|
801
|
+
textRule3: false,
|
802
|
+
textRule3Number: null,
|
803
|
+
widgetTextLinkConfig: null
|
804
|
+
}
|
805
|
+
|
806
|
+
export const defaultWidgetShowRuleConfig = {
|
807
|
+
widgetShowRuleFlag: 1,
|
808
|
+
widgetShowRuleEnabled: false,
|
809
|
+
widgetShowRuleConfig: [],
|
810
|
+
}
|
811
|
+
|
812
|
+
const vabsearchConfig = {
|
813
|
+
name: "",
|
814
|
+
keyNameEnabled: !1,
|
815
|
+
keyName: "",
|
816
|
+
vabSearchName: "",
|
817
|
+
userDefaultVabSearch: false,
|
818
|
+
saleOrgDefaultVabSearch: false,
|
819
|
+
label: "",
|
820
|
+
submitFlag: true,
|
821
|
+
disabled: !1,
|
822
|
+
hidden: !1,
|
823
|
+
required: !1,
|
824
|
+
labelWidth: null,
|
825
|
+
labelHidden: !1,
|
826
|
+
readonly: true,
|
827
|
+
/*formCode: null,
|
828
|
+
formName: null,
|
829
|
+
formVersion: null,
|
830
|
+
showFormField: null,*/
|
831
|
+
/* gridConfig: {
|
832
|
+
tableColumns: [],
|
833
|
+
searchFields: [],
|
834
|
+
searchParams: ""
|
835
|
+
},*/
|
836
|
+
// vabSearchField: null,
|
837
|
+
vabsearchFlag: 1,
|
838
|
+
onSearchClear: "",
|
839
|
+
dialogModel: '1',
|
840
|
+
systemDialogUrl: null,
|
841
|
+
accessType: "1",
|
842
|
+
onCreated: "",
|
843
|
+
onMounted: "",
|
844
|
+
onChange: "",
|
845
|
+
onAppendButtonClick: "",
|
846
|
+
clickBindEvent: '1',
|
847
|
+
searchDialogConfig: {
|
848
|
+
...defaultSearchDialogConfig,
|
849
|
+
multipleChoices: false
|
850
|
+
},
|
851
|
+
...defaultWfConfig,
|
852
|
+
valueField: null,
|
853
|
+
multipleChoices: false,
|
854
|
+
|
855
|
+
showRuleFlag: 1,
|
856
|
+
showRuleEnabled: 1,
|
857
|
+
showRules: []
|
858
|
+
}
|
859
|
+
|
860
|
+
const projectTagConfig = {
|
861
|
+
name: "",
|
862
|
+
keyNameEnabled: !1,
|
863
|
+
keyName: "",
|
864
|
+
// keyNameSuffix: "",
|
865
|
+
label: "",
|
866
|
+
submitFlag: true,
|
867
|
+
disabled: !1,
|
868
|
+
readonly: false,
|
869
|
+
hidden: !1,
|
870
|
+
required: !1,
|
871
|
+
labelWidth: null,
|
872
|
+
labelHidden: !1,
|
873
|
+
onCreated: "if(this.dataId)this.loadDataDefaultHandle();",
|
874
|
+
onMounted: "",
|
875
|
+
onClick: "",
|
876
|
+
// vabUpload: 1,
|
877
|
+
|
878
|
+
...httpConfig,
|
879
|
+
formScriptCode: "getList",
|
880
|
+
|
881
|
+
...defaultWfConfig,
|
882
|
+
|
883
|
+
showRuleFlag: 1,
|
884
|
+
showRuleEnabled: 1,
|
885
|
+
showRules: [],
|
886
|
+
|
887
|
+
tagFormCode: null,
|
888
|
+
tagFormParam: null,
|
889
|
+
tagLabelField: null,
|
890
|
+
tagUniqueField: null,
|
891
|
+
tagFormLabelField: null,
|
892
|
+
tagFormUniqueField: null,
|
893
|
+
tagFillConfig: [],
|
894
|
+
tagConfirmCallback: null,
|
895
|
+
tagDeleteCallback: null,
|
896
|
+
tabDeleteEnabled: true,
|
897
|
+
|
898
|
+
}
|
899
|
+
|
900
|
+
const httpConfig = {
|
901
|
+
httpFormCode: null,
|
902
|
+
formScriptEnabled: true,
|
903
|
+
formScriptCode: null,
|
904
|
+
formScriptParam: null,
|
905
|
+
formScriptSuccess: null,
|
906
|
+
formScriptCallback: null,
|
907
|
+
}
|
908
|
+
|
909
|
+
export const hiddenWidgetTypesOfWf = ["button", "search_button", "table-export-button", "add_button", "import-button", "import2-button", "print-button"];
|
910
|
+
export const freeWidgetTypesOfWf = ["reset_button", "a-link", "a-text"];
|
911
|
+
|
763
912
|
export const basicFields = [
|
764
913
|
{
|
765
914
|
type: "input",
|
766
915
|
icon: "text-field",
|
916
|
+
commonFlag: !0,
|
767
917
|
formItemFlag: !0,
|
918
|
+
columnFlag: true,
|
768
919
|
tableField: null,
|
769
920
|
options: {
|
770
921
|
name: "",
|
@@ -800,9 +951,9 @@ export const basicFields = [
|
|
800
951
|
showWordLimit: !1,
|
801
952
|
prefixIcon: "",
|
802
953
|
suffixIcon: "",
|
803
|
-
appendButton: !1,
|
954
|
+
/*appendButton: !1,
|
804
955
|
appendButtonDisabled: !1,
|
805
|
-
buttonIcon: "el-icon-search"
|
956
|
+
buttonIcon: "el-icon-search",*/
|
806
957
|
onCreated: "",
|
807
958
|
onMounted: "",
|
808
959
|
onInput: "",
|
@@ -813,27 +964,21 @@ export const basicFields = [
|
|
813
964
|
onAppendButtonClick: "",
|
814
965
|
widgetWidth: "",
|
815
966
|
accessType: "1",
|
816
|
-
|
817
|
-
wfEdit: false,
|
818
|
-
enabledByWf: false,
|
819
|
-
hiddenByWf: false,
|
820
|
-
wfConfigData: [],
|
967
|
+
...defaultWfConfig,
|
821
968
|
|
822
969
|
showRuleFlag: 1,
|
823
970
|
showRuleEnabled: 1,
|
824
971
|
showRules: [],
|
825
|
-
|
826
|
-
|
827
|
-
textRule2: false,
|
828
|
-
textRule3: false,
|
829
|
-
textRule2Number: null,
|
830
|
-
textRule3Number: null
|
972
|
+
|
973
|
+
...defaultTextFlagConfig
|
831
974
|
}
|
832
975
|
},
|
833
976
|
{
|
834
977
|
type: "input-batch",
|
835
978
|
icon: "input-batch",
|
979
|
+
commonFlag: !0,
|
836
980
|
formItemFlag: !0,
|
981
|
+
columnFlag: true,
|
837
982
|
tableField: null,
|
838
983
|
options: {
|
839
984
|
name: "",
|
@@ -860,7 +1005,7 @@ export const basicFields = [
|
|
860
1005
|
validation: "",
|
861
1006
|
validationHint: "",
|
862
1007
|
customClass: "",
|
863
|
-
labelIconClass: null,
|
1008
|
+
/*labelIconClass: null,
|
864
1009
|
labelIconPosition: "rear",
|
865
1010
|
labelTooltip: null,
|
866
1011
|
minLength: null,
|
@@ -870,7 +1015,7 @@ export const basicFields = [
|
|
870
1015
|
suffixIcon: "",
|
871
1016
|
appendButton: !1,
|
872
1017
|
appendButtonDisabled: !1,
|
873
|
-
buttonIcon: "el-icon-search"
|
1018
|
+
buttonIcon: "el-icon-search",*/
|
874
1019
|
onCreated: "",
|
875
1020
|
onMounted: "",
|
876
1021
|
onInput: "",
|
@@ -878,31 +1023,24 @@ export const basicFields = [
|
|
878
1023
|
onFocus: "",
|
879
1024
|
onBlur: "",
|
880
1025
|
onValidate: "",
|
881
|
-
onAppendButtonClick: "",
|
1026
|
+
// onAppendButtonClick: "",
|
882
1027
|
widgetWidth: "",
|
883
1028
|
accessType: "1",
|
884
|
-
|
885
|
-
wfEdit: false,
|
886
|
-
enabledByWf: false,
|
887
|
-
hiddenByWf: false,
|
888
|
-
wfConfigData: [],
|
1029
|
+
...defaultWfConfig,
|
889
1030
|
|
890
1031
|
showRuleFlag: 1,
|
891
1032
|
showRuleEnabled: 1,
|
892
1033
|
showRules: [],
|
893
|
-
|
894
|
-
textRule1: false,
|
895
|
-
textRule2: false,
|
896
|
-
textRule3: false,
|
897
|
-
textRule2Number: null,
|
898
|
-
textRule3Number: null
|
1034
|
+
|
899
1035
|
|
900
1036
|
}
|
901
1037
|
},
|
902
1038
|
{
|
903
1039
|
type: "textarea",
|
904
1040
|
icon: "textarea-field",
|
1041
|
+
commonFlag: !0,
|
905
1042
|
formItemFlag: !0,
|
1043
|
+
columnFlag: true,
|
906
1044
|
tableField: null,
|
907
1045
|
options: {
|
908
1046
|
name: "",
|
@@ -941,27 +1079,21 @@ export const basicFields = [
|
|
941
1079
|
onBlur: "",
|
942
1080
|
onValidate: "",
|
943
1081
|
accessType: "1",
|
944
|
-
|
945
|
-
wfEdit: false,
|
946
|
-
enabledByWf: false,
|
947
|
-
hiddenByWf: false,
|
948
|
-
wfConfigData: [],
|
1082
|
+
...defaultWfConfig,
|
949
1083
|
|
950
1084
|
showRuleFlag: 1,
|
951
1085
|
showRuleEnabled: 1,
|
952
1086
|
showRules: [],
|
953
|
-
|
954
|
-
|
955
|
-
textRule2: false,
|
956
|
-
textRule3: false,
|
957
|
-
textRule2Number: null,
|
958
|
-
textRule3Number: null
|
1087
|
+
|
1088
|
+
...defaultTextFlagConfig
|
959
1089
|
}
|
960
1090
|
},
|
961
1091
|
{
|
962
1092
|
type: "number",
|
963
1093
|
icon: "number-field",
|
1094
|
+
commonFlag: !0,
|
964
1095
|
formItemFlag: !0,
|
1096
|
+
columnFlag: true,
|
965
1097
|
tableField: null,
|
966
1098
|
options: {
|
967
1099
|
name: "",
|
@@ -984,8 +1116,8 @@ export const basicFields = [
|
|
984
1116
|
requiredHint: "",
|
985
1117
|
validation: "",
|
986
1118
|
validationHint: "",
|
987
|
-
|
988
|
-
|
1119
|
+
formulaEnabled: !1,
|
1120
|
+
formula: "",
|
989
1121
|
customClass: "",
|
990
1122
|
labelIconClass: null,
|
991
1123
|
labelIconPosition: "rear",
|
@@ -1002,28 +1134,22 @@ export const basicFields = [
|
|
1002
1134
|
onBlur: "",
|
1003
1135
|
onValidate: "",
|
1004
1136
|
accessType: "1",
|
1005
|
-
|
1006
|
-
wfEdit: false,
|
1007
|
-
enabledByWf: false,
|
1008
|
-
hiddenByWf: false,
|
1009
|
-
wfConfigData: [],
|
1137
|
+
...defaultWfConfig,
|
1010
1138
|
|
1011
1139
|
showRuleFlag: 1,
|
1012
1140
|
showRuleEnabled: 1,
|
1013
1141
|
showRules: [],
|
1014
|
-
|
1015
|
-
|
1016
|
-
textRule2: false,
|
1017
|
-
textRule3: false,
|
1018
|
-
textRule2Number: null,
|
1019
|
-
textRule3Number: null
|
1142
|
+
|
1143
|
+
...defaultTextFlagConfig
|
1020
1144
|
|
1021
1145
|
}
|
1022
1146
|
},
|
1023
1147
|
{
|
1024
1148
|
type: "radio",
|
1025
1149
|
icon: "radio-field",
|
1150
|
+
commonFlag: !0,
|
1026
1151
|
formItemFlag: !0,
|
1152
|
+
columnFlag: true,
|
1027
1153
|
tableField: null,
|
1028
1154
|
options: {
|
1029
1155
|
name: "",
|
@@ -1073,30 +1199,27 @@ export const basicFields = [
|
|
1073
1199
|
onValidate: "",
|
1074
1200
|
accessType: "1",
|
1075
1201
|
|
1202
|
+
...httpConfig,
|
1076
1203
|
formScriptEnabled: false,
|
1077
1204
|
formScriptCode: "getList",
|
1078
|
-
|
1079
|
-
|
1080
|
-
|
1081
|
-
|
1082
|
-
|
1083
|
-
wfConfigData: [],
|
1205
|
+
|
1206
|
+
...defaultWfConfig,
|
1207
|
+
|
1208
|
+
commonAttributeEnabled: false,
|
1209
|
+
commonAttributeCode: "",
|
1084
1210
|
|
1085
1211
|
showRuleFlag: 1,
|
1086
1212
|
showRuleEnabled: 1,
|
1087
1213
|
showRules: [],
|
1088
|
-
|
1089
|
-
textRule1: false,
|
1090
|
-
textRule2: false,
|
1091
|
-
textRule3: false,
|
1092
|
-
textRule2Number: null,
|
1093
|
-
textRule3Number: null
|
1214
|
+
|
1094
1215
|
}
|
1095
1216
|
},
|
1096
1217
|
{
|
1097
1218
|
type: "checkbox",
|
1098
1219
|
icon: "checkbox-field",
|
1220
|
+
commonFlag: !0,
|
1099
1221
|
formItemFlag: !0,
|
1222
|
+
columnFlag: true,
|
1100
1223
|
tableField: null,
|
1101
1224
|
options: {
|
1102
1225
|
name: "",
|
@@ -1146,31 +1269,28 @@ export const basicFields = [
|
|
1146
1269
|
onValidate: "",
|
1147
1270
|
accessType: "1",
|
1148
1271
|
|
1272
|
+
...httpConfig,
|
1149
1273
|
formScriptEnabled: false,
|
1150
1274
|
formScriptCode: "getList",
|
1151
|
-
|
1152
|
-
|
1153
|
-
|
1154
|
-
|
1155
|
-
|
1156
|
-
wfConfigData: [],
|
1275
|
+
|
1276
|
+
...defaultWfConfig,
|
1277
|
+
|
1278
|
+
commonAttributeEnabled: false,
|
1279
|
+
commonAttributeCode: "",
|
1157
1280
|
|
1158
1281
|
showRuleFlag: 1,
|
1159
1282
|
showRuleEnabled: 1,
|
1160
1283
|
showRules: [],
|
1161
|
-
|
1162
|
-
textRule1: false,
|
1163
|
-
textRule2: false,
|
1164
|
-
textRule3: false,
|
1165
|
-
textRule2Number: null,
|
1166
|
-
textRule3Number: null
|
1284
|
+
|
1167
1285
|
|
1168
1286
|
}
|
1169
1287
|
},
|
1170
1288
|
{
|
1171
1289
|
type: "select",
|
1172
1290
|
icon: "select-field",
|
1291
|
+
commonFlag: !0,
|
1173
1292
|
formItemFlag: !0,
|
1293
|
+
columnFlag: true,
|
1174
1294
|
tableField: null,
|
1175
1295
|
options: {
|
1176
1296
|
name: "",
|
@@ -1230,30 +1350,29 @@ export const basicFields = [
|
|
1230
1350
|
onValidate: "",
|
1231
1351
|
widgetWidth: "",
|
1232
1352
|
accessType: "1",
|
1353
|
+
|
1354
|
+
...httpConfig,
|
1233
1355
|
formScriptEnabled: false,
|
1234
1356
|
formScriptCode: "getList",
|
1235
|
-
|
1236
|
-
|
1237
|
-
|
1238
|
-
|
1239
|
-
|
1240
|
-
|
1357
|
+
|
1358
|
+
...defaultWfConfig,
|
1359
|
+
|
1360
|
+
commonAttributeEnabled: false,
|
1361
|
+
commonAttributeCode: "",
|
1362
|
+
|
1363
|
+
showCollapseTags: false,
|
1241
1364
|
|
1242
1365
|
showRuleFlag: 1,
|
1243
1366
|
showRuleEnabled: 1,
|
1244
1367
|
showRules: [],
|
1245
|
-
textFlag: 1,
|
1246
|
-
textRule1: false,
|
1247
|
-
textRule2: false,
|
1248
|
-
textRule3: false,
|
1249
|
-
textRule2Number: null,
|
1250
|
-
textRule3Number: null
|
1251
1368
|
}
|
1252
1369
|
},
|
1253
1370
|
{
|
1254
1371
|
type: "time",
|
1255
1372
|
icon: "time-field",
|
1373
|
+
commonFlag: !0,
|
1256
1374
|
formItemFlag: !0,
|
1375
|
+
columnFlag: true,
|
1257
1376
|
tableField: null,
|
1258
1377
|
options: {
|
1259
1378
|
name: "",
|
@@ -1291,28 +1410,22 @@ export const basicFields = [
|
|
1291
1410
|
onBlur: "",
|
1292
1411
|
onValidate: "",
|
1293
1412
|
accessType: "1",
|
1294
|
-
|
1295
|
-
wfEdit: false,
|
1296
|
-
enabledByWf: false,
|
1297
|
-
hiddenByWf: false,
|
1298
|
-
wfConfigData: [],
|
1413
|
+
...defaultWfConfig,
|
1299
1414
|
|
1300
1415
|
showRuleFlag: 1,
|
1301
1416
|
showRuleEnabled: 1,
|
1302
1417
|
showRules: [],
|
1303
|
-
|
1304
|
-
|
1305
|
-
textRule2: false,
|
1306
|
-
textRule3: false,
|
1307
|
-
textRule2Number: null,
|
1308
|
-
textRule3Number: null
|
1418
|
+
|
1419
|
+
...defaultTextFlagConfig
|
1309
1420
|
|
1310
1421
|
}
|
1311
1422
|
},
|
1312
1423
|
{
|
1313
1424
|
type: "time-range",
|
1314
1425
|
icon: "time-range-field",
|
1426
|
+
commonFlag: !0,
|
1315
1427
|
formItemFlag: !0,
|
1428
|
+
columnFlag: true,
|
1316
1429
|
tableField: null,
|
1317
1430
|
options: {
|
1318
1431
|
name: "",
|
@@ -1350,28 +1463,21 @@ export const basicFields = [
|
|
1350
1463
|
onBlur: "",
|
1351
1464
|
onValidate: "",
|
1352
1465
|
accessType: "1",
|
1353
|
-
|
1354
|
-
wfEdit: false,
|
1355
|
-
enabledByWf: false,
|
1356
|
-
hiddenByWf: false,
|
1357
|
-
wfConfigData: [],
|
1466
|
+
...defaultWfConfig,
|
1358
1467
|
|
1359
1468
|
showRuleFlag: 1,
|
1360
1469
|
showRuleEnabled: 1,
|
1361
1470
|
showRules: [],
|
1362
|
-
|
1363
|
-
textRule1: false,
|
1364
|
-
textRule2: false,
|
1365
|
-
textRule3: false,
|
1366
|
-
textRule2Number: null,
|
1367
|
-
textRule3Number: null
|
1471
|
+
|
1368
1472
|
|
1369
1473
|
}
|
1370
1474
|
},
|
1371
1475
|
{
|
1372
1476
|
type: "date",
|
1373
1477
|
icon: "date-field",
|
1478
|
+
commonFlag: !0,
|
1374
1479
|
formItemFlag: !0,
|
1480
|
+
columnFlag: true,
|
1375
1481
|
tableField: null,
|
1376
1482
|
options: {
|
1377
1483
|
name: "",
|
@@ -1411,28 +1517,22 @@ export const basicFields = [
|
|
1411
1517
|
onBlur: "",
|
1412
1518
|
onValidate: "",
|
1413
1519
|
accessType: "1",
|
1414
|
-
|
1415
|
-
wfEdit: false,
|
1416
|
-
enabledByWf: false,
|
1417
|
-
hiddenByWf: false,
|
1418
|
-
wfConfigData: [],
|
1520
|
+
...defaultWfConfig,
|
1419
1521
|
|
1420
1522
|
showRuleFlag: 1,
|
1421
1523
|
showRuleEnabled: 1,
|
1422
1524
|
showRules: [],
|
1423
|
-
|
1424
|
-
|
1425
|
-
textRule2: false,
|
1426
|
-
textRule3: false,
|
1427
|
-
textRule2Number: null,
|
1428
|
-
textRule3Number: null
|
1525
|
+
|
1526
|
+
...defaultTextFlagConfig
|
1429
1527
|
|
1430
1528
|
}
|
1431
1529
|
},
|
1432
1530
|
{
|
1433
1531
|
type: "date-range",
|
1434
1532
|
icon: "date-range-field",
|
1533
|
+
commonFlag: !0,
|
1435
1534
|
formItemFlag: !0,
|
1535
|
+
columnFlag: true,
|
1436
1536
|
tableField: null,
|
1437
1537
|
options: {
|
1438
1538
|
name: "",
|
@@ -1457,6 +1557,7 @@ export const basicFields = [
|
|
1457
1557
|
editable: !1,
|
1458
1558
|
format: "yyyy-MM-dd",
|
1459
1559
|
valueFormat: "yyyy-MM-dd",
|
1560
|
+
defaultTime: ['00:00:00', '23:59:59'],
|
1460
1561
|
required: !1,
|
1461
1562
|
requiredHint: "",
|
1462
1563
|
validation: "",
|
@@ -1472,21 +1573,11 @@ export const basicFields = [
|
|
1472
1573
|
onBlur: "",
|
1473
1574
|
onValidate: "",
|
1474
1575
|
accessType: "1",
|
1475
|
-
|
1476
|
-
wfEdit: false,
|
1477
|
-
enabledByWf: false,
|
1478
|
-
hiddenByWf: false,
|
1479
|
-
wfConfigData: [],
|
1576
|
+
...defaultWfConfig,
|
1480
1577
|
|
1481
1578
|
showRuleFlag: 1,
|
1482
1579
|
showRuleEnabled: 1,
|
1483
1580
|
showRules: [],
|
1484
|
-
textFlag: 1,
|
1485
|
-
textRule1: false,
|
1486
|
-
textRule2: false,
|
1487
|
-
textRule3: false,
|
1488
|
-
textRule2Number: null,
|
1489
|
-
textRule3Number: null
|
1490
1581
|
|
1491
1582
|
}
|
1492
1583
|
},
|
@@ -1617,7 +1708,9 @@ export const basicFields = [
|
|
1617
1708
|
{
|
1618
1709
|
type: "static-text",
|
1619
1710
|
icon: "static-text",
|
1711
|
+
commonFlag: !0,
|
1620
1712
|
formItemFlag: !1,
|
1713
|
+
columnFlag: true,
|
1621
1714
|
options: {
|
1622
1715
|
name: "",
|
1623
1716
|
columnWidth: "200px",
|
@@ -1628,23 +1721,22 @@ export const basicFields = [
|
|
1628
1721
|
onCreated: "",
|
1629
1722
|
onMounted: "",
|
1630
1723
|
accessType: "1",
|
1724
|
+
...defaultWfConfig,
|
1631
1725
|
|
1632
1726
|
showRuleFlag: 1,
|
1633
1727
|
showRuleEnabled: 1,
|
1634
1728
|
showRules: [],
|
1635
|
-
|
1636
|
-
|
1637
|
-
textRule2: false,
|
1638
|
-
textRule3: false,
|
1639
|
-
textRule2Number: null,
|
1640
|
-
textRule3Number: null
|
1729
|
+
|
1730
|
+
...defaultTextFlagConfig
|
1641
1731
|
|
1642
1732
|
}
|
1643
1733
|
},
|
1644
1734
|
{
|
1645
1735
|
type: "html-text",
|
1646
1736
|
icon: "html-text",
|
1737
|
+
commonFlag: !1,
|
1647
1738
|
formItemFlag: !1,
|
1739
|
+
columnFlag: false,
|
1648
1740
|
options: {
|
1649
1741
|
name: "",
|
1650
1742
|
columnWidth: "200px",
|
@@ -1654,16 +1746,11 @@ export const basicFields = [
|
|
1654
1746
|
onCreated: "",
|
1655
1747
|
onMounted: "",
|
1656
1748
|
accessType: "1",
|
1749
|
+
...defaultWfConfig,
|
1657
1750
|
|
1658
1751
|
showRuleFlag: 1,
|
1659
1752
|
showRuleEnabled: 1,
|
1660
1753
|
showRules: [],
|
1661
|
-
textFlag: 1,
|
1662
|
-
textRule1: false,
|
1663
|
-
textRule2: false,
|
1664
|
-
textRule3: false,
|
1665
|
-
textRule2Number: null,
|
1666
|
-
textRule3Number: null
|
1667
1754
|
|
1668
1755
|
}
|
1669
1756
|
},
|
@@ -1687,10 +1774,13 @@ export const basicFields = [
|
|
1687
1774
|
{
|
1688
1775
|
type: "button",
|
1689
1776
|
icon: "button",
|
1777
|
+
commonFlag: !0,
|
1690
1778
|
formItemFlag: !1,
|
1779
|
+
columnFlag: true,
|
1691
1780
|
options: {
|
1692
1781
|
name: "",
|
1693
1782
|
label: "",
|
1783
|
+
wfHideFlag: 1,
|
1694
1784
|
columnWidth: "200px",
|
1695
1785
|
size: "",
|
1696
1786
|
displayStyle: "block",
|
@@ -1714,27 +1804,22 @@ export const basicFields = [
|
|
1714
1804
|
tableRef: null,
|
1715
1805
|
tableData: {}
|
1716
1806
|
},
|
1717
|
-
|
1718
|
-
|
1719
|
-
|
1720
|
-
hiddenByWf: false,
|
1721
|
-
wfConfigData: [],
|
1807
|
+
...defaultWfConfig,
|
1808
|
+
hiddenByWf: true,
|
1809
|
+
...defaultWidgetShowRuleConfig,
|
1722
1810
|
|
1723
1811
|
showRuleFlag: 1,
|
1724
1812
|
showRuleEnabled: 1,
|
1725
1813
|
showRules: [],
|
1726
|
-
|
1727
|
-
textRule1: false,
|
1728
|
-
textRule2: false,
|
1729
|
-
textRule3: false,
|
1730
|
-
textRule2Number: null,
|
1731
|
-
textRule3Number: null
|
1814
|
+
|
1732
1815
|
}
|
1733
1816
|
},
|
1734
1817
|
{
|
1735
1818
|
type: "divider",
|
1736
1819
|
icon: "divider",
|
1820
|
+
commonFlag: !0,
|
1737
1821
|
formItemFlag: !1,
|
1822
|
+
columnFlag: true,
|
1738
1823
|
options: {
|
1739
1824
|
name: "",
|
1740
1825
|
label: "",
|
@@ -1743,6 +1828,7 @@ export const basicFields = [
|
|
1743
1828
|
contentPosition: "center",
|
1744
1829
|
hidden: !1,
|
1745
1830
|
customClass: "",
|
1831
|
+
...defaultWfConfig,
|
1746
1832
|
onCreated: "",
|
1747
1833
|
onMounted: ""
|
1748
1834
|
}
|
@@ -1804,7 +1890,9 @@ export const basicFields = [
|
|
1804
1890
|
{
|
1805
1891
|
type: "text",
|
1806
1892
|
icon: "text",
|
1893
|
+
commonFlag: !0,
|
1807
1894
|
formItemFlag: !0,
|
1895
|
+
columnFlag: true,
|
1808
1896
|
tableField: null,
|
1809
1897
|
options: {
|
1810
1898
|
name: "",
|
@@ -1824,28 +1912,31 @@ export const basicFields = [
|
|
1824
1912
|
onMounted: "",
|
1825
1913
|
accessType: "1",
|
1826
1914
|
labelColor: '#555555',
|
1915
|
+
...defaultWfConfig,
|
1916
|
+
|
1917
|
+
autoValueEnabled: false,
|
1918
|
+
autoValueHanlde: null,
|
1827
1919
|
|
1828
1920
|
showRuleFlag: 1,
|
1829
1921
|
showRuleEnabled: 1,
|
1830
1922
|
showRules: [],
|
1831
|
-
|
1832
|
-
|
1833
|
-
textRule2: false,
|
1834
|
-
textRule3: false,
|
1835
|
-
textRule2Number: null,
|
1836
|
-
textRule3Number: null
|
1923
|
+
|
1924
|
+
...defaultTextFlagConfig
|
1837
1925
|
}
|
1838
1926
|
},
|
1839
1927
|
{
|
1840
1928
|
type: "a-text",
|
1841
1929
|
icon: "text-field",
|
1930
|
+
commonFlag: !0,
|
1842
1931
|
formItemFlag: !0,
|
1932
|
+
columnFlag: true,
|
1843
1933
|
tableField: null,
|
1844
1934
|
options: {
|
1845
1935
|
name: "",
|
1846
1936
|
keyNameEnabled: !1,
|
1847
1937
|
keyName: "",
|
1848
1938
|
label: "",
|
1939
|
+
displayStyle: "block",
|
1849
1940
|
submitFlag: true,
|
1850
1941
|
/**showText: false,*/
|
1851
1942
|
formField: "",
|
@@ -1872,42 +1963,39 @@ export const basicFields = [
|
|
1872
1963
|
onChange: "",
|
1873
1964
|
onClick: "",
|
1874
1965
|
accessType: "1",
|
1875
|
-
|
1876
|
-
|
1877
|
-
enabledByWf: false,
|
1878
|
-
hiddenByWf: false,
|
1879
|
-
wfConfigData: [],
|
1966
|
+
...defaultWfConfig,
|
1967
|
+
...defaultWidgetShowRuleConfig,
|
1880
1968
|
|
1881
1969
|
showRuleFlag: 1,
|
1882
1970
|
showRuleEnabled: 1,
|
1883
1971
|
showRules: [],
|
1884
|
-
|
1885
|
-
|
1886
|
-
textRule2: false,
|
1887
|
-
textRule3: false,
|
1888
|
-
textRule2Number: null,
|
1889
|
-
textRule3Number: null
|
1972
|
+
|
1973
|
+
...defaultTextFlagConfig
|
1890
1974
|
}
|
1891
1975
|
},
|
1892
1976
|
{
|
1893
1977
|
type: "a-link",
|
1894
1978
|
icon: "button",
|
1979
|
+
commonFlag: !0,
|
1895
1980
|
formItemFlag: !1,
|
1981
|
+
columnFlag: true,
|
1896
1982
|
options: {
|
1897
1983
|
name: "",
|
1898
1984
|
keyNameEnabled: !1,
|
1899
1985
|
keyName: "",
|
1900
1986
|
label: "",
|
1987
|
+
displayStyle: "block",
|
1901
1988
|
labelHidden: !1,
|
1902
1989
|
disabled: !1,
|
1903
1990
|
hidden: !1,
|
1904
1991
|
prefixIcon: "",
|
1905
1992
|
suffixIcon: "",
|
1906
1993
|
customClass: "",
|
1994
|
+
wfHideFlag: 1,
|
1907
1995
|
aLinkFlag: 1,
|
1908
1996
|
underline: false,
|
1909
1997
|
href: "",
|
1910
|
-
coloClass: "f-
|
1998
|
+
coloClass: "f-blue",
|
1911
1999
|
isFormLabel: false,
|
1912
2000
|
onCreated: "",
|
1913
2001
|
onMounted: "",
|
@@ -1920,21 +2008,40 @@ export const basicFields = [
|
|
1920
2008
|
tableRef: null,
|
1921
2009
|
tableData: {}
|
1922
2010
|
},
|
1923
|
-
|
1924
|
-
|
1925
|
-
enabledByWf: false,
|
1926
|
-
hiddenByWf: false,
|
1927
|
-
wfConfigData: [],
|
2011
|
+
...defaultWfConfig,
|
2012
|
+
...defaultWidgetShowRuleConfig,
|
1928
2013
|
|
1929
2014
|
showRuleFlag: 1,
|
1930
2015
|
showRuleEnabled: 1,
|
1931
2016
|
showRules: [],
|
1932
|
-
|
1933
|
-
|
1934
|
-
|
1935
|
-
|
1936
|
-
|
1937
|
-
|
2017
|
+
|
2018
|
+
...defaultTextFlagConfig
|
2019
|
+
}
|
2020
|
+
},
|
2021
|
+
{
|
2022
|
+
type: "a-link2",
|
2023
|
+
icon: "button",
|
2024
|
+
commonFlag: !1,
|
2025
|
+
formItemFlag: !1,
|
2026
|
+
columnFlag: false,
|
2027
|
+
options: {
|
2028
|
+
prefixIcon: "",
|
2029
|
+
suffixIcon: "",
|
2030
|
+
customClass: "",
|
2031
|
+
aLinkFlag: 1,
|
2032
|
+
underline: false,
|
2033
|
+
href: "",
|
2034
|
+
coloClass: "f-blue",
|
2035
|
+
|
2036
|
+
onClick: "",
|
2037
|
+
clickBindEvent: null,
|
2038
|
+
searchDialogConfig: {
|
2039
|
+
...defaultSearchDialogConfig
|
2040
|
+
},
|
2041
|
+
addTableDataConfig: {
|
2042
|
+
tableRef: null,
|
2043
|
+
tableData: {}
|
2044
|
+
},
|
1938
2045
|
}
|
1939
2046
|
},
|
1940
2047
|
|
@@ -1998,10 +2105,11 @@ export const advancedFields = [
|
|
1998
2105
|
color: "",
|
1999
2106
|
fontWeight: "normal"
|
2000
2107
|
},
|
2001
|
-
data: [
|
2002
|
-
|
2003
|
-
|
2004
|
-
|
2108
|
+
data: [
|
2109
|
+
{
|
2110
|
+
value: 1048,
|
2111
|
+
name: 'Search Engine'
|
2112
|
+
},
|
2005
2113
|
{
|
2006
2114
|
value: 735,
|
2007
2115
|
name: 'Direct'
|
@@ -2021,12 +2129,15 @@ export const advancedFields = [
|
|
2021
2129
|
],
|
2022
2130
|
}]
|
2023
2131
|
},
|
2024
|
-
|
2025
|
-
|
2026
|
-
|
2132
|
+
echartConfig: '',
|
2133
|
+
|
2134
|
+
...httpConfig,
|
2135
|
+
|
2136
|
+
onClick: "",
|
2027
2137
|
onCreated: "",
|
2028
2138
|
onMounted: "this.loadDataDefaultHandle()",
|
2029
2139
|
|
2140
|
+
...defaultWfConfig,
|
2030
2141
|
showRuleFlag: 1,
|
2031
2142
|
showRuleEnabled: 1,
|
2032
2143
|
showRules: []
|
@@ -2044,6 +2155,7 @@ export const advancedFields = [
|
|
2044
2155
|
echarBarOption: {
|
2045
2156
|
backgroundColor: "#fff",
|
2046
2157
|
color: ["#5BC1D7", "#FF8A3D", "#56C271", "#694ED6", "#C033A1", "#FFCC10"],
|
2158
|
+
colors: [],
|
2047
2159
|
title: {
|
2048
2160
|
show: true,
|
2049
2161
|
top: '5px',
|
@@ -2190,12 +2302,14 @@ export const advancedFields = [
|
|
2190
2302
|
|
2191
2303
|
}]
|
2192
2304
|
},
|
2193
|
-
|
2194
|
-
|
2195
|
-
|
2305
|
+
echartConfig: '',
|
2306
|
+
|
2307
|
+
...httpConfig,
|
2308
|
+
|
2309
|
+
onClick: "",
|
2196
2310
|
onCreated: "",
|
2197
2311
|
onMounted: "this.loadDataDefaultHandle()",
|
2198
|
-
|
2312
|
+
...defaultWfConfig,
|
2199
2313
|
showRuleFlag: 1,
|
2200
2314
|
showRuleEnabled: 1,
|
2201
2315
|
showRules: []
|
@@ -2214,6 +2328,7 @@ export const advancedFields = [
|
|
2214
2328
|
echarCategoryOption: {
|
2215
2329
|
backgroundColor: "#fff",
|
2216
2330
|
color: ["#5BC1D7", "#FF8A3D", "#56C271", "#694ED6", "#C033A1", "#FFCC10"],
|
2331
|
+
colors: [],
|
2217
2332
|
title: {
|
2218
2333
|
show: true,
|
2219
2334
|
top: '5px',
|
@@ -2324,6 +2439,23 @@ export const advancedFields = [
|
|
2324
2439
|
shadowBlur: 4,
|
2325
2440
|
shadowOffsetY: 6
|
2326
2441
|
},
|
2442
|
+
itemStyle: {
|
2443
|
+
color: {
|
2444
|
+
type: 'linear',
|
2445
|
+
x: 0.5,
|
2446
|
+
y: 0.5,
|
2447
|
+
r: 0.5,
|
2448
|
+
colorStops: [{
|
2449
|
+
offset: 0, color: '#08C084' // 0% 处的颜色
|
2450
|
+
}, {
|
2451
|
+
offset: 1, color: '#97EACE' // 100% 处的颜色
|
2452
|
+
}],
|
2453
|
+
},
|
2454
|
+
cap: 'round',
|
2455
|
+
shadowColor: '#08C08450',
|
2456
|
+
shadowBlur: 4,
|
2457
|
+
shadowOffsetY: 6
|
2458
|
+
},
|
2327
2459
|
emphasis: {
|
2328
2460
|
scale: 1,
|
2329
2461
|
focus: 'series'
|
@@ -2358,6 +2490,23 @@ export const advancedFields = [
|
|
2358
2490
|
shadowBlur: 4,
|
2359
2491
|
shadowOffsetY: 6
|
2360
2492
|
},
|
2493
|
+
itemStyle: {
|
2494
|
+
color: {
|
2495
|
+
type: 'linear',
|
2496
|
+
x: 0.5,
|
2497
|
+
y: 0.5,
|
2498
|
+
r: 0.5,
|
2499
|
+
colorStops: [{
|
2500
|
+
offset: 0, color: '#FF6116' // 0% 处的颜色
|
2501
|
+
}, {
|
2502
|
+
offset: 1, color: '#F9A980' // 100% 处的颜色
|
2503
|
+
}],
|
2504
|
+
},
|
2505
|
+
cap: 'round',
|
2506
|
+
shadowColor: '#FF611650',
|
2507
|
+
shadowBlur: 4,
|
2508
|
+
shadowOffsetY: 6
|
2509
|
+
},
|
2361
2510
|
emphasis: {
|
2362
2511
|
scale: 1,
|
2363
2512
|
focus: 'series'
|
@@ -2367,12 +2516,14 @@ export const advancedFields = [
|
|
2367
2516
|
}]
|
2368
2517
|
|
2369
2518
|
},
|
2370
|
-
|
2371
|
-
|
2372
|
-
|
2519
|
+
echartConfig: '',
|
2520
|
+
|
2521
|
+
...httpConfig,
|
2522
|
+
|
2523
|
+
onClick: "",
|
2373
2524
|
onCreated: "",
|
2374
2525
|
onMounted: "this.loadDataDefaultHandle()",
|
2375
|
-
|
2526
|
+
...defaultWfConfig,
|
2376
2527
|
showRuleFlag: 1,
|
2377
2528
|
showRuleEnabled: 1,
|
2378
2529
|
showRules: []
|
@@ -2507,81 +2658,64 @@ export const advancedFields = [
|
|
2507
2658
|
entityTableDesc: null,
|
2508
2659
|
onCreated: "this.loadDataDefaultHandle();",
|
2509
2660
|
onMounted: "",
|
2661
|
+
onAfterConfirmFile: "",
|
2510
2662
|
vabUpload: 1,
|
2511
|
-
|
2663
|
+
|
2664
|
+
...httpConfig,
|
2512
2665
|
formScriptCode: "getList",
|
2513
|
-
|
2514
|
-
|
2515
|
-
wfEdit: false,
|
2516
|
-
enabledByWf: false,
|
2517
|
-
hiddenByWf: false,
|
2518
|
-
wfConfigData: [],
|
2666
|
+
|
2667
|
+
...defaultWfConfig,
|
2519
2668
|
|
2520
2669
|
showRuleFlag: 1,
|
2521
2670
|
showRuleEnabled: 1,
|
2522
|
-
showRules: []
|
2671
|
+
showRules: [],
|
2672
|
+
|
2673
|
+
hiddenFileInfo: false,
|
2674
|
+
hiddenFileName: false,
|
2675
|
+
showFileSize: false,
|
2676
|
+
showFileCreateBy: false,
|
2677
|
+
showFileCreateDate: false,
|
2678
|
+
widgetSize: 2
|
2523
2679
|
}
|
2524
2680
|
},
|
2525
2681
|
{
|
2526
2682
|
type: "vabsearch",
|
2527
2683
|
icon: "searchbox",
|
2528
2684
|
commonFlag: !0,
|
2685
|
+
columnFlag: true,
|
2529
2686
|
formItemFlag: !0,
|
2530
2687
|
tableField: null,
|
2531
2688
|
options: {
|
2532
|
-
|
2533
|
-
|
2534
|
-
|
2535
|
-
|
2536
|
-
|
2537
|
-
|
2538
|
-
|
2539
|
-
|
2540
|
-
|
2541
|
-
|
2542
|
-
|
2543
|
-
|
2544
|
-
|
2545
|
-
|
2546
|
-
|
2547
|
-
|
2548
|
-
|
2549
|
-
|
2550
|
-
|
2551
|
-
|
2552
|
-
|
2553
|
-
|
2554
|
-
|
2555
|
-
dialogModel: '1',
|
2556
|
-
systemDialogUrl: null,
|
2557
|
-
accessType: "1",
|
2558
|
-
onCreated: "",
|
2559
|
-
onMounted: "",
|
2560
|
-
onChange: "",
|
2561
|
-
onAppendButtonClick: "",
|
2562
|
-
clickBindEvent: '1',
|
2563
|
-
searchDialogConfig: {
|
2564
|
-
...defaultSearchDialogConfig,
|
2565
|
-
multipleChoices: false
|
2566
|
-
},
|
2567
|
-
wfFlag: 1,
|
2568
|
-
wfEdit: false,
|
2569
|
-
enabledByWf: false,
|
2570
|
-
hiddenByWf: false,
|
2571
|
-
wfConfigData: [],
|
2572
|
-
valueField: null,
|
2573
|
-
multipleChoices: false,
|
2574
|
-
|
2575
|
-
showRuleFlag: 1,
|
2576
|
-
showRuleEnabled: 1,
|
2577
|
-
showRules: []
|
2578
|
-
|
2689
|
+
...vabsearchConfig
|
2690
|
+
}
|
2691
|
+
},
|
2692
|
+
{
|
2693
|
+
type: "singerSearch",
|
2694
|
+
icon: "searchbox",
|
2695
|
+
// commonFlag: !0,
|
2696
|
+
// columnFlag: true,
|
2697
|
+
formItemFlag: !0,
|
2698
|
+
tableField: null,
|
2699
|
+
options: {
|
2700
|
+
...vabsearchConfig
|
2701
|
+
}
|
2702
|
+
},
|
2703
|
+
{
|
2704
|
+
type: "multiSearch",
|
2705
|
+
icon: "searchbox",
|
2706
|
+
// commonFlag: !0,
|
2707
|
+
// columnFlag: true,
|
2708
|
+
formItemFlag: !0,
|
2709
|
+
tableField: null,
|
2710
|
+
options: {
|
2711
|
+
...vabsearchConfig
|
2579
2712
|
}
|
2580
2713
|
},
|
2581
2714
|
{
|
2582
2715
|
type: "search_button",
|
2583
2716
|
icon: "button",
|
2584
2717
|
commonFlag: !0,
|
2718
|
+
columnFlag: true,
|
2585
2719
|
formItemFlag: !1,
|
2586
2720
|
options: {
|
2587
2721
|
name: "",
|
@@ -2613,12 +2747,8 @@ export const advancedFields = [
|
|
2613
2747
|
...defaultSearchDialogConfig,
|
2614
2748
|
tableEnabled: true
|
2615
2749
|
},
|
2616
|
-
|
2617
|
-
|
2618
|
-
enabledByWf: false,
|
2619
|
-
hiddenByWf: false,
|
2620
|
-
wfConfigData: [],
|
2621
|
-
|
2750
|
+
...defaultWfConfig,
|
2751
|
+
...defaultWidgetShowRuleConfig,
|
2622
2752
|
showRuleFlag: 1,
|
2623
2753
|
showRuleEnabled: 1,
|
2624
2754
|
showRules: []
|
@@ -2629,6 +2759,7 @@ export const advancedFields = [
|
|
2629
2759
|
targetType: "button",
|
2630
2760
|
icon: "button",
|
2631
2761
|
commonFlag: !0,
|
2762
|
+
columnFlag: true,
|
2632
2763
|
formItemFlag: !1,
|
2633
2764
|
options: {
|
2634
2765
|
name: "",
|
@@ -2654,11 +2785,9 @@ export const advancedFields = [
|
|
2654
2785
|
searchDialogConfig: {
|
2655
2786
|
...defaultSearchDialogConfig
|
2656
2787
|
},
|
2657
|
-
|
2658
|
-
|
2659
|
-
enabledByWf: false,
|
2788
|
+
...defaultWfConfig,
|
2789
|
+
...defaultWidgetShowRuleConfig,
|
2660
2790
|
hiddenByWf: true,
|
2661
|
-
wfConfigData: [],
|
2662
2791
|
|
2663
2792
|
showRuleFlag: 1,
|
2664
2793
|
showRuleEnabled: 1,
|
@@ -2671,6 +2800,7 @@ export const advancedFields = [
|
|
2671
2800
|
targetType: "button",
|
2672
2801
|
icon: "button",
|
2673
2802
|
commonFlag: !0,
|
2803
|
+
columnFlag: true,
|
2674
2804
|
formItemFlag: !1,
|
2675
2805
|
options: {
|
2676
2806
|
name: "",
|
@@ -2694,12 +2824,8 @@ export const advancedFields = [
|
|
2694
2824
|
searchDialogConfig: {
|
2695
2825
|
...defaultSearchDialogConfig
|
2696
2826
|
},
|
2697
|
-
|
2698
|
-
|
2699
|
-
enabledByWf: true,
|
2700
|
-
hiddenByWf: false,
|
2701
|
-
wfConfigData: [],
|
2702
|
-
|
2827
|
+
...defaultWfConfig,
|
2828
|
+
...defaultWidgetShowRuleConfig,
|
2703
2829
|
showRuleFlag: 1,
|
2704
2830
|
showRuleEnabled: 1,
|
2705
2831
|
showRules: []
|
@@ -2710,6 +2836,7 @@ export const advancedFields = [
|
|
2710
2836
|
icon: "list-export",
|
2711
2837
|
formItemFlag: !1,
|
2712
2838
|
commonFlag: !0,
|
2839
|
+
columnFlag: true,
|
2713
2840
|
tableField: null,
|
2714
2841
|
options: {
|
2715
2842
|
name: "",
|
@@ -2720,14 +2847,12 @@ export const advancedFields = [
|
|
2720
2847
|
exportFileName: '导出',
|
2721
2848
|
tableRef: '',
|
2722
2849
|
tableExportParam: "",
|
2850
|
+
showImageAtTable: false,
|
2851
|
+
|
2723
2852
|
onCreated: "",
|
2724
2853
|
onMounted: "",
|
2725
|
-
|
2726
|
-
|
2727
|
-
enabledByWf: false,
|
2728
|
-
hiddenByWf: false,
|
2729
|
-
wfConfigData: [],
|
2730
|
-
|
2854
|
+
...defaultWfConfig,
|
2855
|
+
...defaultWidgetShowRuleConfig,
|
2731
2856
|
showRuleFlag: 1,
|
2732
2857
|
showRuleEnabled: 1,
|
2733
2858
|
showRules: []
|
@@ -2739,6 +2864,7 @@ export const advancedFields = [
|
|
2739
2864
|
targetType: "button",
|
2740
2865
|
icon: "button",
|
2741
2866
|
commonFlag: !0,
|
2867
|
+
columnFlag: true,
|
2742
2868
|
formItemFlag: !1,
|
2743
2869
|
options: {
|
2744
2870
|
name: "",
|
@@ -2761,73 +2887,77 @@ export const advancedFields = [
|
|
2761
2887
|
searchDialogConfig: {
|
2762
2888
|
...defaultSearchDialogConfig
|
2763
2889
|
},
|
2764
|
-
|
2765
|
-
|
2766
|
-
|
2767
|
-
hiddenByWf: false,
|
2768
|
-
wfConfigData: [],
|
2769
|
-
|
2890
|
+
...defaultWfConfig,
|
2891
|
+
hiddenByWf: true,
|
2892
|
+
...defaultWidgetShowRuleConfig,
|
2770
2893
|
showRuleFlag: 1,
|
2771
2894
|
showRuleEnabled: 1,
|
2772
2895
|
showRules: []
|
2773
2896
|
},
|
2774
2897
|
},
|
2775
2898
|
{
|
2776
|
-
type: "
|
2777
|
-
targetType: "button",
|
2899
|
+
type: "import-button",
|
2778
2900
|
icon: "button",
|
2779
2901
|
commonFlag: !0,
|
2902
|
+
columnFlag: true,
|
2780
2903
|
formItemFlag: !1,
|
2781
2904
|
options: {
|
2782
2905
|
name: "",
|
2783
|
-
label: "
|
2906
|
+
label: "导入",
|
2784
2907
|
columnWidth: "200px",
|
2785
2908
|
size: "",
|
2786
|
-
|
2909
|
+
|
2910
|
+
// displayStyle: "block",
|
2787
2911
|
disabled: !1,
|
2788
2912
|
hidden: !1,
|
2913
|
+
buttonTypeFlag: 1,
|
2789
2914
|
type: "primary",
|
2790
|
-
plain: !1,
|
2915
|
+
/*plain: !1,
|
2791
2916
|
round: !1,
|
2792
2917
|
circle: !1,
|
2793
|
-
icon: "el-icon-
|
2918
|
+
icon: "el-icon-download",*/
|
2794
2919
|
customClass: "",
|
2795
2920
|
onCreated: "",
|
2796
2921
|
onMounted: "",
|
2797
|
-
//
|
2798
|
-
onClick: "this.saveDefaultHandle();",
|
2799
|
-
accessType: "1",
|
2800
|
-
saveButton: true,
|
2801
|
-
clickBindEvent: null,
|
2922
|
+
// clickBindEvent: null,
|
2802
2923
|
searchDialogConfig: {
|
2803
2924
|
...defaultSearchDialogConfig
|
2804
2925
|
},
|
2805
|
-
|
2806
|
-
wfEdit: false,
|
2807
|
-
enabledByWf: false,
|
2926
|
+
...defaultWfConfig,
|
2808
2927
|
hiddenByWf: true,
|
2809
|
-
|
2928
|
+
...defaultWidgetShowRuleConfig,
|
2929
|
+
importFileLimitSize: 200,
|
2930
|
+
importEntity: '',
|
2931
|
+
importAttachCode: '',
|
2932
|
+
importAttachName: '',
|
2933
|
+
importScriptCode: '',
|
2934
|
+
onBeforeImport: '',
|
2935
|
+
enabledImportPreHandle: false,
|
2936
|
+
tableRef: '',
|
2937
|
+
onSuccessImport: '',
|
2810
2938
|
|
2811
2939
|
showRuleFlag: 1,
|
2812
2940
|
showRuleEnabled: 1,
|
2813
2941
|
showRules: []
|
2814
|
-
|
2815
2942
|
},
|
2816
2943
|
},
|
2817
2944
|
{
|
2818
|
-
type: "
|
2945
|
+
type: "import2-button",
|
2819
2946
|
icon: "button",
|
2820
2947
|
commonFlag: !0,
|
2948
|
+
columnFlag: true,
|
2821
2949
|
formItemFlag: !1,
|
2822
2950
|
options: {
|
2823
2951
|
name: "",
|
2824
|
-
label: "
|
2952
|
+
label: "明细导入",
|
2825
2953
|
columnWidth: "200px",
|
2826
2954
|
size: "",
|
2955
|
+
|
2827
2956
|
// displayStyle: "block",
|
2828
2957
|
disabled: !1,
|
2829
2958
|
hidden: !1,
|
2830
|
-
|
2959
|
+
buttonTypeFlag: 1,
|
2960
|
+
type: "",
|
2831
2961
|
/*plain: !1,
|
2832
2962
|
round: !1,
|
2833
2963
|
circle: !1,
|
@@ -2839,16 +2969,17 @@ export const advancedFields = [
|
|
2839
2969
|
searchDialogConfig: {
|
2840
2970
|
...defaultSearchDialogConfig
|
2841
2971
|
},
|
2842
|
-
|
2843
|
-
|
2844
|
-
|
2845
|
-
|
2846
|
-
|
2847
|
-
importEntity: '',
|
2972
|
+
...defaultWfConfig,
|
2973
|
+
hiddenByWf: true,
|
2974
|
+
...defaultWidgetShowRuleConfig,
|
2975
|
+
frontImportFlag: 1,
|
2976
|
+
importFileLimitSize: 200,
|
2848
2977
|
importAttachCode: '',
|
2849
|
-
|
2850
|
-
|
2851
|
-
|
2978
|
+
importAttachName: '',
|
2979
|
+
tableRef: '',
|
2980
|
+
onConfirmImportEnabled: false,
|
2981
|
+
onConfirmImport: '',
|
2982
|
+
onSuccessImport: '',
|
2852
2983
|
|
2853
2984
|
showRuleFlag: 1,
|
2854
2985
|
showRuleEnabled: 1,
|
@@ -2859,6 +2990,7 @@ export const advancedFields = [
|
|
2859
2990
|
type: "print-button",
|
2860
2991
|
icon: "button",
|
2861
2992
|
commonFlag: !0,
|
2993
|
+
columnFlag: true,
|
2862
2994
|
formItemFlag: !1,
|
2863
2995
|
options: {
|
2864
2996
|
name: "",
|
@@ -2880,11 +3012,8 @@ export const advancedFields = [
|
|
2880
3012
|
searchDialogConfig: {
|
2881
3013
|
...defaultSearchDialogConfig
|
2882
3014
|
},
|
2883
|
-
|
2884
|
-
|
2885
|
-
enabledByWf: false,
|
2886
|
-
hiddenByWf: false,
|
2887
|
-
wfConfigData: [],
|
3015
|
+
...defaultWfConfig,
|
3016
|
+
...defaultWidgetShowRuleConfig,
|
2888
3017
|
printTableRef: "",
|
2889
3018
|
printItems: [],
|
2890
3019
|
|
@@ -2896,6 +3025,7 @@ export const advancedFields = [
|
|
2896
3025
|
{
|
2897
3026
|
type: "baseAttachment",
|
2898
3027
|
icon: "file-upload-field",
|
3028
|
+
columnFlag: true,
|
2899
3029
|
formItemFlag: !0,
|
2900
3030
|
tableField: null,
|
2901
3031
|
options: {
|
@@ -2916,11 +3046,8 @@ export const advancedFields = [
|
|
2916
3046
|
entityTableDesc: null,
|
2917
3047
|
onCreated: "",
|
2918
3048
|
onMounted: "",
|
2919
|
-
|
2920
|
-
|
2921
|
-
enabledByWf: false,
|
2922
|
-
hiddenByWf: false,
|
2923
|
-
wfConfigData: [],
|
3049
|
+
onAfterConfirmFile: "",
|
3050
|
+
...defaultWfConfig,
|
2924
3051
|
|
2925
3052
|
showRuleFlag: 1,
|
2926
3053
|
showRuleEnabled: 1,
|
@@ -2931,6 +3058,7 @@ export const advancedFields = [
|
|
2931
3058
|
type: "status",
|
2932
3059
|
icon: "status",
|
2933
3060
|
commonFlag: !0,
|
3061
|
+
columnFlag: true,
|
2934
3062
|
formItemFlag: !0,
|
2935
3063
|
tableField: null,
|
2936
3064
|
options: {
|
@@ -2949,6 +3077,7 @@ export const advancedFields = [
|
|
2949
3077
|
statusParam: [],
|
2950
3078
|
onCreated: "",
|
2951
3079
|
onMounted: "",
|
3080
|
+
...defaultWfConfig,
|
2952
3081
|
|
2953
3082
|
showRuleFlag: 1,
|
2954
3083
|
showRuleEnabled: 1,
|
@@ -2992,80 +3121,344 @@ export const advancedFields = [
|
|
2992
3121
|
detailItems: []
|
2993
3122
|
}
|
2994
3123
|
],
|
2995
|
-
|
2996
|
-
|
2997
|
-
|
3124
|
+
|
3125
|
+
...httpConfig,
|
3126
|
+
|
2998
3127
|
onCreated: "",
|
2999
3128
|
onMounted: "",
|
3000
|
-
|
3129
|
+
...defaultWfConfig,
|
3001
3130
|
showRuleFlag: 1,
|
3002
3131
|
showRuleEnabled: 1,
|
3003
3132
|
showRules: []
|
3004
3133
|
}
|
3005
3134
|
},
|
3135
|
+
|
3006
3136
|
{
|
3007
3137
|
type: "project-tag",
|
3008
3138
|
icon: "uploadbox",
|
3009
|
-
|
3139
|
+
commonFlag: !0,
|
3140
|
+
columnFlag: true,
|
3010
3141
|
formItemFlag: !0,
|
3011
3142
|
tableField: null,
|
3143
|
+
options: {
|
3144
|
+
...projectTagConfig
|
3145
|
+
}
|
3146
|
+
},
|
3147
|
+
{
|
3148
|
+
type: "table2",
|
3149
|
+
category: "container",
|
3150
|
+
icon: "table",
|
3151
|
+
commonFlag: !0,
|
3152
|
+
formItemFlag: !0,
|
3153
|
+
rows: [],
|
3012
3154
|
options: {
|
3013
3155
|
name: "",
|
3014
|
-
keyNameEnabled: !
|
3156
|
+
keyNameEnabled: !0,
|
3015
3157
|
keyName: "",
|
3016
|
-
|
3017
|
-
|
3158
|
+
hidden: !1,
|
3159
|
+
customClass: "",
|
3160
|
+
styleTableClass: '',
|
3161
|
+
// fullWidth: false,
|
3018
3162
|
submitFlag: true,
|
3163
|
+
|
3164
|
+
...httpConfig,
|
3165
|
+
|
3166
|
+
onCreated: "this.loadDataDefaultHandle()",
|
3167
|
+
onMounted: "",
|
3168
|
+
...defaultWfConfig,
|
3169
|
+
showRuleFlag: 1,
|
3170
|
+
showRuleEnabled: 1,
|
3171
|
+
showRules: []
|
3172
|
+
}
|
3173
|
+
},
|
3174
|
+
{
|
3175
|
+
type: "dropdown-menu",
|
3176
|
+
icon: "tab",
|
3177
|
+
// commonFlag: !0,
|
3178
|
+
// columnFlag: true,
|
3179
|
+
widgetList: [],
|
3180
|
+
options: {
|
3181
|
+
name: "",
|
3182
|
+
label: "",
|
3183
|
+
hidden: !1,
|
3019
3184
|
disabled: !1,
|
3020
|
-
|
3185
|
+
height: '',
|
3186
|
+
// isFullscreen: false,
|
3187
|
+
tabClass: 'tab-boxCard tabCard-sty1',
|
3188
|
+
customClass: "",
|
3189
|
+
dropdownMenuFlag: 1,
|
3190
|
+
...defaultWfConfig,
|
3191
|
+
onCreated: "",
|
3192
|
+
onMounted: "",
|
3193
|
+
}
|
3194
|
+
},
|
3195
|
+
{
|
3196
|
+
type: "dropdown-item",
|
3197
|
+
icon: "tab-pane",
|
3198
|
+
internal: !0,
|
3199
|
+
options: {
|
3200
|
+
name: "",
|
3201
|
+
label: "",
|
3202
|
+
hidden: !1,
|
3203
|
+
active: !1,
|
3204
|
+
disabled: !1,
|
3205
|
+
customClass: "",
|
3206
|
+
dropdownItemFlag: 1,
|
3207
|
+
|
3208
|
+
onClick: "",
|
3209
|
+
clickBindEvent: null,
|
3210
|
+
searchDialogConfig: {
|
3211
|
+
...defaultSearchDialogConfig
|
3212
|
+
},
|
3213
|
+
addTableDataConfig: {
|
3214
|
+
tableRef: null,
|
3215
|
+
tableData: {}
|
3216
|
+
},
|
3217
|
+
}
|
3218
|
+
},
|
3219
|
+
]
|
3220
|
+
|
3221
|
+
|
3222
|
+
export const businessFields = [
|
3223
|
+
{
|
3224
|
+
type: "create_by-text",
|
3225
|
+
targetType: "text",
|
3226
|
+
icon: "text",
|
3227
|
+
commonFlag: !0,
|
3228
|
+
formItemFlag: !0,
|
3229
|
+
columnFlag: true,
|
3230
|
+
tableField: null,
|
3231
|
+
options: {
|
3232
|
+
name: "",
|
3233
|
+
keyNameEnabled: !0,
|
3234
|
+
keyName: "_createBy",
|
3235
|
+
label: "创建人",
|
3236
|
+
submitFlag: true,
|
3237
|
+
formField: "",
|
3021
3238
|
hidden: !1,
|
3022
3239
|
required: !1,
|
3240
|
+
customClass: "",
|
3241
|
+
defaultValue: "",
|
3242
|
+
labelAlign: "",
|
3023
3243
|
labelWidth: null,
|
3024
3244
|
labelHidden: !1,
|
3025
|
-
onCreated: "
|
3245
|
+
onCreated: "",
|
3026
3246
|
onMounted: "",
|
3027
|
-
|
3028
|
-
|
3029
|
-
|
3030
|
-
|
3031
|
-
|
3032
|
-
|
3033
|
-
enabledByWf: false,
|
3034
|
-
hiddenByWf: false,
|
3035
|
-
wfConfigData: [],
|
3247
|
+
accessType: "1",
|
3248
|
+
labelColor: '#555555',
|
3249
|
+
...defaultWfConfig,
|
3250
|
+
|
3251
|
+
autoValueEnabled: false,
|
3252
|
+
autoValueHanlde: null,
|
3036
3253
|
|
3037
3254
|
showRuleFlag: 1,
|
3038
3255
|
showRuleEnabled: 1,
|
3039
|
-
showRules: []
|
3256
|
+
showRules: [],
|
3257
|
+
|
3258
|
+
...defaultTextFlagConfig
|
3040
3259
|
}
|
3041
3260
|
},
|
3042
3261
|
{
|
3043
|
-
type: "
|
3044
|
-
|
3045
|
-
icon: "
|
3262
|
+
type: "modify_by-text",
|
3263
|
+
targetType: "text",
|
3264
|
+
icon: "text",
|
3046
3265
|
commonFlag: !0,
|
3047
3266
|
formItemFlag: !0,
|
3048
|
-
|
3267
|
+
columnFlag: true,
|
3268
|
+
tableField: null,
|
3049
3269
|
options: {
|
3050
3270
|
name: "",
|
3051
3271
|
keyNameEnabled: !0,
|
3052
|
-
keyName: "",
|
3272
|
+
keyName: "_modifyBy",
|
3273
|
+
label: "更新人",
|
3274
|
+
submitFlag: true,
|
3275
|
+
formField: "",
|
3053
3276
|
hidden: !1,
|
3277
|
+
required: !1,
|
3054
3278
|
customClass: "",
|
3055
|
-
|
3056
|
-
|
3279
|
+
defaultValue: "",
|
3280
|
+
labelAlign: "",
|
3281
|
+
labelWidth: null,
|
3282
|
+
labelHidden: !1,
|
3283
|
+
onCreated: "",
|
3284
|
+
onMounted: "",
|
3285
|
+
accessType: "1",
|
3286
|
+
labelColor: '#555555',
|
3287
|
+
...defaultWfConfig,
|
3288
|
+
|
3289
|
+
autoValueEnabled: false,
|
3290
|
+
autoValueHanlde: null,
|
3291
|
+
|
3292
|
+
showRuleFlag: 1,
|
3293
|
+
showRuleEnabled: 1,
|
3294
|
+
showRules: [],
|
3295
|
+
|
3296
|
+
...defaultTextFlagConfig
|
3297
|
+
}
|
3298
|
+
},
|
3299
|
+
{
|
3300
|
+
type: "create_date-text",
|
3301
|
+
targetType: "text",
|
3302
|
+
icon: "text",
|
3303
|
+
commonFlag: !0,
|
3304
|
+
formItemFlag: !0,
|
3305
|
+
columnFlag: true,
|
3306
|
+
tableField: null,
|
3307
|
+
options: {
|
3308
|
+
name: "",
|
3309
|
+
keyNameEnabled: !0,
|
3310
|
+
keyName: "create_date",
|
3311
|
+
label: "创建时间",
|
3057
3312
|
submitFlag: true,
|
3058
|
-
|
3059
|
-
|
3060
|
-
|
3061
|
-
|
3313
|
+
formField: "",
|
3314
|
+
hidden: !1,
|
3315
|
+
required: !1,
|
3316
|
+
customClass: "",
|
3317
|
+
defaultValue: "",
|
3318
|
+
labelAlign: "",
|
3319
|
+
labelWidth: null,
|
3320
|
+
labelHidden: !1,
|
3321
|
+
onCreated: "",
|
3062
3322
|
onMounted: "",
|
3323
|
+
accessType: "1",
|
3324
|
+
labelColor: '#555555',
|
3325
|
+
...defaultWfConfig,
|
3326
|
+
|
3327
|
+
autoValueEnabled: false,
|
3328
|
+
autoValueHanlde: null,
|
3063
3329
|
|
3064
3330
|
showRuleFlag: 1,
|
3065
3331
|
showRuleEnabled: 1,
|
3066
|
-
showRules: []
|
3332
|
+
showRules: [],
|
3333
|
+
|
3334
|
+
...defaultTextFlagConfig
|
3335
|
+
}
|
3336
|
+
},
|
3337
|
+
{
|
3338
|
+
type: "modify_date-text",
|
3339
|
+
targetType: "text",
|
3340
|
+
icon: "text",
|
3341
|
+
commonFlag: !0,
|
3342
|
+
formItemFlag: !0,
|
3343
|
+
columnFlag: true,
|
3344
|
+
tableField: null,
|
3345
|
+
options: {
|
3346
|
+
name: "",
|
3347
|
+
keyNameEnabled: !0,
|
3348
|
+
keyName: "modify_date",
|
3349
|
+
label: "更新时间",
|
3350
|
+
submitFlag: true,
|
3351
|
+
formField: "",
|
3352
|
+
hidden: !1,
|
3353
|
+
required: !1,
|
3354
|
+
customClass: "",
|
3355
|
+
defaultValue: "",
|
3356
|
+
labelAlign: "",
|
3357
|
+
labelWidth: null,
|
3358
|
+
labelHidden: !1,
|
3359
|
+
onCreated: "",
|
3360
|
+
onMounted: "",
|
3361
|
+
accessType: "1",
|
3362
|
+
labelColor: '#555555',
|
3363
|
+
...defaultWfConfig,
|
3364
|
+
|
3365
|
+
autoValueEnabled: false,
|
3366
|
+
autoValueHanlde: null,
|
3367
|
+
|
3368
|
+
showRuleFlag: 1,
|
3369
|
+
showRuleEnabled: 1,
|
3370
|
+
showRules: [],
|
3371
|
+
|
3372
|
+
...defaultTextFlagConfig
|
3067
3373
|
}
|
3068
3374
|
},
|
3375
|
+
|
3376
|
+
{
|
3377
|
+
type: "user-vabsearch",
|
3378
|
+
targetType: "singerSearch",
|
3379
|
+
icon: "searchbox",
|
3380
|
+
commonFlag: !0,
|
3381
|
+
columnFlag: true,
|
3382
|
+
formItemFlag: !0,
|
3383
|
+
tableField: null,
|
3384
|
+
options: {
|
3385
|
+
...vabsearchConfig,
|
3386
|
+
vabSearchName: "nick_name",
|
3387
|
+
userDefaultVabSearch: true,
|
3388
|
+
label: "用户",
|
3389
|
+
searchDialogConfig: {
|
3390
|
+
...defaultSearchDialogConfig,
|
3391
|
+
multipleChoices: false,
|
3392
|
+
formCode: "user_dialog",
|
3393
|
+
valueSourceField: "id",
|
3394
|
+
labelSourceField: "nick_name",
|
3395
|
+
},
|
3396
|
+
}
|
3397
|
+
},
|
3398
|
+
{
|
3399
|
+
type: "saleOrg-vabsearch",
|
3400
|
+
targetType: "singerSearch",
|
3401
|
+
icon: "searchbox",
|
3402
|
+
commonFlag: !0,
|
3403
|
+
columnFlag: true,
|
3404
|
+
formItemFlag: !0,
|
3405
|
+
tableField: null,
|
3406
|
+
options: {
|
3407
|
+
...vabsearchConfig,
|
3408
|
+
vabSearchName: "sale_org_name",
|
3409
|
+
saleOrgDefaultVabSearch: true,
|
3410
|
+
label: "机构",
|
3411
|
+
searchDialogConfig: {
|
3412
|
+
...defaultSearchDialogConfig,
|
3413
|
+
multipleChoices: false,
|
3414
|
+
formCode: "sale_org_dialog",
|
3415
|
+
valueSourceField: "id",
|
3416
|
+
labelSourceField: "name"
|
3417
|
+
},
|
3418
|
+
}
|
3419
|
+
},
|
3420
|
+
|
3421
|
+
{
|
3422
|
+
type: "user-project-tag",
|
3423
|
+
targetType: "project-tag",
|
3424
|
+
icon: "uploadbox",
|
3425
|
+
commonFlag: !0,
|
3426
|
+
columnFlag: true,
|
3427
|
+
formItemFlag: !0,
|
3428
|
+
tableField: null,
|
3429
|
+
options: {
|
3430
|
+
...projectTagConfig,
|
3431
|
+
label: "用户",
|
3432
|
+
tagFormCode: "user_dialog",
|
3433
|
+
tagLabelField: "nick_name",
|
3434
|
+
tagUniqueField: "id",
|
3435
|
+
tagFormLabelField: "nick_name",
|
3436
|
+
tagFormUniqueField: "id",
|
3437
|
+
tabDeleteEnabled: true,
|
3438
|
+
}
|
3439
|
+
},
|
3440
|
+
{
|
3441
|
+
type: "saleOrg-project-tag",
|
3442
|
+
targetType: "project-tag",
|
3443
|
+
icon: "uploadbox",
|
3444
|
+
commonFlag: !0,
|
3445
|
+
columnFlag: true,
|
3446
|
+
formItemFlag: !0,
|
3447
|
+
tableField: null,
|
3448
|
+
options: {
|
3449
|
+
...projectTagConfig,
|
3450
|
+
label: "机构",
|
3451
|
+
tagFormCode: "sale_org_dialog",
|
3452
|
+
tagLabelField: "name",
|
3453
|
+
tagUniqueField: "id",
|
3454
|
+
tagFormLabelField: "name",
|
3455
|
+
tagFormUniqueField: "id",
|
3456
|
+
tabDeleteEnabled: true,
|
3457
|
+
|
3458
|
+
}
|
3459
|
+
},
|
3460
|
+
|
3461
|
+
|
3069
3462
|
]
|
3070
3463
|
|
3071
3464
|
export const keyNamePrefixMap = {
|