@arkxos/arkos-system 0.1.0
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/README.md +36 -0
- package/ark_dist/664d11f069eab128.css +2 -0
- package/ark_dist/ArkOsConfig.js +136 -0
- package/ark_dist/ark-meta.json +92 -0
- package/ark_dist/ark_userChunk_1.js +3 -0
- package/ark_dist/ark_userChunk_2.js +5 -0
- package/ark_dist/ark_userChunk_3.js +49 -0
- package/ark_dist/config.js +75 -0
- package/ark_dist/css/views/views-flow-flow.ca26b106.css +5784 -0
- package/ark_dist/favicon.ico +0 -0
- package/ark_dist/fonts/bpmn.5d33bee4.eot +0 -0
- package/ark_dist/fonts/bpmn.67058807.woff2 +0 -0
- package/ark_dist/fonts/bpmn.b5c9250d.ttf +0 -0
- package/ark_dist/fonts/bpmn.e9e7d076.woff +0 -0
- package/ark_dist/img/404.png +0 -0
- package/ark_dist/img/auth_banner.jpg +0 -0
- package/ark_dist/img/avatar.jpg +0 -0
- package/ark_dist/img/avatar2.gif +0 -0
- package/ark_dist/img/avatar3.gif +0 -0
- package/ark_dist/img/bpmn.74eea12b.svg +224 -0
- package/ark_dist/img/loginbg.svg +1 -0
- package/ark_dist/img/logo-r.png +0 -0
- package/ark_dist/img/logo.png +0 -0
- package/ark_dist/img/mobile-bg.d055fadc.png +0 -0
- package/ark_dist/img/no-widgets.svg +57 -0
- package/ark_dist/img/tasks-example.png +0 -0
- package/ark_dist/img/ver.svg +236 -0
- package/ark_dist/index.html +118 -0
- package/ark_dist/js/app.e39a548a.js +1 -0
- package/ark_dist/js/views/views-flow-flow.84dc5300.js +3 -0
- package/ark_dist/js/views/views-flow-flow.84dc5300.js.LICENSE.txt +182 -0
- package/ark_dist/js/views/views-flow-flow.84dc5300.js.map +1 -0
- package/ark_proxy/entry.js +28 -0
- package/ark_proxy_es/entry.js +16 -0
- package/package.json +173 -0
- package/scripts/check.js +13 -0
- package/scripts/meta.js +21 -0
- package/scripts/prepublishOnly.js +28 -0
- package/src/admin/App.vue +13 -0
- package/src/admin/bpmn/custom/context-pad.js +405 -0
- package/src/admin/bpmn/custom/index.js +8 -0
- package/src/admin/bpmn/custom/palette.js +159 -0
- package/src/admin/bpmn/properties-panel/PropertiesView.vue +620 -0
- package/src/admin/bpmn/translate.js +23 -0
- package/src/admin/bpmn/translations.js +211 -0
- package/src/admin/components/affix/index.vue +385 -0
- package/src/admin/components/area-select/index.vue +52 -0
- package/src/admin/components/buttons/index.vue +47 -0
- package/src/admin/components/checkbox/index.vue +83 -0
- package/src/admin/components/code/code.js +149 -0
- package/src/admin/components/code/index.vue +450 -0
- package/src/admin/components/color/index.vue +30 -0
- package/src/admin/components/color-picker/index.vue +57 -0
- package/src/admin/components/color-scheme/index.vue +234 -0
- package/src/admin/components/condition-list/index.vue +170 -0
- package/src/admin/components/date/index.vue +29 -0
- package/src/admin/components/datetime/index.vue +45 -0
- package/src/admin/components/default-value-tips/index.vue +44 -0
- package/src/admin/components/dict-buttons/index.vue +53 -0
- package/src/admin/components/dict-checkbox/index.vue +45 -0
- package/src/admin/components/dict-radio/index.vue +68 -0
- package/src/admin/components/dict-select/index.vue +93 -0
- package/src/admin/components/dict-selects/index.vue +105 -0
- package/src/admin/components/dict-switch/index.vue +64 -0
- package/src/admin/components/dict-tree/index.vue +17 -0
- package/src/admin/components/dm-tree/index.vue +224 -0
- package/src/admin/components/edit-table/index.vue +171 -0
- package/src/admin/components/employee-tree/index.vue +247 -0
- package/src/admin/components/employees-tree/index.vue +80 -0
- package/src/admin/components/entp-tree/index.vue +266 -0
- package/src/admin/components/file/index.vue +310 -0
- package/src/admin/components/form/index.vue +141 -0
- package/src/admin/components/icon/index.vue +77 -0
- package/src/admin/components/icon-buttons/index.vue +52 -0
- package/src/admin/components/icon-select/index.vue +140 -0
- package/src/admin/components/image/index.vue +207 -0
- package/src/admin/components/index.js +16 -0
- package/src/admin/components/input/index.vue +41 -0
- package/src/admin/components/local-img/index.vue +49 -0
- package/src/admin/components/multiple-input/index.vue +64 -0
- package/src/admin/components/multiple-number/index.vue +70 -0
- package/src/admin/components/number/index.vue +134 -0
- package/src/admin/components/organization/index.vue +303 -0
- package/src/admin/components/organization-tree/index.vue +269 -0
- package/src/admin/components/page/index.vue +149 -0
- package/src/admin/components/password/index.vue +21 -0
- package/src/admin/components/radio/index.vue +46 -0
- package/src/admin/components/region-tree/index.vue +269 -0
- package/src/admin/components/remote-select/index.vue +315 -0
- package/src/admin/components/rich-editor/index.vue +152 -0
- package/src/admin/components/role-select/index.vue +58 -0
- package/src/admin/components/script-input/index.vue +97 -0
- package/src/admin/components/select/index.vue +105 -0
- package/src/admin/components/selects/index.vue +100 -0
- package/src/admin/components/style-list/index.vue +500 -0
- package/src/admin/components/switch/index.vue +54 -0
- package/src/admin/components/table/index.vue +920 -0
- package/src/admin/components/textarea/index.vue +28 -0
- package/src/admin/components/tree/index.vue +247 -0
- package/src/admin/components/tree-selects/index.vue +66 -0
- package/src/admin/components/unit-tree/index.vue +269 -0
- package/src/admin/console/index.vue +122 -0
- package/src/admin/layout/console/index.vue +15 -0
- package/src/admin/layout/fullscreen/index.vue +32 -0
- package/src/admin/layout/home/index.vue +11 -0
- package/src/admin/layout/index.vue +139 -0
- package/src/admin/layout/menu/index.vue +102 -0
- package/src/admin/layout/personnel/index.vue +166 -0
- package/src/admin/layout/search/index.vue +78 -0
- package/src/admin/main.js +30 -0
- package/src/admin/pinia/router.js +179 -0
- package/src/admin/router.js +91 -0
- package/src/admin/visual/comp-data.vue +1107 -0
- package/src/admin/visual/comp-event.vue +1677 -0
- package/src/admin/visual/components/app/list/goods/double.vue +184 -0
- package/src/admin/visual/components/app/list/nav/image.vue +114 -0
- package/src/admin/visual/components/app/list/nav/text.vue +130 -0
- package/src/admin/visual/components/button/index.vue +58 -0
- package/src/admin/visual/components/container/index.vue +37 -0
- package/src/admin/visual/components/custom-list/index.vue +127 -0
- package/src/admin/visual/components/data/index.vue +46 -0
- package/src/admin/visual/components/data-table/index.vue +203 -0
- package/src/admin/visual/components/echarts/annular.vue +140 -0
- package/src/admin/visual/components/echarts/bar.vue +115 -0
- package/src/admin/visual/components/echarts/funnel.vue +115 -0
- package/src/admin/visual/components/echarts/gauge.vue +158 -0
- package/src/admin/visual/components/echarts/line.vue +110 -0
- package/src/admin/visual/components/echarts/map.vue +150 -0
- package/src/admin/visual/components/echarts/pie.vue +114 -0
- package/src/admin/visual/components/echarts/radar.vue +145 -0
- package/src/admin/visual/components/echarts/scatter.vue +106 -0
- package/src/admin/visual/components/edit-table/index.vue +71 -0
- package/src/admin/visual/components/form/affix.vue +107 -0
- package/src/admin/visual/components/form/area.vue +76 -0
- package/src/admin/visual/components/form/buttons.vue +90 -0
- package/src/admin/visual/components/form/checkbox.vue +85 -0
- package/src/admin/visual/components/form/date-range.vue +61 -0
- package/src/admin/visual/components/form/date.vue +59 -0
- package/src/admin/visual/components/form/datetime.vue +59 -0
- package/src/admin/visual/components/form/employee-tree.vue +88 -0
- package/src/admin/visual/components/form/employees-tree.vue +6 -0
- package/src/admin/visual/components/form/image.vue +103 -0
- package/src/admin/visual/components/form/index.vue +59 -0
- package/src/admin/visual/components/form/input.vue +84 -0
- package/src/admin/visual/components/form/item.vue +68 -0
- package/src/admin/visual/components/form/number.vue +130 -0
- package/src/admin/visual/components/form/organization-tree.vue +88 -0
- package/src/admin/visual/components/form/password.vue +74 -0
- package/src/admin/visual/components/form/radio.vue +87 -0
- package/src/admin/visual/components/form/rate.vue +66 -0
- package/src/admin/visual/components/form/region-tree.vue +88 -0
- package/src/admin/visual/components/form/rich-editor.vue +94 -0
- package/src/admin/visual/components/form/select.vue +156 -0
- package/src/admin/visual/components/form/switch.vue +85 -0
- package/src/admin/visual/components/form/textarea.vue +62 -0
- package/src/admin/visual/components/form/unit-tree.vue +88 -0
- package/src/admin/visual/components/icon/index.vue +65 -0
- package/src/admin/visual/components/image/index.vue +170 -0
- package/src/admin/visual/components/index.js +44 -0
- package/src/admin/visual/components/list/block.vue +160 -0
- package/src/admin/visual/components/list/button.vue +80 -0
- package/src/admin/visual/components/list/card.vue +101 -0
- package/src/admin/visual/components/list/custom.vue +150 -0
- package/src/admin/visual/components/list/image.vue +116 -0
- package/src/admin/visual/components/list/news.vue +138 -0
- package/src/admin/visual/components/page/index.vue +88 -0
- package/src/admin/visual/components/page-comp/index.vue +110 -0
- package/src/admin/visual/components/portal-menu/index.vue +92 -0
- package/src/admin/visual/components/qrcode/index.vue +77 -0
- package/src/admin/visual/components/router-view/index.vue +12 -0
- package/src/admin/visual/components/row/index.vue +139 -0
- package/src/admin/visual/components/search/index.vue +40 -0
- package/src/admin/visual/components/tabs/index.vue +125 -0
- package/src/admin/visual/components/text/index.vue +64 -0
- package/src/admin/visual/components/video/index.vue +41 -0
- package/src/admin/visual/draggable.vue +49 -0
- package/src/admin/visual/editor.vue +602 -0
- package/src/admin/visual/js/app-form.config.js +1301 -0
- package/src/admin/visual/js/app.config.js +86 -0
- package/src/admin/visual/js/common.config.js +687 -0
- package/src/admin/visual/js/component.config.js +741 -0
- package/src/admin/visual/js/echarts.config.js +2440 -0
- package/src/admin/visual/js/form.config.js +2837 -0
- package/src/admin/visual/js/list.config.js +578 -0
- package/src/admin/visual/js/menu.config.js +62 -0
- package/src/admin/visual/js/visual-comp.js +48 -0
- package/src/admin/visual/tool.vue +1223 -0
- package/src/assets/images/background.jpg +0 -0
- package/src/assets/images/login-bg.jpg +0 -0
- package/src/assets/images/mobile-bg.png +0 -0
- package/src/assets/images/no-data.png +0 -0
- package/src/assets/style/base.css +48 -0
- package/src/assets/style/business.css +5 -0
- package/src/assets/style/code.css +36 -0
- package/src/assets/style/codeless.css +195 -0
- package/src/assets/style/flow.css +12 -0
- package/src/assets/style/global/blue.css +83 -0
- package/src/assets/style/global/default.css +71 -0
- package/src/assets/style/global/green.css +83 -0
- package/src/assets/style/global/purple.css +83 -0
- package/src/assets/style/global/red.css +83 -0
- package/src/assets/style/main.css +608 -0
- package/src/assets/style/menu/black.css +9 -0
- package/src/assets/style/menu/default.css +9 -0
- package/src/assets/style/menu/grey.css +9 -0
- package/src/assets/style/visual.css +204 -0
- package/src/auto-imports.d.ts +307 -0
- package/src/business/App.vue +131 -0
- package/src/business/components/dict-select/index.vue +88 -0
- package/src/business/components/index.js +13 -0
- package/src/business/components/input/index.vue +38 -0
- package/src/business/components/table/index.vue +928 -0
- package/src/business/home/index.vue +45 -0
- package/src/business/iframe/index.vue +63 -0
- package/src/business/layout/aside/history/history.vue +518 -0
- package/src/business/layout/aside/index.vue +116 -0
- package/src/business/layout/aside/menu/index.vue +47 -0
- package/src/business/layout/aside/menu/menuItem.vue +83 -0
- package/src/business/layout/aside/menu/submenu.vue +88 -0
- package/src/business/layout/fullscreen/index.vue +41 -0
- package/src/business/layout/header/index.vue +81 -0
- package/src/business/layout/header/menu/index.vue +47 -0
- package/src/business/layout/header/menu/menuItem.vue +43 -0
- package/src/business/layout/header/menu/submenu.vue +34 -0
- package/src/business/layout/home/index.vue +20 -0
- package/src/business/layout/index.vue +330 -0
- package/src/business/layout/message/index.vue +250 -0
- package/src/business/layout/personnel/index.vue +549 -0
- package/src/business/layout/search/index.vue +75 -0
- package/src/business/layout/subsystem/index.vue +124 -0
- package/src/business/main.js +36 -0
- package/src/business/pinia/menuBadge.js +58 -0
- package/src/business/pinia/router.js +190 -0
- package/src/business/router.js +98 -0
- package/src/choose/App.vue +203 -0
- package/src/choose/main.js +22 -0
- package/src/choose/router.js +33 -0
- package/src/codeless/components/affix/index.vue +393 -0
- package/src/codeless/components/affix-view/index.vue +244 -0
- package/src/codeless/components/buttons/index.vue +59 -0
- package/src/codeless/components/checkbox/index.vue +107 -0
- package/src/codeless/components/date/index.vue +105 -0
- package/src/codeless/components/datetime/index.vue +65 -0
- package/src/codeless/components/dialog-select/index.vue +170 -0
- package/src/codeless/components/dict-buttons/index.vue +97 -0
- package/src/codeless/components/dict-radio/index.vue +94 -0
- package/src/codeless/components/dict-select/index.vue +181 -0
- package/src/codeless/components/dict-selects/index.vue +145 -0
- package/src/codeless/components/dict-switch/index.vue +94 -0
- package/src/codeless/components/dict-tree/index.vue +116 -0
- package/src/codeless/components/edit-table/index.vue +160 -0
- package/src/codeless/components/employee-tree/index.vue +254 -0
- package/src/codeless/components/employees-tree/index.vue +87 -0
- package/src/codeless/components/entp-tree/index.vue +261 -0
- package/src/codeless/components/entps-tree/index.vue +93 -0
- package/src/codeless/components/icon/index.vue +65 -0
- package/src/codeless/components/image/index.vue +298 -0
- package/src/codeless/components/index.js +16 -0
- package/src/codeless/components/input/index.vue +63 -0
- package/src/codeless/components/number/index.vue +150 -0
- package/src/codeless/components/organization-tree/index.vue +262 -0
- package/src/codeless/components/organizations-tree/index.vue +79 -0
- package/src/codeless/components/password/index.vue +42 -0
- package/src/codeless/components/radio/index.vue +57 -0
- package/src/codeless/components/region-tree/index.vue +262 -0
- package/src/codeless/components/remote-distinct/index.vue +354 -0
- package/src/codeless/components/remote-select/index.vue +363 -0
- package/src/codeless/components/rich-editor/index.vue +159 -0
- package/src/codeless/components/roles/index.vue +68 -0
- package/src/codeless/components/select/index.vue +95 -0
- package/src/codeless/components/selects/index.vue +116 -0
- package/src/codeless/components/show-dict/index.vue +52 -0
- package/src/codeless/components/show-employees/index.vue +29 -0
- package/src/codeless/components/show-organizations/index.vue +29 -0
- package/src/codeless/components/show-roles/index.vue +45 -0
- package/src/codeless/components/signature-pad/index.vue +224 -0
- package/src/codeless/components/switch/index.vue +56 -0
- package/src/codeless/components/textarea/index.vue +37 -0
- package/src/codeless/components/tree/index.vue +244 -0
- package/src/codeless/components/unit-tree/index.vue +262 -0
- package/src/codeless/components/units-tree/index.vue +93 -0
- package/src/codeless/components/video/index.vue +255 -0
- package/src/codeless/components/video-view/index.vue +130 -0
- package/src/codeless/js/codeless.js +47 -0
- package/src/codeless/view/form-auto.vue +192 -0
- package/src/codeless/view/form-custom.vue +10 -0
- package/src/codeless/view/form-model.vue +421 -0
- package/src/codeless/view/form-query.vue +171 -0
- package/src/codeless/view/form.vue +575 -0
- package/src/codeless/view/page-comp.vue +1318 -0
- package/src/codeless/view/page.vue +280 -0
- package/src/codeless/view/table-edit-item.vue +184 -0
- package/src/codeless/view/table-edit.vue +490 -0
- package/src/codeless/view/table.vue +1606 -0
- package/src/codeless/view/tree.vue +431 -0
- package/src/configs/subApp.ts +9 -0
- package/src/directives/collapse/index.js +123 -0
- package/src/directives/drag/index.js +43 -0
- package/src/directives/index.js +9 -0
- package/src/directives/resize/index.js +23 -0
- package/src/entrance/libProperties.ts +24 -0
- package/src/entrance/libTypes.ts +26 -0
- package/src/error/404.vue +23 -0
- package/src/flow/chart.vue +130 -0
- package/src/flow/deal.vue +776 -0
- package/src/flow/signature.vue +216 -0
- package/src/flow/start.vue +18 -0
- package/src/http/api.js +192 -0
- package/src/http/request.js +81 -0
- package/src/login/App.vue +421 -0
- package/src/login/main.js +30 -0
- package/src/login/router.js +33 -0
- package/src/main.ts +20 -0
- package/src/mobile/App.vue +51 -0
- package/src/mobile/home/index.vue +34 -0
- package/src/mobile/main.js +26 -0
- package/src/mobile/router.js +101 -0
- package/src/mobile/view/page.vue +99 -0
- package/src/pinia/index.js +5 -0
- package/src/pinia/modules/dataField.js +77 -0
- package/src/pinia/modules/dataForm.js +46 -0
- package/src/pinia/modules/dataTable.js +46 -0
- package/src/pinia/modules/dictionary.js +66 -0
- package/src/pinia/modules/employee.js +46 -0
- package/src/pinia/modules/icon.js +46 -0
- package/src/pinia/modules/keepAlive.js +35 -0
- package/src/pinia/modules/organization.js +189 -0
- package/src/pinia/modules/page.js +46 -0
- package/src/pinia/modules/pageButton.js +44 -0
- package/src/pinia/modules/pageComp.js +46 -0
- package/src/pinia/modules/role.js +46 -0
- package/src/pinia/modules/setting.js +56 -0
- package/src/pinia/modules/subsystem.js +64 -0
- package/src/pinia/modules/user.js +177 -0
- package/src/plugins/index.ts +24 -0
- package/src/portal/App.vue +27 -0
- package/src/portal/home/index.vue +52 -0
- package/src/portal/main.js +31 -0
- package/src/portal/page/index.vue +39 -0
- package/src/portal/pinia/router.js +176 -0
- package/src/portal/router.js +86 -0
- package/src/router/constantRoutes.ts +13 -0
- package/src/router/loadComponent.ts +29 -0
- package/src/router/readme.txt +21 -0
- package/src/sso/sso.js +19 -0
- package/src/sso/sso.vue +138 -0
- package/src/types/axios.d.ts +13 -0
- package/src/types/func.ts +14 -0
- package/src/types/global.d.ts +108 -0
- package/src/types/layout.d.ts +59 -0
- package/src/types/mitt.d.ts +40 -0
- package/src/types/pinia.d.ts +93 -0
- package/src/types/views.d.ts +27 -0
- package/src/types/window.d.ts +8 -0
- package/src/utils/aes.js +75 -0
- package/src/utils/browser.js +13 -0
- package/src/utils/bus.js +4 -0
- package/src/utils/cache.js +6 -0
- package/src/utils/codeless.js +92 -0
- package/src/utils/color.js +274 -0
- package/src/utils/date.js +180 -0
- package/src/utils/loading.js +22 -0
- package/src/utils/page.js +36 -0
- package/src/utils/progress.js +19 -0
- package/src/utils/system.js +92 -0
- package/src/utils/theme.js +79 -0
- package/src/utils/tool.js +431 -0
- package/src/utils/websocket.js +124 -0
- package/src/views/codeless/appVersion.vue +593 -0
- package/src/views/codeless/dataFormEdit.vue +1463 -0
- package/src/views/codeless/dataModel.vue +2584 -0
- package/src/views/codeless/dataModelPage.vue +535 -0
- package/src/views/codeless/dataTableEdit.vue +1678 -0
- package/src/views/codeless/datasource.vue +308 -0
- package/src/views/codeless/interface.vue +833 -0
- package/src/views/codeless/interfaceToken.vue +255 -0
- package/src/views/codeless/page.vue +752 -0
- package/src/views/codeless/pageButton.vue +255 -0
- package/src/views/codeless/pageCompEdit.vue +2330 -0
- package/src/views/codeless/pageEdit.vue +661 -0
- package/src/views/codeless/relationPage.vue +349 -0
- package/src/views/codeless/scriptGroovy.vue +736 -0
- package/src/views/codeless/scriptGroovyEdit.vue +248 -0
- package/src/views/codeless/scriptGroovyExecute.vue +212 -0
- package/src/views/codeless/scriptGroovySimple.vue +1057 -0
- package/src/views/codeless/scriptTool.vue +563 -0
- package/src/views/codeless/subsystem.vue +309 -0
- package/src/views/codeless/template.vue +739 -0
- package/src/views/codeless/variable.vue +727 -0
- package/src/views/codeless/view.vue +738 -0
- package/src/views/codeless/viewEdit.vue +244 -0
- package/src/views/codeless/viewSimple.vue +1034 -0
- package/src/views/collect/task.vue +898 -0
- package/src/views/collect/taskLog.vue +238 -0
- package/src/views/dictionary/dictionary.vue +866 -0
- package/src/views/employee/employee.vue +355 -0
- package/src/views/flow/flow.vue +369 -0
- package/src/views/flow/flowInst.vue +73 -0
- package/src/views/flow/flowLineBranch.vue +406 -0
- package/src/views/flow/flowNodeMan.vue +426 -0
- package/src/views/flow/flowOpinion.vue +188 -0
- package/src/views/icon/icon.vue +242 -0
- package/src/views/log/loginLog.vue +41 -0
- package/src/views/log/operatorLog.vue +176 -0
- package/src/views/menu/menu.vue +883 -0
- package/src/views/menu/menuList.vue +858 -0
- package/src/views/message/message.vue +299 -0
- package/src/views/mobile/editor.vue +1100 -0
- package/src/views/mobile/mobile.vue +568 -0
- package/src/views/mobile/tool.vue +1258 -0
- package/src/views/monitor/database.vue +11 -0
- package/src/views/monitor/details-diskspace.vue +56 -0
- package/src/views/monitor/details-gc.vue +93 -0
- package/src/views/monitor/details-memory.vue +143 -0
- package/src/views/monitor/details-process.vue +132 -0
- package/src/views/monitor/details-threads.vue +106 -0
- package/src/views/monitor/line-chart.vue +93 -0
- package/src/views/monitor/mem-chart.vue +22 -0
- package/src/views/monitor/panel.vue +90 -0
- package/src/views/monitor/performance.vue +36 -0
- package/src/views/monitor/threads-chart.vue +16 -0
- package/src/views/operation/backup.vue +593 -0
- package/src/views/operation/center.vue +420 -0
- package/src/views/operation/restore.vue +94 -0
- package/src/views/organization/organization.vue +366 -0
- package/src/views/role/role.vue +502 -0
- package/src/views/schedule/schedule.vue +338 -0
- package/src/views/schedule/scheduleLog.vue +40 -0
- package/src/views/sequence/sequence.vue +283 -0
- package/src/views/setting/setting.vue +371 -0
- package/src/visual/components/app/list/goods/double.vue +241 -0
- package/src/visual/components/app/list/nav/image.vue +135 -0
- package/src/visual/components/app/list/nav/text.vue +159 -0
- package/src/visual/components/button/index.vue +95 -0
- package/src/visual/components/container/index.vue +128 -0
- package/src/visual/components/data/index.vue +60 -0
- package/src/visual/components/data-table/index.vue +260 -0
- package/src/visual/components/echarts/annular.vue +173 -0
- package/src/visual/components/echarts/bar.vue +172 -0
- package/src/visual/components/echarts/funnel.vue +167 -0
- package/src/visual/components/echarts/gauge.vue +186 -0
- package/src/visual/components/echarts/line.vue +172 -0
- package/src/visual/components/echarts/map.vue +206 -0
- package/src/visual/components/echarts/pie.vue +158 -0
- package/src/visual/components/echarts/radar.vue +196 -0
- package/src/visual/components/echarts/scatter.vue +153 -0
- package/src/visual/components/edit-table/index.vue +71 -0
- package/src/visual/components/form/affix.vue +440 -0
- package/src/visual/components/form/area.vue +134 -0
- package/src/visual/components/form/buttons.vue +120 -0
- package/src/visual/components/form/checkbox.vue +126 -0
- package/src/visual/components/form/date-range.vue +97 -0
- package/src/visual/components/form/date.vue +88 -0
- package/src/visual/components/form/datetime.vue +87 -0
- package/src/visual/components/form/employee-tree.vue +300 -0
- package/src/visual/components/form/employees-tree.vue +91 -0
- package/src/visual/components/form/image.vue +440 -0
- package/src/visual/components/form/index.vue +85 -0
- package/src/visual/components/form/input.vue +116 -0
- package/src/visual/components/form/item.vue +68 -0
- package/src/visual/components/form/number.vue +157 -0
- package/src/visual/components/form/organization-tree.vue +300 -0
- package/src/visual/components/form/password.vue +103 -0
- package/src/visual/components/form/radio.vue +122 -0
- package/src/visual/components/form/rate.vue +93 -0
- package/src/visual/components/form/region-tree.vue +300 -0
- package/src/visual/components/form/rich-editor.vue +114 -0
- package/src/visual/components/form/select.vue +172 -0
- package/src/visual/components/form/switch.vue +105 -0
- package/src/visual/components/form/textarea.vue +91 -0
- package/src/visual/components/form/unit-tree.vue +300 -0
- package/src/visual/components/icon/index.vue +73 -0
- package/src/visual/components/image/index.vue +445 -0
- package/src/visual/components/index.js +26 -0
- package/src/visual/components/list/block.vue +234 -0
- package/src/visual/components/list/button.vue +123 -0
- package/src/visual/components/list/card.vue +129 -0
- package/src/visual/components/list/custom.vue +214 -0
- package/src/visual/components/list/image.vue +182 -0
- package/src/visual/components/list/news.vue +174 -0
- package/src/visual/components/page-comp/index.vue +67 -0
- package/src/visual/components/portal-menu/index.vue +191 -0
- package/src/visual/components/qrcode/index.vue +98 -0
- package/src/visual/components/router-view/index.vue +51 -0
- package/src/visual/components/row/index.vue +175 -0
- package/src/visual/components/search/index.vue +96 -0
- package/src/visual/components/tabs/index.vue +103 -0
- package/src/visual/components/text/index.vue +111 -0
- package/src/visual/components/video/index.vue +93 -0
- package/src/visual/js/echarts.js +220 -0
- package/src/visual/js/event.js +476 -0
- package/src/visual/js/visual-comp.js +48 -0
- package/src/visual/js/visual.js +508 -0
- package/src/visual/view/page.vue +357 -0
|
@@ -0,0 +1,1100 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="editor" v-loading="initializing">
|
|
3
|
+
<div class="editor-page" v-if="currPage">
|
|
4
|
+
<el-collapse v-model="collapseName" accordion>
|
|
5
|
+
<el-collapse-item name="page">
|
|
6
|
+
<template #title>
|
|
7
|
+
<div class="page-title">
|
|
8
|
+
<div class="page-title-name">页面配置</div>
|
|
9
|
+
<el-dropdown trigger="hover" placement="bottom-start">
|
|
10
|
+
<el-button @click.stop text class="page-title-icon">
|
|
11
|
+
<ac-icon iconId="018dc9c3efed46e8b927"></ac-icon>
|
|
12
|
+
</el-button>
|
|
13
|
+
<template #dropdown>
|
|
14
|
+
<el-dropdown-menu>
|
|
15
|
+
<el-dropdown-item @click="addPage({type: '2'})">
|
|
16
|
+
<ac-icon iconId="018dc9c3efed46e8b927" color="#21D914FF" style="margin-right: 5px" />新增页面
|
|
17
|
+
</el-dropdown-item>
|
|
18
|
+
<el-dropdown-item @click="addPage({type: '1'})">
|
|
19
|
+
<ac-icon iconId="018dc9c3efedbb59d0b3" color="orange" style="margin-right: 5px" />新增目录
|
|
20
|
+
</el-dropdown-item>
|
|
21
|
+
</el-dropdown-menu>
|
|
22
|
+
</template>
|
|
23
|
+
</el-dropdown>
|
|
24
|
+
</div>
|
|
25
|
+
</template>
|
|
26
|
+
<div class="filter-box">
|
|
27
|
+
<el-input placeholder="搜索" v-model="filterText" clearable />
|
|
28
|
+
</div>
|
|
29
|
+
<el-tree
|
|
30
|
+
ref="tree"
|
|
31
|
+
class="tree"
|
|
32
|
+
node-key="id"
|
|
33
|
+
v-loading="treeLoading"
|
|
34
|
+
element-loading-text="数据加载中..."
|
|
35
|
+
draggable
|
|
36
|
+
default-expand-all
|
|
37
|
+
:data="treeData"
|
|
38
|
+
:props="treeProps"
|
|
39
|
+
:highlight-current="true"
|
|
40
|
+
:filter-node-method="filterNode"
|
|
41
|
+
:show-checkbox="treeCheck"
|
|
42
|
+
@node-click="pageNodeClick"
|
|
43
|
+
@node-drop="pageNodeDrop"
|
|
44
|
+
>
|
|
45
|
+
<template v-slot="{ node, data }">
|
|
46
|
+
<div class="node-item">
|
|
47
|
+
<ac-icon v-if="data.type === '1' && node.expanded" color="orange" iconId="018dc9c3efedbb59d0b3" />
|
|
48
|
+
<ac-icon v-else-if="data.type === '1'" color="orange" iconId="018dc9c3efed6d208a59" />
|
|
49
|
+
<ac-icon
|
|
50
|
+
v-else-if="data.type === '2' && mobile.homeId === data.id"
|
|
51
|
+
title="首页"
|
|
52
|
+
color="#117fe8"
|
|
53
|
+
iconId="018ece4f71a419d2a433"
|
|
54
|
+
/>
|
|
55
|
+
<ac-icon
|
|
56
|
+
v-else-if="data.type === '2' && mobile.loginId === data.id"
|
|
57
|
+
title="登录页"
|
|
58
|
+
color="#117fe8"
|
|
59
|
+
iconId="018dca444e0754edef13"
|
|
60
|
+
/>
|
|
61
|
+
<ac-icon
|
|
62
|
+
v-else-if="data.type === '2'"
|
|
63
|
+
color="#117fe8"
|
|
64
|
+
iconId="018dc9c3efb74ac607cb"
|
|
65
|
+
/>
|
|
66
|
+
<div class="node-label" :title="data.text + '(' + data.data.title + ')'">
|
|
67
|
+
<div class="item-name">
|
|
68
|
+
<span>{{data.text + '(' + data.data.title + ')'}}</span>
|
|
69
|
+
</div>
|
|
70
|
+
</div>
|
|
71
|
+
<div class="node-button">
|
|
72
|
+
<el-dropdown trigger="hover" placement="bottom-start">
|
|
73
|
+
<span class="node-button-item">
|
|
74
|
+
<ac-icon iconId="018dca6283a1e534a046" @click.stop />
|
|
75
|
+
</span>
|
|
76
|
+
<template #dropdown>
|
|
77
|
+
<el-dropdown-menu v-if="data.type === '1'">
|
|
78
|
+
<el-dropdown-item @click="addPage({id: data.data.id, type: '2'})">
|
|
79
|
+
<ac-icon iconId="018dc9c3efed46e8b927" color="#21D914FF" style="margin-right: 5px" />新增页面
|
|
80
|
+
</el-dropdown-item>
|
|
81
|
+
<el-dropdown-item @click="addPage({id: data.data.id, type: '1'})">
|
|
82
|
+
<ac-icon iconId="018dc9c3efedbb59d0b3" color="orange" style="margin-right: 5px" />新增目录
|
|
83
|
+
</el-dropdown-item>
|
|
84
|
+
<el-dropdown-item @click="editPage(data.data)">
|
|
85
|
+
<ac-icon iconId="018dca6db20c6a3aaf68" color="#0085f6" style="margin-right: 5px" />编辑目录
|
|
86
|
+
</el-dropdown-item>
|
|
87
|
+
<el-dropdown-item @click="deletePage(data.data)">
|
|
88
|
+
<ac-icon iconId="018dc9c3efd3a0502886" color="#F56C6C" style="margin-right: 5px" />删除目录
|
|
89
|
+
</el-dropdown-item>
|
|
90
|
+
</el-dropdown-menu>
|
|
91
|
+
<el-dropdown-menu v-else>
|
|
92
|
+
<el-dropdown-item @click="addPage(data.data)">
|
|
93
|
+
<ac-icon iconId="018dc9c3efed46e8b927" color="#21D914FF" style="margin-right: 5px" />新增页面
|
|
94
|
+
</el-dropdown-item>
|
|
95
|
+
<el-dropdown-item @click="copyPage(data.data)">
|
|
96
|
+
<ac-icon iconId="018dc9c3efb82f31c161" color="#21D914FF" style="margin-right: 5px" />复制页面
|
|
97
|
+
</el-dropdown-item>
|
|
98
|
+
<el-dropdown-item @click="editPage(data.data)">
|
|
99
|
+
<ac-icon iconId="018dca6db20c6a3aaf68" color="#0085f6" style="margin-right: 5px" />编辑页面
|
|
100
|
+
</el-dropdown-item>
|
|
101
|
+
<el-dropdown-item @click="homePage(data.data)">
|
|
102
|
+
<ac-icon iconId="018ece4f71a419d2a433" color="orange" style="margin-right: 5px" />设为首页
|
|
103
|
+
</el-dropdown-item>
|
|
104
|
+
<el-dropdown-item @click="loginPage(data.data)">
|
|
105
|
+
<ac-icon iconId="018dca444e0754edef13" color="orange" style="margin-right: 5px" />设为登录页
|
|
106
|
+
</el-dropdown-item>
|
|
107
|
+
<el-dropdown-item @click="deletePage(data.data)">
|
|
108
|
+
<ac-icon iconId="018dc9c3efd3a0502886" color="#F56C6C" style="margin-right: 5px" />删除页面
|
|
109
|
+
</el-dropdown-item>
|
|
110
|
+
</el-dropdown-menu>
|
|
111
|
+
</template>
|
|
112
|
+
</el-dropdown>
|
|
113
|
+
</div>
|
|
114
|
+
</div>
|
|
115
|
+
</template>
|
|
116
|
+
</el-tree>
|
|
117
|
+
</el-collapse-item>
|
|
118
|
+
</el-collapse>
|
|
119
|
+
</div>
|
|
120
|
+
<div class="editor-container" v-if="activatedNode">
|
|
121
|
+
<div class="editor-main" :style="{backgroundImage: 'url(' + mobileBg + ')'}">
|
|
122
|
+
<div class="mobile-title">{{ currPage ? (currPage.title || mobile.title) : mobile.title}}</div>
|
|
123
|
+
<draggable
|
|
124
|
+
v-if="!loading"
|
|
125
|
+
v-model="rootNode"
|
|
126
|
+
:id="rootNode.id"
|
|
127
|
+
class="draggable-page"
|
|
128
|
+
:style="visual.parseStyle(rootNode.currStyle, {overflow: 'auto'})"
|
|
129
|
+
@click.stop="activeNode(rootNode)"
|
|
130
|
+
@mouseoverNode="mouseoverNode"
|
|
131
|
+
@activeNode="activeNode"
|
|
132
|
+
@deleteNode="deleteNode"
|
|
133
|
+
/>
|
|
134
|
+
<div
|
|
135
|
+
v-if="tipsNodeTree.length > 0"
|
|
136
|
+
class="active-box"
|
|
137
|
+
:style="tipsBoxStyle"
|
|
138
|
+
>
|
|
139
|
+
<div class="tips-box">
|
|
140
|
+
<div class="tips-operate">
|
|
141
|
+
<div class="tips-name" @click="showTipsInput">
|
|
142
|
+
<span
|
|
143
|
+
v-if="!tipsBoxEdit"
|
|
144
|
+
class="tips-name-txt"
|
|
145
|
+
>{{activatedNode.name}}</span>
|
|
146
|
+
<el-input
|
|
147
|
+
v-else
|
|
148
|
+
ref="tipsBoxInput"
|
|
149
|
+
v-model="activatedNode.name"
|
|
150
|
+
size="small"
|
|
151
|
+
@keyup.enter="tipsBoxEdit = false"
|
|
152
|
+
@blur="tipsBoxEdit = false"
|
|
153
|
+
/>
|
|
154
|
+
</div>
|
|
155
|
+
<div class="tips-copy" title="复制" @click="copyNode(activatedNode)">
|
|
156
|
+
<ac-icon iconId="018dc9c3efb82f31c161" />
|
|
157
|
+
</div>
|
|
158
|
+
<div class="tips-tpl" title="保存到模板" @click="saveTplNode(activatedNode)">
|
|
159
|
+
<ac-icon iconId="018ece4f68eaa77e4813" />
|
|
160
|
+
</div>
|
|
161
|
+
<div class="tips-delete" title="删除" @click="deleteNode(activatedNode)">
|
|
162
|
+
<ac-icon iconId="018dc9c3efd3a0502886" />
|
|
163
|
+
</div>
|
|
164
|
+
</div>
|
|
165
|
+
<div class="tips-node">
|
|
166
|
+
<div
|
|
167
|
+
v-for="(item, index) in tipsNodeTree"
|
|
168
|
+
:key="index"
|
|
169
|
+
@click="activeNode(item)"
|
|
170
|
+
class="tips-node-item"
|
|
171
|
+
>{{item.name}}</div>
|
|
172
|
+
</div>
|
|
173
|
+
</div>
|
|
174
|
+
</div>
|
|
175
|
+
</div>
|
|
176
|
+
</div>
|
|
177
|
+
<div class="editor-tool" v-if="currPage">
|
|
178
|
+
<ac-visual-tool
|
|
179
|
+
ref="visualTool"
|
|
180
|
+
type="移动端"
|
|
181
|
+
:mobileId="mobileId"
|
|
182
|
+
@preview="preview"
|
|
183
|
+
@save="save"
|
|
184
|
+
@quit="quit"
|
|
185
|
+
@change="changeConfig"
|
|
186
|
+
@activeNode="activeNode"
|
|
187
|
+
/>
|
|
188
|
+
</div>
|
|
189
|
+
|
|
190
|
+
<div class="mouseover-box" :style="moveBoxStyle">
|
|
191
|
+
<div class="tips-box">{{moveBoxName}}</div>
|
|
192
|
+
</div>
|
|
193
|
+
</div>
|
|
194
|
+
|
|
195
|
+
<!--页面预览-->
|
|
196
|
+
<el-dialog
|
|
197
|
+
v-model="previewVisible"
|
|
198
|
+
title="预览"
|
|
199
|
+
:close-on-click-modal="false"
|
|
200
|
+
class="no-padding"
|
|
201
|
+
append-to-body
|
|
202
|
+
destroy-on-close
|
|
203
|
+
fullscreen
|
|
204
|
+
draggable
|
|
205
|
+
>
|
|
206
|
+
<div style="height: 100%;display: flex;flex-direction: column">
|
|
207
|
+
</div>
|
|
208
|
+
</el-dialog>
|
|
209
|
+
|
|
210
|
+
<el-dialog
|
|
211
|
+
v-model="pageVisible"
|
|
212
|
+
:title="pageTitle"
|
|
213
|
+
width="500px"
|
|
214
|
+
:close-on-click-modal="false"
|
|
215
|
+
destroy-on-close
|
|
216
|
+
append-to-body
|
|
217
|
+
draggable
|
|
218
|
+
>
|
|
219
|
+
<el-form
|
|
220
|
+
ref="pageForm"
|
|
221
|
+
label-width="100px"
|
|
222
|
+
label-position="right"
|
|
223
|
+
:model="pageData"
|
|
224
|
+
:rules="pageRules"
|
|
225
|
+
>
|
|
226
|
+
<el-row>
|
|
227
|
+
<el-col :span="24">
|
|
228
|
+
<el-form-item label="名称" prop="name">
|
|
229
|
+
<el-input v-model="pageData.name" auto-complete="off"></el-input>
|
|
230
|
+
</el-form-item>
|
|
231
|
+
</el-col>
|
|
232
|
+
</el-row>
|
|
233
|
+
<el-row v-if="pageData.type === '2'">
|
|
234
|
+
<el-col :span="24">
|
|
235
|
+
<el-form-item label="标题" prop="title">
|
|
236
|
+
<el-input v-model="pageData.title" auto-complete="off"></el-input>
|
|
237
|
+
</el-form-item>
|
|
238
|
+
</el-col>
|
|
239
|
+
</el-row>
|
|
240
|
+
</el-form>
|
|
241
|
+
<template #footer>
|
|
242
|
+
<el-button
|
|
243
|
+
size="default"
|
|
244
|
+
type="info"
|
|
245
|
+
@click="pageVisible=false"
|
|
246
|
+
>取消</el-button>
|
|
247
|
+
<el-button
|
|
248
|
+
type="primary"
|
|
249
|
+
size="default"
|
|
250
|
+
:loading="pageLoading"
|
|
251
|
+
@click="submitPageForm"
|
|
252
|
+
>提交</el-button>
|
|
253
|
+
</template>
|
|
254
|
+
</el-dialog>
|
|
255
|
+
</template>
|
|
256
|
+
|
|
257
|
+
<script setup>
|
|
258
|
+
import { ref, onMounted, nextTick, provide, watch } from 'vue';
|
|
259
|
+
import { ElMessage, ElMessageBox } from 'element-plus';
|
|
260
|
+
import AcVisualTool from './tool.vue';
|
|
261
|
+
import visual from '@/visual/js/visual';
|
|
262
|
+
import tool from '@/utils/tool';
|
|
263
|
+
import Draggable from '@/admin/visual/draggable.vue';
|
|
264
|
+
import api from '@/http/api';
|
|
265
|
+
import mobileBg from '@/assets/images/mobile-bg.png';
|
|
266
|
+
import { useAdminVisualCompStore } from '@/admin/visual/js/visual-comp';
|
|
267
|
+
import { components } from '@/admin/visual/js/component.config';
|
|
268
|
+
|
|
269
|
+
const emit = defineEmits(['save', 'quit']);
|
|
270
|
+
const props = defineProps({
|
|
271
|
+
id: String
|
|
272
|
+
});
|
|
273
|
+
|
|
274
|
+
const initializing = ref(true);
|
|
275
|
+
const compDataList = ref([]);
|
|
276
|
+
const visualComp = useAdminVisualCompStore();
|
|
277
|
+
const mobileId = ref(props.id || '');
|
|
278
|
+
const visualTool = ref();
|
|
279
|
+
const unSave = ref(false);
|
|
280
|
+
const rootNode = ref({ inputParamList: [] });
|
|
281
|
+
const activatedNode = ref({});
|
|
282
|
+
const loading = ref(false);
|
|
283
|
+
const tipsBoxStyle = ref('');
|
|
284
|
+
const tipsBoxInput = ref();
|
|
285
|
+
const tipsBoxEdit = ref(false);
|
|
286
|
+
const tipsNodeTree = ref([]);
|
|
287
|
+
|
|
288
|
+
const moveBoxName = ref('');
|
|
289
|
+
const moveBoxStyle = ref('');
|
|
290
|
+
|
|
291
|
+
const previewVisible = ref(false);
|
|
292
|
+
const pageParamList = ref([]);
|
|
293
|
+
|
|
294
|
+
const collapseName = ref('page');
|
|
295
|
+
const filterText = ref('');
|
|
296
|
+
const tree = ref();
|
|
297
|
+
const treeLoading = ref(false);
|
|
298
|
+
const treeData = ref([]);
|
|
299
|
+
const treeCheck = ref(false);
|
|
300
|
+
const treeProps = ref({
|
|
301
|
+
children: 'children',
|
|
302
|
+
label: 'text'
|
|
303
|
+
});
|
|
304
|
+
|
|
305
|
+
const mobile = ref({});
|
|
306
|
+
const currPage = ref(null);
|
|
307
|
+
const pageCache = ref({});
|
|
308
|
+
const nameIndex = ref([]);
|
|
309
|
+
provide('rootNode', rootNode);
|
|
310
|
+
provide('activatedNode', activatedNode);
|
|
311
|
+
provide('pageParamList', pageParamList);
|
|
312
|
+
provide('nameIndex', nameIndex);
|
|
313
|
+
|
|
314
|
+
const filterNode = (value, data) => {
|
|
315
|
+
if (!value) return true;
|
|
316
|
+
return data.text.indexOf(value) >= 0 ||
|
|
317
|
+
(data.data.code != null && data.data.code.indexOf(value) >= 0);
|
|
318
|
+
};
|
|
319
|
+
|
|
320
|
+
const pageNodeClick = async(data) => {
|
|
321
|
+
if (data.data.type !== '2') {
|
|
322
|
+
if (currPage.value && currPage.value.id) {
|
|
323
|
+
await nextTick(() => {
|
|
324
|
+
tree.value.setCurrentKey(null);
|
|
325
|
+
tree.value.setCurrentKey(currPage.value.id);
|
|
326
|
+
});
|
|
327
|
+
}
|
|
328
|
+
return;
|
|
329
|
+
}
|
|
330
|
+
if (currPage.value && currPage.value.id === data.data.id) return true;
|
|
331
|
+
|
|
332
|
+
loading.value = true;
|
|
333
|
+
await initPageNode(data.data);
|
|
334
|
+
await nextTick(() => loading.value = false);
|
|
335
|
+
return true;
|
|
336
|
+
};
|
|
337
|
+
|
|
338
|
+
const pageNodeDrop = (node, inNode, position) => {
|
|
339
|
+
const data = {
|
|
340
|
+
id: node.data.id,
|
|
341
|
+
parentId: position === 'inner' ? inNode.data.id : inNode.data.pid,
|
|
342
|
+
beforeId: position === 'before' ? inNode.data.id : '',
|
|
343
|
+
afterId: position === 'after' ? inNode.data.id : '',
|
|
344
|
+
}
|
|
345
|
+
api.post('/system/mobilePage/updatePosition', data).then(() => {
|
|
346
|
+
loadPageData(currPage.value);
|
|
347
|
+
});
|
|
348
|
+
};
|
|
349
|
+
|
|
350
|
+
const activeNode = async(node) => {
|
|
351
|
+
activatedNode.value = node;
|
|
352
|
+
tipsNodeTree.value = getAllParents(node.id, rootNode.value);
|
|
353
|
+
await initNodeData(activatedNode.value);
|
|
354
|
+
};
|
|
355
|
+
|
|
356
|
+
const showTipsInput = () => {
|
|
357
|
+
tipsBoxEdit.value = true;
|
|
358
|
+
nextTick(() => {
|
|
359
|
+
tipsBoxInput.value && tipsBoxInput.value.focus();
|
|
360
|
+
});
|
|
361
|
+
};
|
|
362
|
+
|
|
363
|
+
const showTipsBox = () => {
|
|
364
|
+
if (activatedNode.value && activatedNode.value.id && activatedNode.value.type !== 'page') {
|
|
365
|
+
const element = document.getElementById(activatedNode.value.id);
|
|
366
|
+
if (element) {
|
|
367
|
+
const rect = element.getBoundingClientRect();
|
|
368
|
+
tipsBoxStyle.value = `
|
|
369
|
+
display: block;
|
|
370
|
+
width: ${rect.width}px;
|
|
371
|
+
height: ${rect.height}px;
|
|
372
|
+
top: ${rect.top}px;
|
|
373
|
+
left: ${rect.left}px;`;
|
|
374
|
+
}
|
|
375
|
+
} else {
|
|
376
|
+
tipsBoxStyle.value = '';
|
|
377
|
+
}
|
|
378
|
+
};
|
|
379
|
+
|
|
380
|
+
const copyNode = (node) => {
|
|
381
|
+
const parentNode = getParentNode(node.id, rootNode.value);
|
|
382
|
+
if (!parentNode) return;
|
|
383
|
+
|
|
384
|
+
const idMap = {};
|
|
385
|
+
const newNode = tool.deepClone(node);
|
|
386
|
+
tool.walkProp(newNode, (key, obj) => {
|
|
387
|
+
if (key === 'id') {
|
|
388
|
+
const newId = tool.uuid();
|
|
389
|
+
if (obj[key]) {
|
|
390
|
+
idMap[obj[key]] = newId;
|
|
391
|
+
}
|
|
392
|
+
obj[key] = newId;
|
|
393
|
+
} else if (key === 'name') {
|
|
394
|
+
if (obj[key].indexOf('-') > 0) {
|
|
395
|
+
const name = obj[key].replace(/\d+$/, '');
|
|
396
|
+
obj[key] = getNodeName(name);
|
|
397
|
+
}
|
|
398
|
+
}
|
|
399
|
+
});
|
|
400
|
+
tool.walkProp(newNode, (key, obj) => {
|
|
401
|
+
if (obj[key] && typeof obj[key] === 'string' && idMap[obj[key]]) {
|
|
402
|
+
obj[key] = idMap[obj[key]];
|
|
403
|
+
}
|
|
404
|
+
});
|
|
405
|
+
parentNode.children.push(newNode);
|
|
406
|
+
activeNode(newNode);
|
|
407
|
+
};
|
|
408
|
+
|
|
409
|
+
const saveTplNode = (node) => {
|
|
410
|
+
const json = JSON.stringify(node);
|
|
411
|
+
api.post('/system/pageVisualTemplate/save',
|
|
412
|
+
{ type: '普通', name: node.name || '', json: json }
|
|
413
|
+
).then(res => {
|
|
414
|
+
if (res.code === '1') {
|
|
415
|
+
ElMessage.success('保存模板成功!');
|
|
416
|
+
visualTool.value.loadVisualTpl();
|
|
417
|
+
}
|
|
418
|
+
});
|
|
419
|
+
};
|
|
420
|
+
|
|
421
|
+
const buildNameIndex = () => {
|
|
422
|
+
const regex = new RegExp('-\\d+$');
|
|
423
|
+
tool.walkTree(rootNode.value, node => {
|
|
424
|
+
if (node.name && node.name.match(regex)) {
|
|
425
|
+
const lastIndex = node.name.lastIndexOf('-');
|
|
426
|
+
const name = node.name.substring(0, lastIndex);
|
|
427
|
+
const maxIndex = parseInt(node.name.substring(lastIndex + 1));
|
|
428
|
+
if (!nameIndex.value[name] || nameIndex.value[name] < maxIndex) {
|
|
429
|
+
nameIndex.value[name] = maxIndex;
|
|
430
|
+
}
|
|
431
|
+
}
|
|
432
|
+
});
|
|
433
|
+
};
|
|
434
|
+
|
|
435
|
+
const getNodeName = (name) => {
|
|
436
|
+
if (!name) return '组件-01';
|
|
437
|
+
|
|
438
|
+
if (name.endsWith('-')) {
|
|
439
|
+
name = name.substr(0, name.length - 1);
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
if (!nameIndex.value[name]) {
|
|
443
|
+
buildNameIndex();
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
if (!nameIndex.value[name]) {
|
|
447
|
+
nameIndex.value[name] = 0;
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
const index = ++nameIndex.value[name];
|
|
451
|
+
return name + '-' + (index < 10 ? '0' : '') + index;
|
|
452
|
+
};
|
|
453
|
+
|
|
454
|
+
const deleteNode = (node) => {
|
|
455
|
+
if (typeof node === 'undefined' || node == null) {
|
|
456
|
+
node = activatedNode.value;
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
let nodeName;
|
|
460
|
+
if (!node.name) {
|
|
461
|
+
nodeName = '此项'
|
|
462
|
+
} else {
|
|
463
|
+
nodeName = '【' + node.name + '】';
|
|
464
|
+
}
|
|
465
|
+
ElMessageBox.confirm('请确认是否删除' + nodeName + '?', '提示', { type: 'warning' }).then(() => {
|
|
466
|
+
doDeleteNode(node, rootNode.value.children || []);
|
|
467
|
+
tipsBoxStyle.value = '';
|
|
468
|
+
activatedNode.value = { compData: {} };
|
|
469
|
+
}).catch(() => {});
|
|
470
|
+
};
|
|
471
|
+
|
|
472
|
+
const doDeleteNode = (node, list) => {
|
|
473
|
+
if (typeof node === 'undefined' || node == null ||
|
|
474
|
+
typeof list === 'undefined' || list === null || list.length === 0) {
|
|
475
|
+
return false;
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
for (let i = 0; i < list.length; i++) {
|
|
479
|
+
if (list[i].id === node.id) {
|
|
480
|
+
list.splice(i, 1);
|
|
481
|
+
return true;
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
if (doDeleteNode(node, list[i].children || [])) {
|
|
485
|
+
return true;
|
|
486
|
+
}
|
|
487
|
+
}
|
|
488
|
+
};
|
|
489
|
+
|
|
490
|
+
const mouseoverNode = (item) => {
|
|
491
|
+
if (!item) {
|
|
492
|
+
moveBoxStyle.value = '';
|
|
493
|
+
moveBoxName.value = '';
|
|
494
|
+
} else {
|
|
495
|
+
const element = document.getElementById(item.id);
|
|
496
|
+
if (element) {
|
|
497
|
+
const rect = element.getBoundingClientRect();
|
|
498
|
+
moveBoxStyle.value = `
|
|
499
|
+
display: block;
|
|
500
|
+
width: ${rect.width}px;
|
|
501
|
+
height: ${rect.height}px;
|
|
502
|
+
top: ${rect.top}px;
|
|
503
|
+
left: ${rect.left}px;`;
|
|
504
|
+
moveBoxName.value = item.name;
|
|
505
|
+
}
|
|
506
|
+
}
|
|
507
|
+
};
|
|
508
|
+
|
|
509
|
+
const getAllParents = (nodeId, tree) => {
|
|
510
|
+
const parents = [];
|
|
511
|
+
|
|
512
|
+
function findParents(id, tree) {
|
|
513
|
+
if (id === tree.id) {
|
|
514
|
+
return true;
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
for (const children of tree.children || []) {
|
|
518
|
+
if (findParents(id, children)) {
|
|
519
|
+
if (tree.builtin !== true) {
|
|
520
|
+
parents.push(tree);
|
|
521
|
+
}
|
|
522
|
+
return true;
|
|
523
|
+
}
|
|
524
|
+
}
|
|
525
|
+
|
|
526
|
+
return false;
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
findParents(nodeId, tree);
|
|
530
|
+
return parents;
|
|
531
|
+
};
|
|
532
|
+
|
|
533
|
+
const getParentNode = (nodeId, node) => {
|
|
534
|
+
for (const children of node.children || []) {
|
|
535
|
+
if (children.id === nodeId) {
|
|
536
|
+
return node;
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
const parentNode = getParentNode(nodeId, children);
|
|
540
|
+
if (parentNode != null) {
|
|
541
|
+
return parentNode;
|
|
542
|
+
}
|
|
543
|
+
}
|
|
544
|
+
|
|
545
|
+
return null;
|
|
546
|
+
};
|
|
547
|
+
|
|
548
|
+
const preview = () => {
|
|
549
|
+
previewVisible.value = true;
|
|
550
|
+
};
|
|
551
|
+
|
|
552
|
+
const save = (manual) => {
|
|
553
|
+
if (!manual) {
|
|
554
|
+
if (unSave.value !== true) return;
|
|
555
|
+
unSave.value = false;
|
|
556
|
+
}
|
|
557
|
+
|
|
558
|
+
const pageList = [];
|
|
559
|
+
for (const pageId of Object.keys(pageCache.value)) {
|
|
560
|
+
const page = pageCache.value[pageId];
|
|
561
|
+
if (!manual && page.unSave !== true) continue;
|
|
562
|
+
|
|
563
|
+
page.unSave = false;
|
|
564
|
+
const data = tool.deepClone(page, prop => prop !== 'currStyle' && prop !== 'currCompStyle' && prop !== 'dataList');
|
|
565
|
+
delete data['unSave'];
|
|
566
|
+
pageList.push({ id: pageId, jsonText: JSON.stringify(data) });
|
|
567
|
+
}
|
|
568
|
+
|
|
569
|
+
if (pageList.length === 0) return;
|
|
570
|
+
|
|
571
|
+
api.post('/system/mobilePage/saveJsonList', pageList).then(res => {
|
|
572
|
+
if (res.code === '1' && manual) {
|
|
573
|
+
ElMessage.success(res.message);
|
|
574
|
+
} else if (res.code !== '1') {
|
|
575
|
+
ElMessage.error(res.message);
|
|
576
|
+
}
|
|
577
|
+
}).catch(e => {
|
|
578
|
+
console.log(e);
|
|
579
|
+
});
|
|
580
|
+
};
|
|
581
|
+
|
|
582
|
+
const quit = () => {
|
|
583
|
+
if (unSave.value) {
|
|
584
|
+
ElMessageBox.confirm('修改未保存是否退出?', '提示', { type: 'warning' }).then(() => {
|
|
585
|
+
emit('quit');
|
|
586
|
+
}).catch(() => {});
|
|
587
|
+
} else {
|
|
588
|
+
emit('quit');
|
|
589
|
+
}
|
|
590
|
+
};
|
|
591
|
+
|
|
592
|
+
const changeConfig = () => {
|
|
593
|
+
if (!initializing.value) {
|
|
594
|
+
rootNode.value.unSave = true;
|
|
595
|
+
unSave.value = true;
|
|
596
|
+
}
|
|
597
|
+
};
|
|
598
|
+
|
|
599
|
+
const initPageNode = async(data) => {
|
|
600
|
+
initializing.value = true;
|
|
601
|
+
currPage.value = data;
|
|
602
|
+
if (pageCache.value[currPage.value.id]) {
|
|
603
|
+
rootNode.value = pageCache.value[currPage.value.id];
|
|
604
|
+
} else {
|
|
605
|
+
if (currPage.value.jsonText) {
|
|
606
|
+
rootNode.value = JSON.parse(currPage.value.jsonText);
|
|
607
|
+
if (!rootNode.value.currStyle &&
|
|
608
|
+
rootNode.value.styleList &&
|
|
609
|
+
rootNode.value.styleList.length > 0) {
|
|
610
|
+
rootNode.value.currStyle = rootNode.value.styleList[0].style || {};
|
|
611
|
+
}
|
|
612
|
+
rootNode.value.compData.inputData = true;
|
|
613
|
+
} else {
|
|
614
|
+
rootNode.value = visual.createNode('页面', { type: 'page' });
|
|
615
|
+
rootNode.value.compData.inputData = true;
|
|
616
|
+
}
|
|
617
|
+
|
|
618
|
+
pageCache.value[currPage.value.id] = rootNode.value;
|
|
619
|
+
}
|
|
620
|
+
|
|
621
|
+
await nextTick(() => {
|
|
622
|
+
initializing.value = false;
|
|
623
|
+
activeNode(rootNode.value);
|
|
624
|
+
});
|
|
625
|
+
};
|
|
626
|
+
|
|
627
|
+
const initNodeData = async(node) => {
|
|
628
|
+
const data = await getCompData(node.type) || {};
|
|
629
|
+
node.compData.inputData = data.inputData || node.compData.inputData || false;
|
|
630
|
+
if (!node.compData.dataJson) {
|
|
631
|
+
node.compData.dataJson = JSON.stringify(data.dataList || []);
|
|
632
|
+
}
|
|
633
|
+
const fieldList = node.compData.fieldList || [];
|
|
634
|
+
if (fieldList.length === 0) {
|
|
635
|
+
(data.fieldList || '').split(',').forEach(fieldName => {
|
|
636
|
+
if (fieldName) {
|
|
637
|
+
fieldList.push({
|
|
638
|
+
id: tool.uuids(),
|
|
639
|
+
name: fieldName,
|
|
640
|
+
value: fieldName,
|
|
641
|
+
builtin: !!data.fieldBuiltIn
|
|
642
|
+
});
|
|
643
|
+
}
|
|
644
|
+
});
|
|
645
|
+
}
|
|
646
|
+
node.compData.fieldList = fieldList;
|
|
647
|
+
};
|
|
648
|
+
|
|
649
|
+
const loadMobileData = async() => {
|
|
650
|
+
if (!mobileId.value) {
|
|
651
|
+
ElMessage.error('参数不正确!');
|
|
652
|
+
window.close();
|
|
653
|
+
return;
|
|
654
|
+
}
|
|
655
|
+
|
|
656
|
+
const res = await api.post('/system/mobile/queryBy', { id: mobileId.value });
|
|
657
|
+
mobile.value = res.data;
|
|
658
|
+
};
|
|
659
|
+
|
|
660
|
+
const loadPageData = async(page) => {
|
|
661
|
+
if (!mobileId.value) {
|
|
662
|
+
ElMessage.error('参数不正确!');
|
|
663
|
+
window.close();
|
|
664
|
+
return;
|
|
665
|
+
}
|
|
666
|
+
|
|
667
|
+
treeLoading.value = true;
|
|
668
|
+
const res = await api.post('/system/mobilePage/queryTree', { mobileId: mobileId.value });
|
|
669
|
+
treeData.value = res.data.children;
|
|
670
|
+
treeLoading.value = false;
|
|
671
|
+
|
|
672
|
+
if (page && page.id === currPage.value.id) return;
|
|
673
|
+
|
|
674
|
+
if (!page) {
|
|
675
|
+
page = findFirstPage(treeData.value);
|
|
676
|
+
}
|
|
677
|
+
|
|
678
|
+
if (!page) {
|
|
679
|
+
page = {};
|
|
680
|
+
}
|
|
681
|
+
|
|
682
|
+
if (page) {
|
|
683
|
+
await initPageNode(page);
|
|
684
|
+
tree.value.setCurrentKey(page.id);
|
|
685
|
+
}
|
|
686
|
+
};
|
|
687
|
+
|
|
688
|
+
// const loadPageParam = async() => {
|
|
689
|
+
// (rootNode.value.compData.fieldList || []).forEach(field => {
|
|
690
|
+
// const find = pageParamList.value.find(param => param.id === field.id);
|
|
691
|
+
// if (!find) {
|
|
692
|
+
// pageParamList.value.push(field);
|
|
693
|
+
// }
|
|
694
|
+
// });
|
|
695
|
+
// };
|
|
696
|
+
|
|
697
|
+
const findFirstPage = (list) => {
|
|
698
|
+
for (const child of list) {
|
|
699
|
+
if (child.data.type === '2') {
|
|
700
|
+
return child.data;
|
|
701
|
+
} else {
|
|
702
|
+
if (child.children) {
|
|
703
|
+
const result = findFirstPage(child.children);
|
|
704
|
+
if (result) return result.data;
|
|
705
|
+
}
|
|
706
|
+
}
|
|
707
|
+
}
|
|
708
|
+
return null;
|
|
709
|
+
};
|
|
710
|
+
|
|
711
|
+
const pageVisible = ref(false);
|
|
712
|
+
const pageTitle = ref('');
|
|
713
|
+
const pageForm = ref();
|
|
714
|
+
const pageData = ref({});
|
|
715
|
+
const pageLoading = ref(false);
|
|
716
|
+
const pageRules = ref({
|
|
717
|
+
name: [
|
|
718
|
+
{ required: true, message: '名称不能为空!', trigger: 'blur' },
|
|
719
|
+
{ max: 50, message: '名称长度最多只能是50个字符', trigger: ['blur', 'change'] }
|
|
720
|
+
],
|
|
721
|
+
title: [
|
|
722
|
+
{ required: true, message: '标题不能为空!', trigger: 'blur' },
|
|
723
|
+
{ max: 50, message: '标题长度最多只能是50个字符', trigger: ['blur', 'change'] }
|
|
724
|
+
]
|
|
725
|
+
});
|
|
726
|
+
|
|
727
|
+
const addPage = (data) => {
|
|
728
|
+
pageData.value = {
|
|
729
|
+
parentId: data ? data.id : '',
|
|
730
|
+
type: data ? data.type : '2',
|
|
731
|
+
mobileId: mobileId.value
|
|
732
|
+
};
|
|
733
|
+
pageTitle.value = '新增页面';
|
|
734
|
+
pageLoading.value = false;
|
|
735
|
+
pageVisible.value = true;
|
|
736
|
+
};
|
|
737
|
+
|
|
738
|
+
const editPage = (item) => {
|
|
739
|
+
pageData.value = tool.deepClone(item);
|
|
740
|
+
pageTitle.value = '编辑页面';
|
|
741
|
+
pageLoading.value = false;
|
|
742
|
+
pageVisible.value = true;
|
|
743
|
+
};
|
|
744
|
+
|
|
745
|
+
const copyPage = (data) => {
|
|
746
|
+
api.post('/system/mobilePage/copy', { id: data.id }).then(res => {
|
|
747
|
+
if (res.code === '1') {
|
|
748
|
+
loadPageData(currPage.value);
|
|
749
|
+
ElMessage.success(res.message);
|
|
750
|
+
} else {
|
|
751
|
+
ElMessage.error(res.message);
|
|
752
|
+
}
|
|
753
|
+
});
|
|
754
|
+
};
|
|
755
|
+
|
|
756
|
+
const homePage = (data) => {
|
|
757
|
+
ElMessageBox.confirm('请确认是否将页面【' + data.name + '】设为首页?', '提示', { type: 'warning' }).then(() => {
|
|
758
|
+
api.post('/system/mobile/updateHome', { id: mobileId.value, homeId: data.id }).then(res => {
|
|
759
|
+
if (res.code === '1') {
|
|
760
|
+
mobile.value.homeId = data.id;
|
|
761
|
+
ElMessage.success(res.message);
|
|
762
|
+
} else {
|
|
763
|
+
ElMessage.error(res.message);
|
|
764
|
+
}
|
|
765
|
+
});
|
|
766
|
+
});
|
|
767
|
+
};
|
|
768
|
+
|
|
769
|
+
const loginPage = (data) => {
|
|
770
|
+
ElMessageBox.confirm('请确认是否将页面【' + data.name + '】设为登录页面?', '提示', { type: 'warning' }).then(() => {
|
|
771
|
+
api.post('/system/mobile/updateLogin', { id: mobileId.value, loginId: data.id }).then(res => {
|
|
772
|
+
if (res.code === '1') {
|
|
773
|
+
mobile.value.loginId = data.id;
|
|
774
|
+
ElMessage.success(res.message);
|
|
775
|
+
} else {
|
|
776
|
+
ElMessage.error(res.message);
|
|
777
|
+
}
|
|
778
|
+
});
|
|
779
|
+
});
|
|
780
|
+
};
|
|
781
|
+
|
|
782
|
+
const deletePage = (data) => {
|
|
783
|
+
if (!data || !data.id) return;
|
|
784
|
+
|
|
785
|
+
ElMessageBox.confirm('请确认是否删除页面【' + data.name + '】?', '提示', { type: 'warning' }).then(() => {
|
|
786
|
+
api.post('/system/mobilePage/delete', data).then(res => {
|
|
787
|
+
if (res.code === '1') {
|
|
788
|
+
loadPageData(data.id === currPage.value.id ? null : currPage.value);
|
|
789
|
+
if (pageCache.value[data.id]) {
|
|
790
|
+
delete pageCache.value[data.id];
|
|
791
|
+
}
|
|
792
|
+
ElMessage.success(res.message);
|
|
793
|
+
} else {
|
|
794
|
+
ElMessage.error(res.message);
|
|
795
|
+
}
|
|
796
|
+
});
|
|
797
|
+
});
|
|
798
|
+
};
|
|
799
|
+
|
|
800
|
+
const submitPageForm = () => {
|
|
801
|
+
pageForm.value.validate(valid => {
|
|
802
|
+
if (valid) {
|
|
803
|
+
ElMessageBox.confirm('请确认是否提交?', '提示', { type: 'info' }).then(() => {
|
|
804
|
+
pageLoading.value = true;
|
|
805
|
+
api.post('/system/mobilePage/save', pageData.value).then(res => {
|
|
806
|
+
if (res.code === '1') {
|
|
807
|
+
if (currPage.value && currPage.value.id === res.data.id) {
|
|
808
|
+
currPage.value.name = res.data.name;
|
|
809
|
+
currPage.value.title = res.data.title;
|
|
810
|
+
}
|
|
811
|
+
pageVisible.value = false;
|
|
812
|
+
ElMessage.success(res.message);
|
|
813
|
+
loadPageData(res.data);
|
|
814
|
+
} else {
|
|
815
|
+
ElMessage.error(res.message);
|
|
816
|
+
}
|
|
817
|
+
pageLoading.value = false;
|
|
818
|
+
}).catch(() => {
|
|
819
|
+
pageLoading.value = false;
|
|
820
|
+
})
|
|
821
|
+
});
|
|
822
|
+
} else {
|
|
823
|
+
ElMessage.error('数据录入不正确,请重新检查!');
|
|
824
|
+
}
|
|
825
|
+
});
|
|
826
|
+
};
|
|
827
|
+
|
|
828
|
+
const createCompData = (data, children) => {
|
|
829
|
+
(children || []).forEach(item => {
|
|
830
|
+
if (item.type && item.inputData) {
|
|
831
|
+
data[item.type] = {
|
|
832
|
+
inputData: item.inputData,
|
|
833
|
+
fieldList: item.fieldList || '',
|
|
834
|
+
fieldBuiltIn: !!item.fieldBuiltIn,
|
|
835
|
+
dataList: item.dataList || []
|
|
836
|
+
};
|
|
837
|
+
}
|
|
838
|
+
createCompData(data, item.children);
|
|
839
|
+
});
|
|
840
|
+
};
|
|
841
|
+
|
|
842
|
+
const getCompData = async(type) => {
|
|
843
|
+
if (type) {
|
|
844
|
+
if (!compDataList.value[type]) {
|
|
845
|
+
const comp = await visualComp.getVisualComp(type);
|
|
846
|
+
compDataList.value[type] = comp || {};
|
|
847
|
+
}
|
|
848
|
+
return tool.deepClone(compDataList.value[type]);
|
|
849
|
+
} else {
|
|
850
|
+
return {};
|
|
851
|
+
}
|
|
852
|
+
};
|
|
853
|
+
|
|
854
|
+
watch(() => filterText.value, val => {
|
|
855
|
+
tree.value.filter(val);
|
|
856
|
+
});
|
|
857
|
+
|
|
858
|
+
watch(() => rootNode.value.compData?.inputParamList, (value) => {
|
|
859
|
+
pageParamList.value = value || [];
|
|
860
|
+
}, { deep: true });
|
|
861
|
+
|
|
862
|
+
onMounted(async() => {
|
|
863
|
+
initializing.value = true;
|
|
864
|
+
await loadMobileData();
|
|
865
|
+
await loadPageData();
|
|
866
|
+
createCompData(compDataList.value, components);
|
|
867
|
+
// await loadPageParam();
|
|
868
|
+
setInterval(showTipsBox, 200);
|
|
869
|
+
initializing.value = false;
|
|
870
|
+
});
|
|
871
|
+
</script>
|
|
872
|
+
|
|
873
|
+
<style scoped lang="scss">
|
|
874
|
+
.editor {
|
|
875
|
+
height: 100%;
|
|
876
|
+
display: flex;
|
|
877
|
+
flex-direction: row;
|
|
878
|
+
position: relative;
|
|
879
|
+
background: #ffffff;
|
|
880
|
+
.editor-container {
|
|
881
|
+
flex-grow: 1;
|
|
882
|
+
display: flex;
|
|
883
|
+
flex-direction: column;
|
|
884
|
+
align-items: center;
|
|
885
|
+
overflow: auto;
|
|
886
|
+
background-color: #f0f2f5;
|
|
887
|
+
.editor-main {
|
|
888
|
+
flex-shrink: 0;
|
|
889
|
+
display: block;
|
|
890
|
+
width: 386px;
|
|
891
|
+
height: 782px;
|
|
892
|
+
padding: 50px 13px;
|
|
893
|
+
margin: auto;
|
|
894
|
+
box-sizing: border-box;
|
|
895
|
+
background-size: cover;
|
|
896
|
+
.mobile-title {
|
|
897
|
+
height: 44px;
|
|
898
|
+
line-height: 44px;
|
|
899
|
+
text-align: center;
|
|
900
|
+
font-size: 16px;
|
|
901
|
+
font-weight: bold;
|
|
902
|
+
background-color: rgb(248, 248, 248);
|
|
903
|
+
color: rgb(0, 0, 0);
|
|
904
|
+
}
|
|
905
|
+
}
|
|
906
|
+
.draggable-page {
|
|
907
|
+
width: 100%;
|
|
908
|
+
height: calc(100% - 44px);
|
|
909
|
+
box-sizing: border-box;
|
|
910
|
+
background: white;
|
|
911
|
+
overflow: auto;
|
|
912
|
+
font-family: "Microsoft YaHei", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", Arial, sans-serif;
|
|
913
|
+
:deep(.empty) {
|
|
914
|
+
width: 100%;
|
|
915
|
+
height: 100px;
|
|
916
|
+
box-sizing: border-box;
|
|
917
|
+
box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
|
|
918
|
+
outline: 1px dashed #333 !important;
|
|
919
|
+
outline-offset: -2px !important;
|
|
920
|
+
}
|
|
921
|
+
}
|
|
922
|
+
.draggable-page::-webkit-scrollbar {
|
|
923
|
+
display: none;
|
|
924
|
+
}
|
|
925
|
+
.draggable-page:after {
|
|
926
|
+
content: '';
|
|
927
|
+
height: 50px;
|
|
928
|
+
display: block;
|
|
929
|
+
}
|
|
930
|
+
}
|
|
931
|
+
.editor-tool {
|
|
932
|
+
z-index: 100;
|
|
933
|
+
width: 370px;
|
|
934
|
+
flex-shrink: 0;
|
|
935
|
+
}
|
|
936
|
+
}
|
|
937
|
+
.active-box {
|
|
938
|
+
display: none;
|
|
939
|
+
position: absolute;
|
|
940
|
+
border: 1px solid #0085f6;
|
|
941
|
+
box-sizing: border-box;
|
|
942
|
+
pointer-events: none;
|
|
943
|
+
.tips-box {
|
|
944
|
+
position: relative;
|
|
945
|
+
top: calc(100% + 3px);
|
|
946
|
+
pointer-events: auto;
|
|
947
|
+
display: flex;
|
|
948
|
+
flex-direction: column;
|
|
949
|
+
width: fit-content;
|
|
950
|
+
.tips-operate {
|
|
951
|
+
display: inline-flex;
|
|
952
|
+
flex-direction: row;
|
|
953
|
+
align-items: center;
|
|
954
|
+
.tips-name, .tips-copy, .tips-tpl, .tips-delete {
|
|
955
|
+
border-radius: 3px;
|
|
956
|
+
height: 25px;
|
|
957
|
+
font-size: 15px;
|
|
958
|
+
margin-right: 2px;
|
|
959
|
+
color: white;
|
|
960
|
+
display: flex;
|
|
961
|
+
cursor: pointer;
|
|
962
|
+
flex-direction: column;
|
|
963
|
+
justify-content: center;
|
|
964
|
+
}
|
|
965
|
+
|
|
966
|
+
.tips-name {
|
|
967
|
+
padding: 3px 5px;
|
|
968
|
+
background: #409EFF;
|
|
969
|
+
.tips-name-txt {
|
|
970
|
+
white-space: nowrap;
|
|
971
|
+
}
|
|
972
|
+
:deep(.el-input) {
|
|
973
|
+
min-width: 200px;
|
|
974
|
+
}
|
|
975
|
+
}
|
|
976
|
+
|
|
977
|
+
.tips-copy {
|
|
978
|
+
background: #67C23A;
|
|
979
|
+
padding: 3px 8px;
|
|
980
|
+
}
|
|
981
|
+
|
|
982
|
+
.tips-tpl {
|
|
983
|
+
background: #ff8000;
|
|
984
|
+
padding: 3px 8px;
|
|
985
|
+
}
|
|
986
|
+
|
|
987
|
+
.tips-delete {
|
|
988
|
+
background: #F56C6C;
|
|
989
|
+
padding: 3px 8px;
|
|
990
|
+
}
|
|
991
|
+
}
|
|
992
|
+
.tips-node {
|
|
993
|
+
display: none;
|
|
994
|
+
flex-direction: column;
|
|
995
|
+
width: fit-content;
|
|
996
|
+
.tips-node-item {
|
|
997
|
+
white-space: nowrap;
|
|
998
|
+
border-radius: 3px;
|
|
999
|
+
margin-top: 1px;
|
|
1000
|
+
padding: 3px 5px;
|
|
1001
|
+
height: 25px;
|
|
1002
|
+
font-size: 15px;
|
|
1003
|
+
color: white;
|
|
1004
|
+
display: flex;
|
|
1005
|
+
cursor: pointer;
|
|
1006
|
+
flex-direction: column;
|
|
1007
|
+
justify-content: center;
|
|
1008
|
+
background: #409EFF;
|
|
1009
|
+
}
|
|
1010
|
+
}
|
|
1011
|
+
}
|
|
1012
|
+
.tips-box:has(.tips-name:hover) .tips-node, .tips-box .tips-node:hover{
|
|
1013
|
+
display: inline-flex;
|
|
1014
|
+
}
|
|
1015
|
+
}
|
|
1016
|
+
.mouseover-box {
|
|
1017
|
+
display: none;
|
|
1018
|
+
position: absolute;
|
|
1019
|
+
border: 1px solid #0085f6;
|
|
1020
|
+
box-sizing: border-box;
|
|
1021
|
+
pointer-events: none;
|
|
1022
|
+
.tips-box {
|
|
1023
|
+
position: relative;
|
|
1024
|
+
top: calc(100% + 3px);
|
|
1025
|
+
text-align: center;
|
|
1026
|
+
pointer-events: auto;
|
|
1027
|
+
display: flex;
|
|
1028
|
+
flex-direction: column;
|
|
1029
|
+
align-items: center;
|
|
1030
|
+
justify-content: center;
|
|
1031
|
+
width: 100%;
|
|
1032
|
+
color: rgb(33, 138, 246);
|
|
1033
|
+
}
|
|
1034
|
+
}
|
|
1035
|
+
.editor-page {
|
|
1036
|
+
width: 300px;
|
|
1037
|
+
box-sizing: border-box;
|
|
1038
|
+
overflow: auto;
|
|
1039
|
+
:deep(.el-collapse-item__header) {
|
|
1040
|
+
box-sizing: border-box;
|
|
1041
|
+
}
|
|
1042
|
+
.page-title {
|
|
1043
|
+
display: flex;
|
|
1044
|
+
flex-direction: row;
|
|
1045
|
+
margin: 0 10px;
|
|
1046
|
+
.page-title-name {
|
|
1047
|
+
flex-grow: 1;
|
|
1048
|
+
}
|
|
1049
|
+
.page-title-icon {
|
|
1050
|
+
margin: auto;
|
|
1051
|
+
}
|
|
1052
|
+
}
|
|
1053
|
+
.filter-box {
|
|
1054
|
+
margin: 0 10px 10px 10px;
|
|
1055
|
+
}
|
|
1056
|
+
.tree {
|
|
1057
|
+
:deep(.el-tree-node__content) {
|
|
1058
|
+
height: 40px;
|
|
1059
|
+
}
|
|
1060
|
+
}
|
|
1061
|
+
.node-item {
|
|
1062
|
+
display: flex;
|
|
1063
|
+
flex-direction: row;
|
|
1064
|
+
align-items: center;
|
|
1065
|
+
width: 100%;
|
|
1066
|
+
|
|
1067
|
+
.node-label {
|
|
1068
|
+
margin-left: 10px;
|
|
1069
|
+
flex-grow: 1;
|
|
1070
|
+
width: 1px;
|
|
1071
|
+
text-overflow: ellipsis;
|
|
1072
|
+
overflow: hidden;
|
|
1073
|
+
display: flex;
|
|
1074
|
+
|
|
1075
|
+
.item-name {
|
|
1076
|
+
width: 100%;
|
|
1077
|
+
text-overflow: ellipsis;
|
|
1078
|
+
overflow: hidden;
|
|
1079
|
+
}
|
|
1080
|
+
}
|
|
1081
|
+
.node-button {
|
|
1082
|
+
margin-right: 10px;
|
|
1083
|
+
display: flex;
|
|
1084
|
+
justify-content: center;
|
|
1085
|
+
align-items: center;
|
|
1086
|
+
}
|
|
1087
|
+
.node-button .node-button-item {
|
|
1088
|
+
width: 40px;
|
|
1089
|
+
display: flex;
|
|
1090
|
+
justify-content: center;
|
|
1091
|
+
align-items: center;
|
|
1092
|
+
border-radius: 5px;
|
|
1093
|
+
}
|
|
1094
|
+
.node-button .node-button-item:focus-visible {
|
|
1095
|
+
outline: unset;
|
|
1096
|
+
}
|
|
1097
|
+
}
|
|
1098
|
+
}
|
|
1099
|
+
|
|
1100
|
+
</style>
|