cloud-web-corejs 1.0.276 → 1.0.277
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 +28 -24
- package/src/App.vue +73 -71
- package/src/api/user.js +21 -0
- package/src/components/baseArea/index.vue +82 -27
- package/src/components/baseTabs/mixins.js +5 -1
- package/src/components/luckysheet/dialog.vue +1 -1
- package/src/components/micro-view-host/contract.js +66 -0
- package/src/components/micro-view-host/index.vue +148 -0
- package/src/components/table/tableForm.vue +16 -5
- package/src/components/table/tableFormMixin.js +35 -7
- package/src/components/vb-tabs/x-tabs.vue +167 -143
- package/src/components/wf/content.vue +14 -0
- package/src/components/wf/content2.vue +4 -2
- package/src/components/wf/wf.js +74 -23
- package/src/components/wf/wfActionDropdown.vue +85 -0
- package/src/components/wf/wfActionItems.js +136 -0
- package/src/components/wf/wfAutoConfirm.js +55 -0
- package/src/components/wf/wfButtonName.js +60 -0
- package/src/components/wf/wfUserRange.js +53 -0
- package/src/components/wf/wfUtil.js +373 -295
- package/src/components/xform/XFormTabContainer//346/226/260/345/242/236/351/241/265/347/255/276/346/250/241/345/274/217-/346/234/200/347/273/210/345/256/236/347/216/260.md +195 -0
- package/src/components/xform/docs/2026-07 table/344/270/216excelExport/344/277/256/345/244/215/345/217/212/345/257/274/345/207/272/344/274/230/345/214/226.md" +57 -0
- package/src/components/xform/docs/2026-07 /346/216/222/346/237/245/344/277/256/345/244/215/350/256/260/345/275/225.md" +73 -0
- package/src/components/xform/docs/autocomplete /350/207/252/345/212/250/345/256/214/346/210/220/347/273/204/344/273/266/350/257/264/346/230/216.md" +126 -0
- package/src/components/xform/docs//345/257/271/346/257/224/345/212/237/350/203/275/350/220/275/345/234/260/346/226/271/346/241/210.md +986 -0
- package/src/components/xform/docs//346/225/260/346/215/256/350/241/250/346/240/274/345/212/250/346/200/201/345/210/227 JSON /350/257/264/346/230/216.md" +657 -0
- package/src/components/xform/docs//346/240/221/350/241/250rowField/346/224/266/346/225/233-/350/220/275/345/234/260/346/226/207/346/241/243.md +1427 -0
- package/src/components/xform/form-designer/designer.js +2085 -2025
- package/src/components/xform/form-designer/form-widget/container-widget/containerMixin.js +9 -11
- package/src/components/xform/form-designer/form-widget/container-widget/data-table-mixin.js +76 -75
- package/src/components/xform/form-designer/form-widget/container-widget/data-table-widget.vue +10 -4
- package/src/components/xform/form-designer/form-widget/container-widget/detail-plain-widget.vue +76 -0
- package/src/components/xform/form-designer/form-widget/container-widget/detail-widget.vue +59 -5
- package/src/components/xform/form-designer/form-widget/dialog/fileReferenceDialog.vue +38 -17
- package/src/components/xform/form-designer/form-widget/dialog/formDialog.vue +138 -13
- package/src/components/xform/form-designer/form-widget/dialog/formFieldDialog.vue +1 -1
- package/src/components/xform/form-designer/form-widget/dialog/importDialogMixin.js +1774 -1772
- package/src/components/xform/form-designer/form-widget/dialog/searchFormDialog.vue +2 -3
- package/src/components/xform/form-designer/form-widget/dialog/vabSearchDialog.vue +1 -1
- package/src/components/xform/form-designer/form-widget/field-widget/a-link-widget.vue +66 -53
- package/src/components/xform/form-designer/form-widget/field-widget/baseAttachment-widget.vue +287 -214
- package/src/components/xform/form-designer/form-widget/field-widget/button-widget.vue +76 -66
- package/src/components/xform/form-designer/form-widget/field-widget/cascader-widget.vue +208 -124
- package/src/components/xform/form-designer/form-widget/field-widget/census-widget.vue +3 -9
- package/src/components/xform/form-designer/form-widget/field-widget/copy_button-widget.vue +11 -2
- package/src/components/xform/form-designer/form-widget/field-widget/date-range-widget.vue +7 -6
- package/src/components/xform/form-designer/form-widget/field-widget/date-widget.vue +43 -19
- package/src/components/xform/form-designer/form-widget/field-widget/fieldMixin.js +680 -372
- package/src/components/xform/form-designer/form-widget/field-widget/form-item-wrapper.vue +879 -763
- package/src/components/xform/form-designer/form-widget/field-widget/mixins/date-limit-mixin.js +17 -2
- package/src/components/xform/form-designer/form-widget/field-widget/mixins/echart-bar-mixin.js +3 -9
- package/src/components/xform/form-designer/form-widget/field-widget/mixins/echart-category-mixin.js +3 -9
- package/src/components/xform/form-designer/form-widget/field-widget/mixins/echart-pie-mixin.js +3 -9
- package/src/components/xform/form-designer/form-widget/field-widget/mixins/relative-default-mixin.js +107 -0
- package/src/components/xform/form-designer/form-widget/field-widget/mixins/relativeDateUtil.js +321 -0
- package/src/components/xform/form-designer/form-widget/field-widget/mixins/time-limit-mixin.js +77 -0
- package/src/components/xform/form-designer/form-widget/field-widget/mixins/vabsearch-mixin.js +13 -0
- package/src/components/xform/form-designer/form-widget/field-widget/number-widget.vue +13 -8
- package/src/components/xform/form-designer/form-widget/field-widget/project-tag-widget.vue +4 -9
- package/src/components/xform/form-designer/form-widget/field-widget/save_submit_wf_button-widget.vue +3 -0
- package/src/components/xform/form-designer/form-widget/field-widget/select-export-item-button-widget.vue +120 -120
- package/src/components/xform/form-designer/form-widget/field-widget/static-content-wrapper.vue +4 -0
- package/src/components/xform/form-designer/form-widget/field-widget/status-widget.vue +11 -0
- package/src/components/xform/form-designer/form-widget/field-widget/switch-widget.vue +9 -1
- package/src/components/xform/form-designer/form-widget/field-widget/tempStorage-widget.vue +1 -1
- package/src/components/xform/form-designer/form-widget/field-widget/text-widget.vue +7 -3
- package/src/components/xform/form-designer/form-widget/field-widget/time-range-widget.vue +4 -2
- package/src/components/xform/form-designer/form-widget/field-widget/time-widget.vue +36 -5
- package/src/components/xform/form-designer/form-widget/field-widget/vabUpload-widget.vue +338 -374
- package/src/components/xform/form-designer/form-widget/index.vue +6 -1
- package/src/components/xform/form-designer/form-widget/indexMixin.js +29 -25
- package/src/components/xform/form-designer/index.vue +194 -191
- package/src/components/xform/form-designer/indexMixin.js +860 -847
- package/src/components/xform/form-designer/setting-panel/dataSource-setting.vue +397 -397
- package/src/components/xform/form-designer/setting-panel/form-dynamicField-setting.vue +602 -601
- package/src/components/xform/form-designer/setting-panel/form-setting.vue +1790 -1483
- package/src/components/xform/form-designer/setting-panel/index.vue +2 -7
- package/src/components/xform/form-designer/setting-panel/indexMixin.js +370 -335
- package/src/components/xform/form-designer/setting-panel/option-items-setting.vue +585 -544
- 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/a-text-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/alignType-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/buttonIcon-editor.vue +14 -15
- package/src/components/xform/form-designer/setting-panel/property-editor/censusClass-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/colorClass-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/commonAttributeEnabled-editor.vue +3 -3
- package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/columnRenderDialog.vue +124 -125
- package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/data-table-editor.vue +1151 -957
- package/src/components/xform/form-designer/setting-panel/property-editor/container-detail/detail-editor.vue +96 -74
- package/src/components/xform/form-designer/setting-panel/property-editor/container-detail-plain/detail-plain-editor.vue +75 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/container-grid/colHeight-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/container-grid/gutter-editor.vue +14 -13
- package/src/components/xform/form-designer/setting-panel/property-editor/container-grid-col/grid-col-height-editor.vue +1 -1
- 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-grid-col/grid-col-span-editor.vue +4 -4
- package/src/components/xform/form-designer/setting-panel/property-editor/container-h5-card/h5-card-editor.vue +124 -124
- package/src/components/xform/form-designer/setting-panel/property-editor/container-list-h5/list-h5-editor.vue +26 -31
- package/src/components/xform/form-designer/setting-panel/property-editor/container-panel/height-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/container-panel/width-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/container-tab/tab-customClass-editor.vue +119 -119
- package/src/components/xform/form-designer/setting-panel/property-editor/container-tab/tabClass-editor.vue +45 -45
- package/src/components/xform/form-designer/setting-panel/property-editor/container-table/table-dynamicField-editor.vue +340 -342
- package/src/components/xform/form-designer/setting-panel/property-editor/container-table-cell/cellHeight-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/container-table-cell/cellWidth-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/container-tree/tree-customClass-editor.vue +2 -2
- package/src/components/xform/form-designer/setting-panel/property-editor/container-tree-pane/tree-pane-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/container-vf-dialog/cancelButtonLabel-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/container-vf-dialog/okButtonLabel-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/container-vf-dialog/title-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/container-vf-dialog/width-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/containerClass-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/customClass-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/defaultValue-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/descriptionsItems-editor.vue +4 -4
- package/src/components/xform/form-designer/setting-panel/property-editor/downloadButtonFlag-editor.vue +3 -3
- package/src/components/xform/form-designer/setting-panel/property-editor/dropdownFlag-editor.vue +6 -2
- package/src/components/xform/form-designer/setting-panel/property-editor/dsName-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/echartHeight-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/endPlaceholder-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-accessUrl/accessUrl-editor.vue +2 -2
- package/src/components/xform/form-designer/setting-panel/property-editor/field-area-select/areaDataType-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-area-select/areaMinLevel-editor.vue +50 -50
- package/src/components/xform/form-designer/setting-panel/property-editor/field-area-select/areaName-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-autocomplete/autocomplete-vabSearchName-editor.vue +7 -7
- package/src/components/xform/form-designer/setting-panel/property-editor/field-button/addTableData-event-editor.vue +84 -85
- package/src/components/xform/form-designer/setting-panel/property-editor/field-button/button-type-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-button/clickBindActions.js +262 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/field-button/clickBindEvent-editor.vue +97 -88
- package/src/components/xform/form-designer/setting-panel/property-editor/field-button/form-host-event-editor.vue +188 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/field-button/icon-editor.vue +14 -15
- package/src/components/xform/form-designer/setting-panel/property-editor/field-button/search-dialog-event-editor.vue +27 -10
- package/src/components/xform/form-designer/setting-panel/property-editor/field-cascader/checkStrictly-editor.vue +11 -13
- package/src/components/xform/form-designer/setting-panel/property-editor/field-common/keyName-editor.vue +74 -67
- package/src/components/xform/form-designer/setting-panel/property-editor/field-date/date-dateLimit-editor.vue +27 -5
- package/src/components/xform/form-designer/setting-panel/property-editor/field-date/date-defaultValue-editor.vue +35 -18
- package/src/components/xform/form-designer/setting-panel/property-editor/field-date/date-format-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-date/date-type-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-date/date-valueFormat-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-date-range/date-range-defaultTime-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-date-range/date-range-defaultValue-editor.vue +35 -18
- package/src/components/xform/form-designer/setting-panel/property-editor/field-date-range/date-range-format-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-date-range/date-range-type-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-date-range/date-range-valueFormat-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-divider/contentPosition-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-dropdown-menu/dropdown-menu-editor.vue +59 -59
- package/src/components/xform/form-designer/setting-panel/property-editor/field-echart/echart-bar-editor.vue +11 -11
- package/src/components/xform/form-designer/setting-panel/property-editor/field-echart/echart-category-editor.vue +10 -10
- package/src/components/xform/form-designer/setting-panel/property-editor/field-echart/echart-pie-editor.vue +12 -12
- package/src/components/xform/form-designer/setting-panel/property-editor/field-file-upload/file-upload-fileTypes-editor.vue +44 -44
- package/src/components/xform/form-designer/setting-panel/property-editor/field-html-text/htmlContent-editor.vue +29 -29
- package/src/components/xform/form-designer/setting-panel/property-editor/field-import-button/import-button-editor.vue +6 -6
- package/src/components/xform/form-designer/setting-panel/property-editor/field-import-button/import2-button-editor.vue +4 -4
- package/src/components/xform/form-designer/setting-panel/property-editor/field-number/controlsPosition-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-picture-upload/picture-upload-fileTypes-editor.vue +44 -44
- package/src/components/xform/form-designer/setting-panel/property-editor/field-print-button/print-button-editor.vue +115 -115
- package/src/components/xform/form-designer/setting-panel/property-editor/field-print-button/print-detail-button-editor.vue +115 -115
- package/src/components/xform/form-designer/setting-panel/property-editor/field-rate/highThreshold-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-rate/lowThreshold-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-rate/rate-defaultValue-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-rate/rate-max-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-script/script-editor.vue +4 -4
- package/src/components/xform/form-designer/setting-panel/property-editor/field-script-input/script-input-editor.vue +4 -4
- package/src/components/xform/form-designer/setting-panel/property-editor/field-static-text/fontSize-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-static-text/textContent-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-status/field-status-editor.vue +3 -3
- package/src/components/xform/form-designer/setting-panel/property-editor/field-switch/activeText-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-switch/inactiveText-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-switch/switchWidth-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-table-export-button/select-export-button-editor.vue +2 -2
- package/src/components/xform/form-designer/setting-panel/property-editor/field-table-export-button/select-export-item-button-editor.vue +74 -74
- package/src/components/xform/form-designer/setting-panel/property-editor/field-table-export-button/table-export-button-editor.vue +3 -3
- package/src/components/xform/form-designer/setting-panel/property-editor/field-time/time-defaultValue-editor.vue +34 -18
- package/src/components/xform/form-designer/setting-panel/property-editor/field-time/time-format-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-time/time-timeLimit-editor.vue +53 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/field-time-range/time-range-defaultValue-editor.vue +35 -18
- package/src/components/xform/form-designer/setting-panel/property-editor/field-time-range/time-range-format-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-vabSearch/vabSearchField-editor.vue +2 -2
- package/src/components/xform/form-designer/setting-panel/property-editor/field-vabSearch/vabSearchName-editor.vue +2 -2
- package/src/components/xform/form-designer/setting-panel/property-editor/field-vabUpload/field-vabUpload-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-vabUpload2/field-vabUpload2-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-vue-page/vue-page-editor.vue +2 -2
- package/src/components/xform/form-designer/setting-panel/property-editor/fileMaxSize-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/fileTypesSelect.vue +176 -176
- package/src/components/xform/form-designer/setting-panel/property-editor/fixedQuery-editor.vue +39 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/formScriptEnabled-editor.vue +41 -6
- package/src/components/xform/form-designer/setting-panel/property-editor/formatType-editor.vue +2 -2
- package/src/components/xform/form-designer/setting-panel/property-editor/formula-editor.vue +972 -972
- package/src/components/xform/form-designer/setting-panel/property-editor/iconClass-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/label-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/labelAlign-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/labelColor-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/labelWidth-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/max-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/maxLength-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/min-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/minLength-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/name-editor.vue +15 -4
- package/src/components/xform/form-designer/setting-panel/property-editor/oplog-editor.vue +3 -3
- 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/prefixIcon-editor.vue +14 -15
- package/src/components/xform/form-designer/setting-panel/property-editor/project-tag-editor.vue +6 -6
- package/src/components/xform/form-designer/setting-panel/property-editor/relative-default-block.vue +369 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/requiredHint-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/rows-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/space-editor-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/startPlaceholder-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/step-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/styleTableClass-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/styleTitClass-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/suffixIcon-editor.vue +14 -15
- package/src/components/xform/form-designer/setting-panel/property-editor/tempStorage-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/textFlag-editor.vue +2 -3
- package/src/components/xform/form-designer/setting-panel/property-editor/type-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/uploadTip-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/uploadURL-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/urlValueEnabled-editor.vue +91 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/validation-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/validationHint-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/widgetWidth-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/propertyRegister.js +374 -351
- package/src/components/xform/form-designer/toolbar-panel/index.vue +266 -103
- package/src/components/xform/form-designer/toolbar-panel/indexMixin.js +655 -589
- package/src/components/xform/form-designer/widget-panel/index.vue +391 -341
- package/src/components/xform/form-designer/widget-panel/indexMixin.js +351 -308
- package/src/components/xform/form-designer/widget-panel/widgetsConfig.js +4642 -4028
- package/src/components/xform/form-render/container-item/containerItemMixin.js +76 -61
- package/src/components/xform/form-render/container-item/data-table-item.vue +24 -13
- package/src/components/xform/form-render/container-item/data-table-mixin.js +5927 -3400
- package/src/components/xform/form-render/container-item/detail-h5-item.vue +173 -173
- package/src/components/xform/form-render/container-item/detail-item.vue +446 -224
- package/src/components/xform/form-render/container-item/detail-plain-item.vue +92 -0
- package/src/components/xform/form-render/container-item/list-h5-item.vue +1186 -411
- package/src/components/xform/form-render/container-item/tab-item.vue +129 -125
- package/src/components/xform/form-render/container-item/table-item.vue +0 -3
- package/src/components/xform/form-render/container-item/table2-item.vue +18 -10
- package/src/components/xform/form-render/dynamicDialogRender.js +140 -99
- package/src/components/xform/form-render/index.vue +8 -8
- package/src/components/xform/form-render/indexMixin.js +5299 -3766
- package/src/components/xform/form-render/refMixin.js +14 -11
- package/src/components/xform/lang/en-US.js +473 -438
- package/src/components/xform/lang/en-US_extension.js +4 -0
- package/src/components/xform/lang/zh-CN.js +646 -620
- package/src/components/xform/mixins/defaultHandle.js +363 -26
- package/src/components/xform/mixins/scriptHttp.js +54 -51
- package/src/components/xform/utils/attachmentValueUtil.js +239 -0
- package/src/components/xform/utils/fixedQueryUtil.js +93 -0
- package/src/components/xform/utils/format.js +195 -169
- package/src/components/xform/utils/queryParamUtil.js +84 -0
- package/src/components/xform/utils/tableColumnHelper.js +7 -8
- package/src/components/xform/utils/util.js +1663 -1551
- package/src/components/xform/utils/validators.js +100 -48
- package/src/index.js +403 -89
- package/src/layout/components/AppMain.vue +147 -119
- package/src/layout/components/Sidebar/default.vue +109 -59
- package/src/layout/components/TagsView/index.vue +1 -1
- package/src/layout/components/extractedCode/queryDialog.vue +33 -26
- package/src/layout/components/extractedCode/viewDialog.vue +207 -193
- package/src/layout/components/langTool.vue +128 -123
- package/src/layout/defaultLayout.vue +170 -158
- package/src/mixins/wf/index.js +40 -38
- package/src/public-path.js +38 -0
- package/src/router/modules/system.js +4 -0
- package/src/store/config/index.js +945 -669
- package/src/utils/pdfUtil.js +428 -70
- package/src/views/bd/setting/bd_company_env/dialog.vue +1 -1
- package/src/views/bd/setting/formVersion/button.vue +5 -0
- package/src/views/bd/setting/formVersion/ftHistoryDialog.vue +21 -10
- package/src/views/bd/setting/formVersion/link.vue +5 -0
- package/src/views/bd/setting/form_script/edit.vue +1 -0
- package/src/views/bd/setting/form_script/edit1.vue +1 -0
- package/src/views/bd/setting/form_script/form_list.vue +1 -0
- package/src/views/bd/setting/form_script/list.vue +1 -0
- package/src/views/bd/setting/form_script/list1.vue +2 -0
- package/src/views/bd/setting/form_template/edit.vue +1 -0
- package/src/views/bd/setting/form_template/list.vue +2 -0
- package/src/views/bd/setting/form_template/mixins/edit.js +77 -74
- package/src/views/bd/setting/table_model/edit.vue +16 -29
- package/src/views/bd/setting/table_model/list.vue +1 -0
- package/src/views/bd/setting/table_model/mixins/edit.js +295 -149
- package/src/views/bd/setting/table_model/mixins/zdDialog.js +32 -0
- package/src/views/support/export_template/list.vue +1 -1
- package/src/views/user/company_info/edit.vue +149 -88
- package/src/views/user/form/form_template/dialog.vue +1 -1
- package/src/views/user/form/form_template/itemList.vue +1 -1
- package/src/views/user/form/form_template/list.vue +1 -1
- package/src/views/user/form/form_template_field/dialog.vue +1 -1
- package/src/views/user/form/form_type/dialog.vue +1 -1
- package/src/views/user/form/form_type/list.vue +1 -1
- package/src/views/user/form/report_requestaccess/dialog.vue +1 -1
- package/src/views/user/form/report_requestaccess/list.vue +1 -1
- package/src/views/user/form/vform/designer.vue +51 -22
- package/src/views/user/form/vform/render.vue +21 -23
- package/src/views/user/form/view/list.vue +134 -37
- package/src/views/user/wf/wfReport/index.vue +24 -1
- package/src/views/user/wf/wf_manage/list.vue +8 -4
- package/src/components/xform/form-designer/form-widget/dialog/formDrawer.vue +0 -209
- package/src/components/xform/form-designer/form-widget/dialog/importDialogMixin - /345/211/257/346/234/254.js" +0 -1639
- package/src/views/bd/setting/table_model/mixins/edit copy.js +0 -903
- package/src/views/user/menu/voc_list.vue +0 -686
|
@@ -1,119 +1,147 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<section class="app-main">
|
|
3
|
-
<transition name="fade-transform" mode="out-in">
|
|
4
|
-
<!-- <keep-alive :include="cachedViews"><router-view :key="key" v-if="$route.name !== 'outLink'" /></keep-alive>-->
|
|
5
|
-
|
|
6
|
-
<BaseKeepAlive :include="cachedViews">
|
|
7
|
-
<router-view :key="key" v-if="$route.name !== 'outLink'" />
|
|
8
|
-
</BaseKeepAlive>
|
|
9
|
-
|
|
10
|
-
</transition>
|
|
11
|
-
<template v-for="item in outVisitedViews">
|
|
12
|
-
<outLink
|
|
13
|
-
:ref="'ref_'+$route.path"
|
|
14
|
-
:key="item.path"
|
|
15
|
-
v-show="$route.path === item.path"
|
|
16
|
-
v-if="$route.path !== item.path || reflushFlag"
|
|
17
|
-
visible-key="reflushFlag"
|
|
18
|
-
:parent-target="_self"
|
|
19
|
-
@reload="$reloadHandle"
|
|
20
|
-
></outLink>
|
|
21
|
-
</template>
|
|
22
|
-
|
|
23
|
-
<
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
import
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
return
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
})
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
.
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
1
|
+
<template>
|
|
2
|
+
<section class="app-main">
|
|
3
|
+
<transition name="fade-transform" mode="out-in">
|
|
4
|
+
<!-- <keep-alive :include="cachedViews"><router-view :key="key" v-if="$route.name !== 'outLink'" /></keep-alive>-->
|
|
5
|
+
|
|
6
|
+
<BaseKeepAlive :include="cachedViews">
|
|
7
|
+
<router-view :key="key" v-if="microReloadFlag && $route.name !== 'outLink'" />
|
|
8
|
+
</BaseKeepAlive>
|
|
9
|
+
|
|
10
|
+
</transition>
|
|
11
|
+
<template v-for="item in outVisitedViews">
|
|
12
|
+
<outLink
|
|
13
|
+
:ref="'ref_'+$route.path"
|
|
14
|
+
:key="item.path"
|
|
15
|
+
v-show="$route.path === item.path"
|
|
16
|
+
v-if="$route.path !== item.path || reflushFlag"
|
|
17
|
+
visible-key="reflushFlag"
|
|
18
|
+
:parent-target="_self"
|
|
19
|
+
@reload="$reloadHandle"
|
|
20
|
+
></outLink>
|
|
21
|
+
</template>
|
|
22
|
+
<!-- 挂载子应用 开始 -->
|
|
23
|
+
<section id="Appmicro" />
|
|
24
|
+
<!-- 挂载子应用 结束 -->
|
|
25
|
+
<unreadDialog></unreadDialog>
|
|
26
|
+
<watermark></watermark>
|
|
27
|
+
</section>
|
|
28
|
+
</template>
|
|
29
|
+
|
|
30
|
+
<script>
|
|
31
|
+
import outLink from '@base/views/user/outLink/index.vue';
|
|
32
|
+
import unreadDialog from "../../layout/components/notify_message/unreadDialog.vue";
|
|
33
|
+
import watermark from "./watermark";
|
|
34
|
+
import { isRepeatable } from "@base/utils/repeatOpen";
|
|
35
|
+
import { refreshMicroApp } from "@base/microRouter";
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
export default {
|
|
39
|
+
name: 'AppMain',
|
|
40
|
+
computed: {
|
|
41
|
+
cachedViews() {
|
|
42
|
+
return this.$store.state.tagsView.cachedViews.filter(item => item != 'outLink');
|
|
43
|
+
},
|
|
44
|
+
key() {
|
|
45
|
+
// 可重复打开的路由按 fullPath 作为 key,使多开实例相互独立;
|
|
46
|
+
// 其余保持按 path,行为与原来一致。
|
|
47
|
+
return isRepeatable(this.$route) ? this.$route.fullPath : this.$route.path;
|
|
48
|
+
},
|
|
49
|
+
outVisitedViews() {
|
|
50
|
+
let visitedViews = this.$store.state.tagsView.visitedViews;
|
|
51
|
+
return visitedViews.filter(visitedView => visitedView.name == 'outLink');
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
components: {
|
|
55
|
+
outLink,
|
|
56
|
+
unreadDialog,
|
|
57
|
+
watermark
|
|
58
|
+
},
|
|
59
|
+
data() {
|
|
60
|
+
return {
|
|
61
|
+
rIndex: -1,
|
|
62
|
+
reflushFlag: true,
|
|
63
|
+
// 子应用模式下由 micro.reloadSeq 驱动的重建开关,见下方 watch
|
|
64
|
+
microReloadFlag: true
|
|
65
|
+
};
|
|
66
|
+
},
|
|
67
|
+
methods: {},
|
|
68
|
+
watch: {
|
|
69
|
+
// 主应用页签刷新经 update({microRefresh}) 传到子应用后自增该序号。
|
|
70
|
+
// 这里不走 /redirect 重建:子应用与主应用共用同一个浏览器 hash,
|
|
71
|
+
// 跳 /redirect 会被主应用 afterEach 判成"离开子应用路由"从而隐藏容器并暂停子应用路由,
|
|
72
|
+
// 重建被掐断,表现为刷新无反应。改为原地销毁重建组件,完全不碰 URL。
|
|
73
|
+
"$store.state.micro.reloadSeq"() {
|
|
74
|
+
let view = this.$route;
|
|
75
|
+
this.$store.dispatch("tagsView/delCachedView", view).then(() => {
|
|
76
|
+
this.microReloadFlag = false;
|
|
77
|
+
this.$nextTick(() => {
|
|
78
|
+
this.microReloadFlag = true;
|
|
79
|
+
});
|
|
80
|
+
});
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
created() {
|
|
84
|
+
// handler 存实例属性并在销毁时 $off:事件总线是应用级单例,
|
|
85
|
+
// 不解绑会在登出重建布局后累积 handler 并钉住旧实例(内存泄露)
|
|
86
|
+
this.reflushRouteViewHandler = (view) => {
|
|
87
|
+
// 子应用页面不在本 router-view 内(由 qiankun 挂独立容器),
|
|
88
|
+
// 走本地 /redirect 重建只会隐藏再显示容器、实例不变,须转发给子应用自己重建
|
|
89
|
+
if (refreshMicroApp(this.$route)) {
|
|
90
|
+
return;
|
|
91
|
+
}
|
|
92
|
+
if(this.$route.name=="outLink"){
|
|
93
|
+
let t = this.$refs["ref_"+this.$route.path][0];
|
|
94
|
+
t.$baseReload();
|
|
95
|
+
}else{
|
|
96
|
+
this.$store.dispatch('tagsView/delCachedView', view).then(() => {
|
|
97
|
+
const { fullPath } = view
|
|
98
|
+
this.$nextTick(() => {
|
|
99
|
+
this.$router.replace({
|
|
100
|
+
path: '/redirect' + fullPath
|
|
101
|
+
})
|
|
102
|
+
})
|
|
103
|
+
})
|
|
104
|
+
}
|
|
105
|
+
};
|
|
106
|
+
this.$baseEventBus.$on("reflushRouteView", this.reflushRouteViewHandler);
|
|
107
|
+
},
|
|
108
|
+
beforeDestroy() {
|
|
109
|
+
this.$baseEventBus.$off("reflushRouteView", this.reflushRouteViewHandler);
|
|
110
|
+
}
|
|
111
|
+
};
|
|
112
|
+
</script>
|
|
113
|
+
|
|
114
|
+
<style lang="scss" scoped>
|
|
115
|
+
.app-main {
|
|
116
|
+
/* 45= navbar 45 */
|
|
117
|
+
//min-height: calc(100vh - 45px);
|
|
118
|
+
height:calc(100vh - 10px);
|
|
119
|
+
width: 100%;
|
|
120
|
+
position: relative;
|
|
121
|
+
overflow: hidden;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.fixed-header + .app-main {
|
|
125
|
+
padding-top: 32px;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.hasTagsView {
|
|
129
|
+
.app-main {
|
|
130
|
+
/* 84 = navbar + tags-view = 45 + 34 */
|
|
131
|
+
min-height: calc(100vh - 79px);
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.fixed-header + .app-main {
|
|
135
|
+
padding-top: 79px;
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
</style>
|
|
139
|
+
|
|
140
|
+
<style lang="scss">
|
|
141
|
+
// fix css style bug in open el-dialog
|
|
142
|
+
.el-popup-parent--hidden {
|
|
143
|
+
.fixed-header {
|
|
144
|
+
padding-right: 15px;
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
</style>
|
|
@@ -142,9 +142,15 @@
|
|
|
142
142
|
:key="'menuModule' + menuModule.id"
|
|
143
143
|
@click.native="rourteTo(menuModule)"
|
|
144
144
|
>
|
|
145
|
-
<i
|
|
145
|
+
<i
|
|
146
|
+
:class="getMenuClass(menuModule, 1)"
|
|
147
|
+
v-if="menuModule.children.length <= 0"
|
|
148
|
+
></i>
|
|
146
149
|
<template slot="title">
|
|
147
|
-
<i
|
|
150
|
+
<i
|
|
151
|
+
:class="getMenuClass(menuModule, 1)"
|
|
152
|
+
v-if="menuModule.children.length > 0"
|
|
153
|
+
></i>
|
|
148
154
|
<span>{{ getMenuName(menuModule) }}</span>
|
|
149
155
|
</template>
|
|
150
156
|
<component
|
|
@@ -173,7 +179,7 @@
|
|
|
173
179
|
</el-menu-item>
|
|
174
180
|
</component>
|
|
175
181
|
</component>
|
|
176
|
-
<el-menu-item
|
|
182
|
+
<!-- <el-menu-item
|
|
177
183
|
@click.native="openCreateCompanyDialog"
|
|
178
184
|
index="xx"
|
|
179
185
|
v-if="isFormDev"
|
|
@@ -182,7 +188,7 @@
|
|
|
182
188
|
<i :class="getMenuClass({}, 1)"></i>
|
|
183
189
|
<span>新建企业</span>
|
|
184
190
|
</template>
|
|
185
|
-
</el-menu-item>
|
|
191
|
+
</el-menu-item> -->
|
|
186
192
|
</el-scrollbar>
|
|
187
193
|
</el-menu>
|
|
188
194
|
<div class="menu-btn">
|
|
@@ -798,7 +804,7 @@ export default {
|
|
|
798
804
|
if (sh >= 0) {
|
|
799
805
|
$snav.style["margin-top"] = sh1 + "px";
|
|
800
806
|
} else if (sh < 0) {
|
|
801
|
-
let bd = sh1 + sh
|
|
807
|
+
let bd = sh1 + sh;
|
|
802
808
|
|
|
803
809
|
$snav.style["margin-top"] = bd + "px";
|
|
804
810
|
$snav.querySelector(".ico-arrow").style["margin-top"] =
|
|
@@ -1058,30 +1064,50 @@ export default {
|
|
|
1058
1064
|
position: relative;
|
|
1059
1065
|
background-color: rgba(0, 0, 0, 0.2);
|
|
1060
1066
|
word-break: break-word;
|
|
1061
|
-
.el-scrollbar__view >{
|
|
1062
|
-
.el-menu-item{
|
|
1063
|
-
|
|
1067
|
+
.el-scrollbar__view > {
|
|
1068
|
+
.el-menu-item {
|
|
1069
|
+
padding: 0 11px !important;
|
|
1070
|
+
span {
|
|
1071
|
+
font-size: 14px;
|
|
1072
|
+
}
|
|
1064
1073
|
}
|
|
1065
|
-
.el-submenu > .el-submenu__title{
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1074
|
+
.el-submenu > .el-submenu__title {
|
|
1075
|
+
padding: 0 11px !important;
|
|
1076
|
+
span {
|
|
1077
|
+
font-size: 14px;
|
|
1078
|
+
}
|
|
1079
|
+
~ .el-menu {
|
|
1080
|
+
padding: 5px 0;
|
|
1081
|
+
display: grid;
|
|
1082
|
+
> .el-menu-item {
|
|
1083
|
+
span {
|
|
1084
|
+
line-height: 1.4;
|
|
1085
|
+
height: 26px;
|
|
1086
|
+
}
|
|
1071
1087
|
}
|
|
1072
|
-
.el-submenu.is-opened .el-submenu__title{
|
|
1073
|
-
|
|
1074
|
-
|
|
1088
|
+
.el-submenu.is-opened .el-submenu__title {
|
|
1089
|
+
background-color: #fff;
|
|
1090
|
+
opacity: 1;
|
|
1091
|
+
span {
|
|
1092
|
+
color: $baseColor;
|
|
1093
|
+
}
|
|
1094
|
+
i.iconfont {
|
|
1095
|
+
color: $baseColor;
|
|
1096
|
+
}
|
|
1075
1097
|
}
|
|
1076
1098
|
}
|
|
1077
|
-
|
|
1078
1099
|
}
|
|
1079
1100
|
}
|
|
1080
|
-
.el-submenu__title
|
|
1101
|
+
.el-submenu__title,
|
|
1102
|
+
.el-menu-item {
|
|
1081
1103
|
padding: 0 11px;
|
|
1082
1104
|
height: 48px;
|
|
1083
1105
|
line-height: 48px;
|
|
1084
|
-
|
|
1106
|
+
overflow: hidden;
|
|
1107
|
+
&:hover,
|
|
1108
|
+
&.is-active {
|
|
1109
|
+
background-color: rgba(0, 0, 0, 0.29);
|
|
1110
|
+
}
|
|
1085
1111
|
i {
|
|
1086
1112
|
color: #fff;
|
|
1087
1113
|
font-size: 13px;
|
|
@@ -1090,7 +1116,7 @@ export default {
|
|
|
1090
1116
|
|
|
1091
1117
|
&.iconfont {
|
|
1092
1118
|
margin-right: 5px;
|
|
1093
|
-
font-size:
|
|
1119
|
+
font-size: 18px;
|
|
1094
1120
|
float: left;
|
|
1095
1121
|
}
|
|
1096
1122
|
|
|
@@ -1120,18 +1146,22 @@ export default {
|
|
|
1120
1146
|
&.is-opened .el-submenu__title {
|
|
1121
1147
|
//background-color: rgba(27, 66, 97) !important;
|
|
1122
1148
|
}
|
|
1123
|
-
.el-submenu .el-menu{
|
|
1149
|
+
.el-submenu .el-menu {
|
|
1150
|
+
display: none;
|
|
1151
|
+
}
|
|
1124
1152
|
}
|
|
1125
1153
|
|
|
1126
1154
|
.el-submenu {
|
|
1127
|
-
&.is-opened{
|
|
1128
|
-
> .el-submenu__title{
|
|
1155
|
+
&.is-opened {
|
|
1156
|
+
> .el-submenu__title {
|
|
1157
|
+
background-color: rgba(0, 0, 0, 0.29);
|
|
1158
|
+
}
|
|
1129
1159
|
}
|
|
1130
1160
|
.el-menu {
|
|
1131
1161
|
background: rgba(0, 0, 0, 0.35);
|
|
1132
1162
|
box-shadow: 0px -5px 8px #00000014 inset;
|
|
1133
1163
|
//padding:4px 0;
|
|
1134
|
-
.el-submenu__title{
|
|
1164
|
+
.el-submenu__title {
|
|
1135
1165
|
height: auto;
|
|
1136
1166
|
line-height: 1.4;
|
|
1137
1167
|
font-size: 12px;
|
|
@@ -1165,13 +1195,18 @@ export default {
|
|
|
1165
1195
|
zoom: 0.8;
|
|
1166
1196
|
display: none;
|
|
1167
1197
|
}
|
|
1168
|
-
span{
|
|
1198
|
+
span {
|
|
1199
|
+
height: auto;
|
|
1200
|
+
text-align: left !important;
|
|
1201
|
+
}
|
|
1169
1202
|
&:hover,
|
|
1170
1203
|
&.on {
|
|
1171
1204
|
opacity: 1;
|
|
1172
1205
|
background-color: #fbfdfe !important;
|
|
1173
1206
|
color: $baseColor !important;
|
|
1174
|
-
i.iconfont{
|
|
1207
|
+
i.iconfont {
|
|
1208
|
+
color: $baseColor;
|
|
1209
|
+
}
|
|
1175
1210
|
.el-icon-arrow-right {
|
|
1176
1211
|
color: $baseColor;
|
|
1177
1212
|
}
|
|
@@ -1179,7 +1214,7 @@ export default {
|
|
|
1179
1214
|
}
|
|
1180
1215
|
}
|
|
1181
1216
|
|
|
1182
|
-
.el-menu-item{
|
|
1217
|
+
.el-menu-item {
|
|
1183
1218
|
height: auto;
|
|
1184
1219
|
line-height: 1.4;
|
|
1185
1220
|
padding-left: 33px !important;
|
|
@@ -1202,7 +1237,7 @@ export default {
|
|
|
1202
1237
|
line-height: 20px;
|
|
1203
1238
|
left: 7px;
|
|
1204
1239
|
font-size: 18px;
|
|
1205
|
-
color
|
|
1240
|
+
color: #d0d6db;
|
|
1206
1241
|
}
|
|
1207
1242
|
|
|
1208
1243
|
[class^="el-icon-"] {
|
|
@@ -1215,7 +1250,6 @@ export default {
|
|
|
1215
1250
|
width: 14px;
|
|
1216
1251
|
zoom: 0.8;
|
|
1217
1252
|
display: none;
|
|
1218
|
-
|
|
1219
1253
|
}
|
|
1220
1254
|
|
|
1221
1255
|
&:hover,
|
|
@@ -1224,7 +1258,8 @@ export default {
|
|
|
1224
1258
|
background-color: #fbfdfe !important;
|
|
1225
1259
|
color: $baseColor !important;
|
|
1226
1260
|
|
|
1227
|
-
.el-icon-arrow-right,
|
|
1261
|
+
.el-icon-arrow-right,
|
|
1262
|
+
i.iconfont {
|
|
1228
1263
|
color: $baseColor;
|
|
1229
1264
|
}
|
|
1230
1265
|
}
|
|
@@ -1547,46 +1582,61 @@ export default {
|
|
|
1547
1582
|
// .el-submenu .el-menu {
|
|
1548
1583
|
// height: auto !important;
|
|
1549
1584
|
// }
|
|
1550
|
-
.el-menu--vertical{
|
|
1551
|
-
|
|
1552
|
-
|
|
1553
|
-
|
|
1554
|
-
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1559
|
-
|
|
1560
|
-
|
|
1585
|
+
.el-menu--vertical {
|
|
1586
|
+
> .el-menu--popup {
|
|
1587
|
+
overflow: auto; //不用atuo 超出不出滚动条
|
|
1588
|
+
.el-submenu__title,
|
|
1589
|
+
.el-menu-item {
|
|
1590
|
+
height: auto !important;
|
|
1591
|
+
line-height: 1.4 !important;
|
|
1592
|
+
padding: 8px 0;
|
|
1593
|
+
text-align: left;
|
|
1594
|
+
white-space: normal;
|
|
1595
|
+
word-break: break-word;
|
|
1596
|
+
background: none;
|
|
1597
|
+
i.iconfont {
|
|
1598
|
+
color: #fff;
|
|
1599
|
+
margin-right: 8px;
|
|
1561
1600
|
}
|
|
1562
|
-
}
|
|
1563
|
-
.el-submenu{
|
|
1564
|
-
.el-submenu__title{
|
|
1565
|
-
.el-submenu__icon-arrow{display:none}
|
|
1566
1601
|
}
|
|
1567
|
-
|
|
1568
|
-
|
|
1602
|
+
}
|
|
1603
|
+
.el-submenu {
|
|
1604
|
+
.el-submenu__title {
|
|
1605
|
+
.el-submenu__icon-arrow {
|
|
1606
|
+
display: none;
|
|
1607
|
+
}
|
|
1608
|
+
}
|
|
1609
|
+
&:hover {
|
|
1610
|
+
.el-submenu__title {
|
|
1569
1611
|
background-color: rgba(0, 0, 0, 0.29) !important;
|
|
1570
|
-
i.iconfont{
|
|
1612
|
+
i.iconfont {
|
|
1613
|
+
color: $baseColor;
|
|
1614
|
+
}
|
|
1571
1615
|
}
|
|
1572
1616
|
}
|
|
1573
1617
|
|
|
1574
|
-
&.is-opened{
|
|
1575
|
-
.el-submenu__title{
|
|
1618
|
+
&.is-opened {
|
|
1619
|
+
.el-submenu__title {
|
|
1576
1620
|
background-color: rgba(0, 0, 0, 0.29) !important;
|
|
1577
|
-
i.iconfont{
|
|
1621
|
+
i.iconfont {
|
|
1622
|
+
color: $baseColor;
|
|
1623
|
+
}
|
|
1578
1624
|
}
|
|
1579
1625
|
}
|
|
1580
1626
|
}
|
|
1581
|
-
.el-menu-item{
|
|
1582
|
-
&:hover{
|
|
1583
|
-
|
|
1584
|
-
|
|
1627
|
+
.el-menu-item {
|
|
1628
|
+
&:hover {
|
|
1629
|
+
background-color: rgba(0, 0, 0, 0.29) !important;
|
|
1630
|
+
i.iconfont {
|
|
1631
|
+
color: $baseColor;
|
|
1632
|
+
}
|
|
1585
1633
|
}
|
|
1586
1634
|
|
|
1587
|
-
&.is-opened{
|
|
1588
|
-
|
|
1589
|
-
|
|
1635
|
+
&.is-opened {
|
|
1636
|
+
background-color: rgba(0, 0, 0, 0.29) !important;
|
|
1637
|
+
i.iconfont {
|
|
1638
|
+
color: $baseColor;
|
|
1639
|
+
}
|
|
1590
1640
|
}
|
|
1591
1641
|
}
|
|
1592
1642
|
// .el-menu-item{
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
<el-dropdown-item @click.native="refreshSelectedTag($route)" :disabled="getIsLock()">
|
|
38
38
|
<i class="el-icon-refresh"/><span>{{ $t1('刷新') }}</span>
|
|
39
39
|
</el-dropdown-item>
|
|
40
|
-
<el-dropdown-item @click.native="closeAllTags(
|
|
40
|
+
<el-dropdown-item @click.native="closeAllTags($route)">
|
|
41
41
|
<i class="el-icon-close"/><span>{{ $t1('全部关闭') }}</span>
|
|
42
42
|
</el-dropdown-item>
|
|
43
43
|
</el-dropdown-menu>
|