hs-admin-ui 1.0.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/.env +11 -0
- package/.env.development +5 -0
- package/.env.production +5 -0
- package/.eslintignore +18 -0
- package/.eslintrc.js +104 -0
- package/.prettierrc.js +39 -0
- package/.vite/deps_temp_3669a513/chunk-FVXAE7ZR.js +11400 -0
- package/.vite/deps_temp_3669a513/chunk-ZS7NZCD4.js +36 -0
- package/.vite/deps_temp_3669a513/default-passive-events.js +25 -0
- package/.vite/deps_temp_3669a513/element-plus.js +65013 -0
- package/.vite/deps_temp_3669a513/lodash.js +5497 -0
- package/.vite/deps_temp_3669a513/package.json +3 -0
- package/.vite/deps_temp_3669a513/vue.js +324 -0
- package/.vite/deps_temp_3669a513/vxe-table.js +32336 -0
- package/CHANGELOG.md +1 -0
- package/LICENSE +21 -0
- package/README.md +0 -0
- package/directoryList.md +180 -0
- package/package.json +78 -0
- package/postcss.config.js +7 -0
- package/src/App.vue +88 -0
- package/src/api/fieldConfigController/index.ts +76 -0
- package/src/api/fieldConfigController/type.ts +44 -0
- package/src/api/login/index.ts +78 -0
- package/src/api/loginController/index.ts +74 -0
- package/src/api/menu/index.ts +34 -0
- package/src/api/menu/index2.ts +291 -0
- package/src/api/menuController/index.ts +189 -0
- package/src/api/systemController/index.ts +26 -0
- package/src/api/systemController/type.ts +16 -0
- package/src/api/test/index.ts +22 -0
- package/src/api/user/index.ts +30 -0
- package/src/assets/404.png +0 -0
- package/src/assets/logo-main.svg +12 -0
- package/src/assets/logo-mini.svg +12 -0
- package/src/components/base/hsAffix/src/hsAffix.vue +22 -0
- package/src/components/base/hsAlert/src/hsAlert.vue +15 -0
- package/src/components/base/hsAutocomplete/src/hsAutocomplete.vue +36 -0
- package/src/components/base/hsButton/src/hsButton.vue +26 -0
- package/src/components/base/hsButton/src/hsButtonGroup.vue +8 -0
- package/src/components/base/hsButton/useButtonEvents.ts +19 -0
- package/src/components/base/hsCalendar/src/hsCalendar.vue +36 -0
- package/src/components/base/hsCarousel/src/hsCarousel.vue +15 -0
- package/src/components/base/hsCarousel/src/hsCarouselItem.vue +15 -0
- package/src/components/base/hsCascader/src/hsCascader.vue +36 -0
- package/src/components/base/hsCascader/src/hsCascaderPanel.vue +29 -0
- package/src/components/base/hsCheckbox/src/hsCheckbox.vue +32 -0
- package/src/components/base/hsCheckbox/src/hsCheckboxButton.vue +18 -0
- package/src/components/base/hsCheckbox/src/hsCheckboxGroup.vue +32 -0
- package/src/components/base/hsCol/src/hsCol.vue +20 -0
- package/src/components/base/hsCollapse/src/hsCollapse.vue +36 -0
- package/src/components/base/hsCollapse/src/hsCollapseItem.vue +22 -0
- package/src/components/base/hsColorPicker/src/hsColorPicker.vue +32 -0
- package/src/components/base/hsDatePicker/src/hsDatePicker.vue +40 -0
- package/src/components/base/hsDialog/src/hsDialog.vue +36 -0
- package/src/components/base/hsDrawer/src/hsDrawer.vue +29 -0
- package/src/components/base/hsDropdown/src/hsDropdown.vue +15 -0
- package/src/components/base/hsDropdown/src/hsDropdownItem.vue +15 -0
- package/src/components/base/hsDropdown/src/hsDropdownMenu.vue +15 -0
- package/src/components/base/hsForm/src/hsForm.vue +23 -0
- package/src/components/base/hsForm/src/hsFormItem.vue +22 -0
- package/src/components/base/hsGetApi/src/hsGetApis.vue +231 -0
- package/src/components/base/hsGetApi/useGetApis.ts +158 -0
- package/src/components/base/hsInput/src/hsInput.vue +40 -0
- package/src/components/base/hsInput/useInputEvents.ts +52 -0
- package/src/components/base/hsInputNumber/src/hsInputNumber.vue +31 -0
- package/src/components/base/hsPopconfirm/src/hsPopconfirm.vue +15 -0
- package/src/components/base/hsPopover/src/hsPopover.vue +22 -0
- package/src/components/base/hsProgress/src/hsProgress.vue +15 -0
- package/src/components/base/hsRadio/src/hsRadio.vue +32 -0
- package/src/components/base/hsRadio/src/hsRadioButton.vue +18 -0
- package/src/components/base/hsRadio/src/hsRadioGroup.vue +32 -0
- package/src/components/base/hsRate/src/hsRate.vue +33 -0
- package/src/components/base/hsResult/src/hsResult.vue +15 -0
- package/src/components/base/hsRow/src/hsRow.vue +20 -0
- package/src/components/base/hsScrollbar/src/hsScrollbar.vue +22 -0
- package/src/components/base/hsSelect/src/hsOption.vue +8 -0
- package/src/components/base/hsSelect/src/hsOptionGroup.vue +8 -0
- package/src/components/base/hsSelect/src/hsSelect.vue +42 -0
- package/src/components/base/hsSelect/useSelectEvents.ts +60 -0
- package/src/components/base/hsSlider/src/hsSlider.vue +25 -0
- package/src/components/base/hsSteps/src/hsStep.vue +15 -0
- package/src/components/base/hsSteps/src/hsSteps.vue +15 -0
- package/src/components/base/hsSwitch/src/hsSwitch.vue +35 -0
- package/src/components/base/hsTable/hsBCTable.vue +116 -0
- package/src/components/base/hsTable/hsTable copy.vue +226 -0
- package/src/components/base/hsTable/hsTable.vue +213 -0
- package/src/components/base/hsTable/useHsTableConfig.ts +95 -0
- package/src/components/base/hsTable/useTableEvents.ts +118 -0
- package/src/components/base/hsTabs/src/hsTabPane.vue +15 -0
- package/src/components/base/hsTabs/src/hsTabs.vue +29 -0
- package/src/components/base/hsTag/src/hsCheckTag.vue +16 -0
- package/src/components/base/hsTag/src/hsTag.vue +15 -0
- package/src/components/base/hsTest/HsTest.vue +320 -0
- package/src/components/base/hsTooltip/src/hsTooltip.vue +22 -0
- package/src/components/base/hsTour/src/hsTour.vue +31 -0
- package/src/components/base/hsTour/src/hsTourStep.vue +15 -0
- package/src/components/base/hsTransfer/src/hsTransfer.vue +36 -0
- package/src/components/base/hsTree/src/hsTree.vue +24 -0
- package/src/components/base/hsTreeSelect/src/hsTreeSelect.vue +39 -0
- package/src/components/base/hsUpload/src/hsUpload.vue +32 -0
- package/src/components/base/hsWatermark/src/hsWatermark.vue +15 -0
- package/src/components/business/bcAutoComplete/bcAutoComplete.vue +38 -0
- package/src/components/business/bcAutoComplete/defaultData.ts +25 -0
- package/src/components/business/bcAutoComplete/useAutoComplete.ts +65 -0
- package/src/components/business/bcBtn/bcBtn.vue +40 -0
- package/src/components/business/bcForm/bcForm.vue +113 -0
- package/src/components/business/bcForm/bcFormDrag.vue +104 -0
- package/src/components/business/bcForm/bcFormSearch.vue +154 -0
- package/src/components/business/bcForm/components/sortForm/index.ts +18 -0
- package/src/components/business/bcForm/components/sortForm/sortForm.vue +92 -0
- package/src/components/business/bcFormConfig/bcFormConfig.vue +196 -0
- package/src/components/business/bcFormTable/bcFormTable.vue +91 -0
- package/src/components/business/bcFormTable/components/bcTabs/bcTabs.vue +53 -0
- package/src/components/business/bcFormTable/components/contextBody/contextBody.vue +67 -0
- package/src/components/business/bcFormTable/components/contextBody/useContextMenu.ts +53 -0
- package/src/components/business/bcFormTable/components/formSearchBtn/formSearchBtn.vue +21 -0
- package/src/components/business/bcFormTable/methods/cellDetailMethod.ts +5 -0
- package/src/components/business/bcFormTable/methods/filterAgeMethod.ts +5 -0
- package/src/components/business/bcFormTable/methods/footerMethod.ts +25 -0
- package/src/components/business/bcFormTable/methods/index.ts +10 -0
- package/src/components/business/bcFormTable/utils/onFormKey.ts +121 -0
- package/src/components/business/bcFormTable/utils/onTableKey.ts +119 -0
- package/src/components/business/bcFormTable/utils/parseTable.ts +201 -0
- package/src/components/business/bcFormTable/utils/useButon.ts +20 -0
- package/src/components/business/bcFormTable/utils/useTableHeight.ts +44 -0
- package/src/components/business/bcPageConfig/bcPageConfig.vue +79 -0
- package/src/components/business/bcPageConfig/components/hsBtn/src/hsAttrBtn.vue +39 -0
- package/src/components/business/bcPageConfig/components/hsBtn/src/hsBtnConfigList.vue +45 -0
- package/src/components/business/bcPageConfig/components/hsBtn/src/hsBtnItemConfig.vue +32 -0
- package/src/components/business/bcPageConfig/components/hsBtn/src/hsBtnPanel.vue +45 -0
- package/src/components/business/bcPageConfig/components/hsBtn/useAttrBtn.ts +58 -0
- package/src/components/business/bcPageConfig/components/hsBtn/useBtnConfigList.ts +71 -0
- package/src/components/business/bcPageConfig/components/hsBtn/useBtnItemConfig.ts +35 -0
- package/src/components/business/bcPageConfig/components/hsExpand/src/hsExpand.vue +33 -0
- package/src/components/business/bcPageConfig/components/hsExpand/useExpand.ts +9 -0
- package/src/components/business/bcPageConfig/components/hsForm/src/hsAttrForm.vue +54 -0
- package/src/components/business/bcPageConfig/components/hsForm/src/hsFormConfig.vue +180 -0
- package/src/components/business/bcPageConfig/components/hsForm/src/hsFormConfigList.vue +45 -0
- package/src/components/business/bcPageConfig/components/hsForm/src/hsFormPanel.vue +64 -0
- package/src/components/business/bcPageConfig/components/hsForm/src/hsFormParse.vue +24 -0
- package/src/components/business/bcPageConfig/components/hsForm/useAttrForm.ts +108 -0
- package/src/components/business/bcPageConfig/components/hsForm/useFormListConfig.ts +69 -0
- package/src/components/business/bcPageConfig/components/hsForm/useFormParse.ts +120 -0
- package/src/components/business/bcPageConfig/components/hsSaveForm/saveFormConfig.ts +66 -0
- package/src/components/business/bcPageConfig/components/hsSaveForm/src/saveForm.vue +48 -0
- package/src/components/business/bcPageConfig/components/hsSaveForm/useSaveForm.ts +148 -0
- package/src/components/business/bcPageConfig/components/hsTables/src/hsAttrTable.vue +122 -0
- package/src/components/business/bcPageConfig/components/hsTables/src/hsRecursionConfig.vue +36 -0
- package/src/components/business/bcPageConfig/components/hsTables/src/hsTableConfig.vue +51 -0
- package/src/components/business/bcPageConfig/components/hsTables/src/hsTableConfigList.vue +46 -0
- package/src/components/business/bcPageConfig/components/hsTables/src/hsTablePanel.vue +68 -0
- package/src/components/business/bcPageConfig/components/hsTables/src/hsTableParse.vue +24 -0
- package/src/components/business/bcPageConfig/components/hsTables/useAttrTable.ts +218 -0
- package/src/components/business/bcPageConfig/components/hsTables/useTableConfigList.ts +77 -0
- package/src/components/business/bcPageConfig/components/hsTables/useTableParse.ts +78 -0
- package/src/components/business/bcPageConfig/default/apis.json +24712 -0
- package/src/components/business/bcPageConfig/default/baseBtnConfig.ts +256 -0
- package/src/components/business/bcPageConfig/default/baseFormConfig.ts +380 -0
- package/src/components/business/bcPageConfig/default/baseTableConfig.ts +2399 -0
- package/src/components/business/bcPageConfig/usePageConfig.ts +469 -0
- package/src/components/business/bcSelect/bcSelect.vue +50 -0
- package/src/components/business/bcSwitchSystems/bcSwitchSystems.vue +36 -0
- package/src/components/business/bcSwitchSystems/useSwitchSystems.ts +74 -0
- package/src/components/business/bcTable/bcTable.vue +63 -0
- package/src/components/business/bcTable/components/sortColumn/index.ts +19 -0
- package/src/components/business/bcTable/components/sortColumn/sortColumn.vue +107 -0
- package/src/components/business/bcTable/useTable.ts +51 -0
- package/src/components/business/bcTable/useTableHeight.ts +24 -0
- package/src/components/business/bcTreeSelect/bcTreeSelect.vue +12 -0
- package/src/components/business/cardID/cardID.vue +24 -0
- package/src/components/business/cardID/type.ts +0 -0
- package/src/components/business/cardID/useCardID.ts +0 -0
- package/src/components/component.ts +188 -0
- package/src/components/config/autocompleteAttrConfig/autocompleteAttrConfig.vue +26 -0
- package/src/components/config/autocompleteAttrConfig/config.ts +170 -0
- package/src/components/config/baseForm.vue +175 -0
- package/src/components/config/buttonAttrConfig/buttonAttrConfig.vue +26 -0
- package/src/components/config/buttonAttrConfig/config.ts +261 -0
- package/src/components/config/cascaderAttrConfig/cascaderAttrConfig.vue +26 -0
- package/src/components/config/cascaderAttrConfig/config.ts +287 -0
- package/src/components/config/cascaderPanelAttrConfig/cascaderPanelAttrConfig.vue +26 -0
- package/src/components/config/cascaderPanelAttrConfig/config.ts +278 -0
- package/src/components/config/checkboxAttrConfig/checkboxAttrConfig.vue +26 -0
- package/src/components/config/checkboxAttrConfig/config.ts +301 -0
- package/src/components/config/datePickerAttrConfig/config.ts +256 -0
- package/src/components/config/datePickerAttrConfig/datePickerAttrConfig.vue +26 -0
- package/src/components/config/inputAttrConfig/config.ts +322 -0
- package/src/components/config/inputAttrConfig/inputAttrConfig.vue +33 -0
- package/src/components/config/inputAttrConfig/inputEventConfig.vue +35 -0
- package/src/components/config/inputNumberAttrConfig/config.ts +177 -0
- package/src/components/config/inputNumberAttrConfig/inputNumberAttrConfig.vue +26 -0
- package/src/components/config/radioAttrConfig/config.ts +212 -0
- package/src/components/config/radioAttrConfig/radioAttrConfig.vue +26 -0
- package/src/components/config/selectAttrConfig/config.ts +478 -0
- package/src/components/config/selectAttrConfig/selectAttrConfig.vue +26 -0
- package/src/components/config/switchAttrConfig/config.ts +195 -0
- package/src/components/config/switchAttrConfig/switchAttrConfig.vue +26 -0
- package/src/components/config/treeSelectAttrConfig/config.ts +625 -0
- package/src/components/config/treeSelectAttrConfig/treeSelectAttrConfig.vue +26 -0
- package/src/components/config/type/formType.ts +25 -0
- package/src/components/config/uploadAttrConfig/config.ts +250 -0
- package/src/components/config/uploadAttrConfig/uploadAttrConfig.vue +26 -0
- package/src/components/iconSelector/index.vue +247 -0
- package/src/components/iconSelector/list.vue +84 -0
- package/src/components/svgIcon/index.vue +61 -0
- package/src/directive/authDirective.ts +40 -0
- package/src/directive/customDirective.ts +178 -0
- package/src/directive/index.ts +18 -0
- package/src/hooks/useCrypto.ts +36 -0
- package/src/hooks/useExpose.ts +60 -0
- package/src/layout/component/aside.vue +160 -0
- package/src/layout/component/columnsAside.vue +299 -0
- package/src/layout/component/header.vue +18 -0
- package/src/layout/component/main.vue +65 -0
- package/src/layout/footer/index.vue +25 -0
- package/src/layout/index.vue +53 -0
- package/src/layout/lockScreen/index.vue +352 -0
- package/src/layout/logo/index.vue +75 -0
- package/src/layout/main/classic.vue +73 -0
- package/src/layout/main/columns.vue +73 -0
- package/src/layout/main/defaults.vue +73 -0
- package/src/layout/main/transverse.vue +60 -0
- package/src/layout/navBars/index.vue +35 -0
- package/src/layout/navBars/tagsView/contextmenu.vue +133 -0
- package/src/layout/navBars/tagsView/tagsView.vue +737 -0
- package/src/layout/navBars/topBar/breadcrumb.vue +146 -0
- package/src/layout/navBars/topBar/closeFull.vue +53 -0
- package/src/layout/navBars/topBar/index.vue +107 -0
- package/src/layout/navBars/topBar/search.vue +123 -0
- package/src/layout/navBars/topBar/setings.vue +789 -0
- package/src/layout/navBars/topBar/user.vue +222 -0
- package/src/layout/navBars/topBar/userNews.vue +107 -0
- package/src/layout/navMenu/horizontal.vue +138 -0
- package/src/layout/navMenu/subItem.vue +49 -0
- package/src/layout/navMenu/vertical.vue +100 -0
- package/src/layout/routerView/iframes.vue +101 -0
- package/src/layout/routerView/link.vue +93 -0
- package/src/layout/routerView/parent.vue +104 -0
- package/src/layout/upgrade/index.vue +147 -0
- package/src/main.ts +70 -0
- package/src/router/backEnd.ts +173 -0
- package/src/router/frontEnd.ts +155 -0
- package/src/router/index.ts +138 -0
- package/src/router/route.ts +94 -0
- package/src/stores/index.ts +8 -0
- package/src/stores/keepAliveNames.ts +38 -0
- package/src/stores/requestOldRoutes.ts +16 -0
- package/src/stores/routesList.ts +26 -0
- package/src/stores/tagsViewRoutes.ts +23 -0
- package/src/stores/themeConfig.ts +142 -0
- package/src/stores/userInfo.ts +65 -0
- package/src/style/index.scss +0 -0
- package/src/style/tailwind.css +29 -0
- package/src/theme/app.scss +333 -0
- package/src/theme/common/transition.scss +147 -0
- package/src/theme/dark.scss +255 -0
- package/src/theme/element.scss +321 -0
- package/src/theme/iconSelector.scss +31 -0
- package/src/theme/index.scss +8 -0
- package/src/theme/loading.scss +51 -0
- package/src/theme/media/chart.scss +94 -0
- package/src/theme/media/cityLinkage.scss +10 -0
- package/src/theme/media/date.scss +25 -0
- package/src/theme/media/dialog.scss +12 -0
- package/src/theme/media/error.scss +45 -0
- package/src/theme/media/form.scss +31 -0
- package/src/theme/media/home.scss +23 -0
- package/src/theme/media/index.scss +15 -0
- package/src/theme/media/layout.scss +63 -0
- package/src/theme/media/login.scss +74 -0
- package/src/theme/media/media.scss +13 -0
- package/src/theme/media/pagination.scss +15 -0
- package/src/theme/media/personal.scss +16 -0
- package/src/theme/media/scrollbar.scss +56 -0
- package/src/theme/media/tagsView.scss +11 -0
- package/src/theme/mixins/index.scss +56 -0
- package/src/theme/other.scss +36 -0
- package/src/theme/tableTool.scss +27 -0
- package/src/theme/waves.scss +101 -0
- package/src/types/auth.d.ts +44 -0
- package/src/types/axios.d.ts +13 -0
- package/src/types/components.d.ts +30 -0
- package/src/types/customData.d.ts +163 -0
- package/src/types/form.ts +68 -0
- package/src/types/formItem/autocomplete.ts +43 -0
- package/src/types/formItem/button.ts +39 -0
- package/src/types/formItem/input.ts +66 -0
- package/src/types/formItem/inputNumber.ts +42 -0
- package/src/types/formItem/selelct.ts +54 -0
- package/src/types/formItem/treeSelect.ts +37 -0
- package/src/types/formTable.d.ts +210 -0
- package/src/types/global.d.ts +118 -0
- package/src/types/layout.d.ts +59 -0
- package/src/types/mitt.d.ts +38 -0
- package/src/types/pinia.d.ts +92 -0
- package/src/types/views.d.ts +331 -0
- package/src/utils/arrayOperation.ts +65 -0
- package/src/utils/authFunction.ts +38 -0
- package/src/utils/build.ts +124 -0
- package/src/utils/commonFunction.ts +64 -0
- package/src/utils/formatTime.ts +137 -0
- package/src/utils/getDataType.ts +136 -0
- package/src/utils/getStyleSheets.ts +101 -0
- package/src/utils/loading.ts +44 -0
- package/src/utils/mitt.ts +8 -0
- package/src/utils/other.ts +214 -0
- package/src/utils/request.ts +82 -0
- package/src/utils/setIconfont.ts +48 -0
- package/src/utils/showMessage.ts +57 -0
- package/src/utils/showMessageBox.ts +39 -0
- package/src/utils/showNotification.ts +50 -0
- package/src/utils/showPopup.ts +81 -0
- package/src/utils/storage.ts +137 -0
- package/src/utils/theme.ts +65 -0
- package/src/utils/toolsValidate.ts +370 -0
- package/src/utils/watermark.ts +47 -0
- package/src/views/error/401.vue +88 -0
- package/src/views/error/404.vue +89 -0
- package/src/views/home/index.vue +62 -0
- package/src/views/login/component/account.vue +172 -0
- package/src/views/login/component/mobile.vue +72 -0
- package/src/views/login/component/scan.vue +63 -0
- package/src/views/login/index.vue +254 -0
- package/src/views/system/auth/index.vue +48 -0
- package/src/views/system/auth/list.ts +50 -0
- package/src/views/system/auth/useAuth.ts +34 -0
- package/src/views/system/dept/dialog.vue +167 -0
- package/src/views/system/dept/index.vue +135 -0
- package/src/views/system/dic/dialog.vue +150 -0
- package/src/views/system/dic/index.vue +132 -0
- package/src/views/system/form/data.json +360 -0
- package/src/views/system/form/index.vue +24 -0
- package/src/views/system/formSetting/components/hsBtn/src/hsAttrBtn.vue +58 -0
- package/src/views/system/formSetting/components/hsBtn/src/hsBtnConfigList.vue +45 -0
- package/src/views/system/formSetting/components/hsBtn/src/hsBtnPanel.vue +51 -0
- package/src/views/system/formSetting/components/hsBtn/useAttrBtn.ts +129 -0
- package/src/views/system/formSetting/components/hsBtn/useBtnConfigList.ts +73 -0
- package/src/views/system/formSetting/components/hsExpand/src/hsExpand.vue +27 -0
- package/src/views/system/formSetting/components/hsExpand/useExpand.ts +9 -0
- package/src/views/system/formSetting/components/hsForm/src/hsAttrForm.vue +124 -0
- package/src/views/system/formSetting/components/hsForm/src/hsFormConfig.vue +180 -0
- package/src/views/system/formSetting/components/hsForm/src/hsFormConfigList.vue +45 -0
- package/src/views/system/formSetting/components/hsForm/src/hsFormPanel.vue +152 -0
- package/src/views/system/formSetting/components/hsForm/src/hsFormParse.vue +33 -0
- package/src/views/system/formSetting/components/hsForm/useAttrForm.ts +109 -0
- package/src/views/system/formSetting/components/hsForm/useFormListConfig.ts +70 -0
- package/src/views/system/formSetting/components/hsPageTree/configData.ts +3700 -0
- package/src/views/system/formSetting/components/hsPageTree/src/hsPageTree.vue +30 -0
- package/src/views/system/formSetting/components/hsPageTree/usePageTree.ts +50 -0
- package/src/views/system/formSetting/components/hsSaveForm/saveFormConfig.ts +66 -0
- package/src/views/system/formSetting/components/hsSaveForm/src/saveForm.vue +47 -0
- package/src/views/system/formSetting/components/hsSaveForm/useSaveForm.ts +122 -0
- package/src/views/system/formSetting/components/hsTables/src/hsAttrTable.vue +91 -0
- package/src/views/system/formSetting/components/hsTables/src/hsRecursionConfig.vue +36 -0
- package/src/views/system/formSetting/components/hsTables/src/hsTableConfig.vue +39 -0
- package/src/views/system/formSetting/components/hsTables/src/hsTableConfigList.vue +45 -0
- package/src/views/system/formSetting/components/hsTables/src/hsTablePanel.vue +56 -0
- package/src/views/system/formSetting/components/hsTables/src/hsTableParse.vue +29 -0
- package/src/views/system/formSetting/components/hsTables/useAttrTable.ts +125 -0
- package/src/views/system/formSetting/components/hsTables/useTableConfigList.ts +77 -0
- package/src/views/system/formSetting/components/selectConfig/config.ts +476 -0
- package/src/views/system/formSetting/components/selectConfig/selectConfig.vue +30 -0
- package/src/views/system/formSetting/data.json +360 -0
- package/src/views/system/formSetting/default/baseBtnConfig.ts +216 -0
- package/src/views/system/formSetting/default/baseFormConfig.ts +567 -0
- package/src/views/system/formSetting/default/baseTableConfig.ts +2353 -0
- package/src/views/system/formSetting/formConfig.vue +108 -0
- package/src/views/system/formSetting/index.vue +35 -0
- package/src/views/system/formSetting/menuType.d.ts +12 -0
- package/src/views/system/formSetting/panelConfig.json +164 -0
- package/src/views/system/formSetting/useForm.ts +89 -0
- package/src/views/system/formSetting/useFormConfig.ts +192 -0
- package/src/views/system/menu/dialog.vue +285 -0
- package/src/views/system/menu/index.vue +180 -0
- package/src/views/system/page/components/hsPageTree/configData.ts +3700 -0
- package/src/views/system/page/components/hsPageTree/src/hsPageTree.vue +30 -0
- package/src/views/system/page/components/hsPageTree/usePageTree.ts +49 -0
- package/src/views/system/page/index.vue +32 -0
- package/src/views/system/page/menuType.d.ts +12 -0
- package/src/views/system/page/usePage.ts +125 -0
- package/src/views/system/role/dialog.vue +236 -0
- package/src/views/system/role/index.vue +146 -0
- package/src/views/system/table/data.json +747 -0
- package/src/views/system/table/formate.js +49 -0
- package/src/views/system/table/index.vue +53 -0
- package/src/views/system/user/dialog.vue +187 -0
- package/src/views/system/user/index.vue +161 -0
- package/src/views/test/test/components/hsBtn/src/hsAttrBtn.vue +58 -0
- package/src/views/test/test/components/hsBtn/src/hsBtnConfigList.vue +45 -0
- package/src/views/test/test/components/hsBtn/src/hsBtnPanel.vue +51 -0
- package/src/views/test/test/components/hsBtn/useAttrBtn.ts +129 -0
- package/src/views/test/test/components/hsBtn/useBtnConfigList.ts +73 -0
- package/src/views/test/test/components/hsExpand/src/hsExpand.vue +27 -0
- package/src/views/test/test/components/hsExpand/useExpand.ts +9 -0
- package/src/views/test/test/components/hsForm/src/hsAttrForm.vue +124 -0
- package/src/views/test/test/components/hsForm/src/hsFormConfig.vue +180 -0
- package/src/views/test/test/components/hsForm/src/hsFormConfigList.vue +45 -0
- package/src/views/test/test/components/hsForm/src/hsFormPanel.vue +152 -0
- package/src/views/test/test/components/hsForm/src/hsFormParse.vue +33 -0
- package/src/views/test/test/components/hsForm/useAttrForm.ts +109 -0
- package/src/views/test/test/components/hsForm/useFormListConfig.ts +70 -0
- package/src/views/test/test/components/hsSaveForm/saveFormConfig.ts +66 -0
- package/src/views/test/test/components/hsSaveForm/src/saveForm.vue +47 -0
- package/src/views/test/test/components/hsSaveForm/useSaveForm.ts +122 -0
- package/src/views/test/test/components/hsTables/src/hsAttrTable.vue +91 -0
- package/src/views/test/test/components/hsTables/src/hsRecursionConfig.vue +36 -0
- package/src/views/test/test/components/hsTables/src/hsTableConfig.vue +39 -0
- package/src/views/test/test/components/hsTables/src/hsTableConfigList.vue +45 -0
- package/src/views/test/test/components/hsTables/src/hsTablePanel.vue +56 -0
- package/src/views/test/test/components/hsTables/src/hsTableParse.vue +29 -0
- package/src/views/test/test/components/hsTables/useAttrTable.ts +125 -0
- package/src/views/test/test/components/hsTables/useTableConfigList.ts +77 -0
- package/src/views/test/test/components/selectConfig/config.ts +476 -0
- package/src/views/test/test/components/selectConfig/selectConfig.vue +30 -0
- package/src/views/test/test/data.json +360 -0
- package/src/views/test/test/default/baseBtnConfig.ts +216 -0
- package/src/views/test/test/default/baseFormConfig.ts +567 -0
- package/src/views/test/test/default/baseTableConfig.ts +2353 -0
- package/src/views/test/test/formConfig.vue +102 -0
- package/src/views/test/test/test.vue +28 -0
- package/src/views/test/test/test3.vue +24 -0
- package/src/views/test/test/test4.vue +107 -0
- package/src/views/test/test/test/345/211/257/346/234/254.vue +2424 -0
- package/src/views/test/test/useFormConfig.ts +192 -0
- package/src/views/test/test2/test2.vue +17 -0
- package/src/views/test/test3/test.vue +20 -0
- package/tailwind.config.js +12 -0
- package/tsconfig.json +75 -0
- package/vite.config.ts +123 -0
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<hs-button class="bc-button" v-bind="getBtnData(data)" @click="$emit('click')" :style="{ '--text-color': data.textColor }">
|
|
3
|
+
<template v-if="data.iconPosition === 'right'">
|
|
4
|
+
<span class="mr-1">{{ data.name }}</span>
|
|
5
|
+
<template v-if="data.btnIcon">
|
|
6
|
+
<i v-if="data.btnIcon.indexOf('iconfont') > -1" :class="[data.btnIcon]" />
|
|
7
|
+
<el-icon v-else class="mx-1"><component :is="data.btnIcon" /></el-icon>
|
|
8
|
+
</template>
|
|
9
|
+
</template>
|
|
10
|
+
<template v-else>
|
|
11
|
+
<template v-if="data.btnIcon">
|
|
12
|
+
<i v-if="data.btnIcon.indexOf('iconfont') > -1" :class="[data.btnIcon]" />
|
|
13
|
+
<el-icon v-else class="mx-1"><component :is="data.btnIcon" /></el-icon>
|
|
14
|
+
</template>
|
|
15
|
+
<span class="ml-1">{{ data.name }}</span>
|
|
16
|
+
</template>
|
|
17
|
+
</hs-button>
|
|
18
|
+
</template>
|
|
19
|
+
<script lang="ts" setup name="bcBtn">
|
|
20
|
+
import ICustomData from '/@/types/customData';
|
|
21
|
+
import _ from 'lodash';
|
|
22
|
+
|
|
23
|
+
interface Props {
|
|
24
|
+
data: ICustomData.BtnData;
|
|
25
|
+
}
|
|
26
|
+
defineEmits(['click']);
|
|
27
|
+
defineProps<Props>();
|
|
28
|
+
|
|
29
|
+
function getBtnData(data: ICustomData.BtnData) {
|
|
30
|
+
return _.omit(data, ['fnName', 'icon', 'name', 'btnIcon', 'textColor', 'isApply', 'iconPosition']);
|
|
31
|
+
}
|
|
32
|
+
</script>
|
|
33
|
+
<style scoped lang="scss">
|
|
34
|
+
:global(.bc-button > span) {
|
|
35
|
+
color: var(--text-color) !important;
|
|
36
|
+
}
|
|
37
|
+
:global(.bc-button.is-disabled > span) {
|
|
38
|
+
color: #a8abb2 !important;
|
|
39
|
+
}
|
|
40
|
+
</style>
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<hs-form :model="data.data" v-bind="data.attrs">
|
|
3
|
+
<div class="form-wrap p-5 rounded-md mb-2" v-for="(form, keys) in data.form" :key="keys" :style="{ '--bg-color': form?.attrs?.bg }">
|
|
4
|
+
<!-- form 表单 -->
|
|
5
|
+
<div v-if="form.formItemType === 'form'">
|
|
6
|
+
<div class="title h-4 flex items-center relative mb-4 font-bold">{{ form.label }}</div>
|
|
7
|
+
<div
|
|
8
|
+
class="grid"
|
|
9
|
+
:style="{
|
|
10
|
+
'grid-template-columns': `repeat(${form.grid}, minmax(0, 1fr))`,
|
|
11
|
+
'column-gap': form.attrs.columnGap + 'px',
|
|
12
|
+
'row-gap': form.attrs.rowGap + 'px',
|
|
13
|
+
}"
|
|
14
|
+
>
|
|
15
|
+
<hs-form-item
|
|
16
|
+
v-for="(formItem, key) in getFormConfig(form)"
|
|
17
|
+
:label="formItem.label"
|
|
18
|
+
:key="key"
|
|
19
|
+
:style="{
|
|
20
|
+
'--form-item-lable-bg': formItem.layoutData.labelBg,
|
|
21
|
+
'--form-item-lable-text': formItem.layoutData.labelColor,
|
|
22
|
+
'grid-row': `span ${formItem.layoutData.rowSpan}/span ${formItem.layoutData.rowSpan}`,
|
|
23
|
+
'grid-column': `span ${formItem.layoutData.colSpan}/span ${formItem.layoutData.colSpan}`,
|
|
24
|
+
}"
|
|
25
|
+
>
|
|
26
|
+
<div class="flex items-center w-full" v-for="(i, k) in formItem.config" :key="k">
|
|
27
|
+
<slot v-if="i.baseData.isSlot" :name="i.baseData.prop"></slot>
|
|
28
|
+
<bc-btn v-else-if="i.baseData.el === 'hs-button'" :data="getBindComponentData(i)" />
|
|
29
|
+
<component v-else :is="getRender(i.baseData.el)" v-bind="getBindComponentData(i)" />
|
|
30
|
+
</div>
|
|
31
|
+
</hs-form-item>
|
|
32
|
+
</div>
|
|
33
|
+
</div>
|
|
34
|
+
<!-- 自定义插槽 -->
|
|
35
|
+
<div v-if="form.formItemType === 'slot'">
|
|
36
|
+
<div class="title h-4 flex items-center relative mb-4 font-bold">{{ form.label }}</div>
|
|
37
|
+
<slot :name="getSlotConfig(form).name" v-bind="getBindData(form)"></slot>
|
|
38
|
+
</div>
|
|
39
|
+
<!-- 自定义组件 -->
|
|
40
|
+
<div v-if="form.formItemType === 'component'">
|
|
41
|
+
<div class="title h-4 flex items-center relative mb-4 font-bold">{{ form.label }}</div>
|
|
42
|
+
<component :is="getComponentConfig(form).name" v-bind="getBindData(form)" />
|
|
43
|
+
</div>
|
|
44
|
+
</div>
|
|
45
|
+
</hs-form>
|
|
46
|
+
</template>
|
|
47
|
+
<script lang="ts" setup name="bcForm">
|
|
48
|
+
import IFormData from '/@/types/form';
|
|
49
|
+
import ICustomData from '/@/types/customData';
|
|
50
|
+
import { getRender } from '/@parseTable';
|
|
51
|
+
import _ from 'lodash';
|
|
52
|
+
|
|
53
|
+
interface Props {
|
|
54
|
+
data: IFormData.Form;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
const props = defineProps<Props>();
|
|
58
|
+
|
|
59
|
+
function getFormConfig(form: IFormData.FormConfig) {
|
|
60
|
+
return form.config as IFormData.ConfigFormItem[];
|
|
61
|
+
}
|
|
62
|
+
function getSlotConfig(form: IFormData.FormConfig) {
|
|
63
|
+
return form.config as IFormData.ConfigSlotItem;
|
|
64
|
+
}
|
|
65
|
+
function getComponentConfig(form: IFormData.FormConfig) {
|
|
66
|
+
return form.config as IFormData.ConfigComponentItem;
|
|
67
|
+
}
|
|
68
|
+
function getBindData(form: IFormData.FormConfig) {
|
|
69
|
+
return {
|
|
70
|
+
...form,
|
|
71
|
+
data: props.data,
|
|
72
|
+
};
|
|
73
|
+
}
|
|
74
|
+
function getBindComponentData(data: ICustomData.FormItemConfigData) {
|
|
75
|
+
return {
|
|
76
|
+
...data.baseData,
|
|
77
|
+
...data.elData.attrs,
|
|
78
|
+
..._.omit(data.elData, ['attrs', 'rules']),
|
|
79
|
+
};
|
|
80
|
+
}
|
|
81
|
+
</script>
|
|
82
|
+
<style scoped lang="scss">
|
|
83
|
+
.title {
|
|
84
|
+
&::after {
|
|
85
|
+
content: '';
|
|
86
|
+
position: absolute;
|
|
87
|
+
left: -10px;
|
|
88
|
+
top: 0;
|
|
89
|
+
width: 5px;
|
|
90
|
+
bottom: 0;
|
|
91
|
+
background-color: #1890ff;
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
:deep(.el-date-editor) {
|
|
95
|
+
width: 100%;
|
|
96
|
+
}
|
|
97
|
+
.form-wrap {
|
|
98
|
+
background-color: var(--bg-color);
|
|
99
|
+
&:last-of-type {
|
|
100
|
+
margin-bottom: 0;
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
:deep(.el-form-item) {
|
|
104
|
+
margin-bottom: 0 !important;
|
|
105
|
+
}
|
|
106
|
+
:deep(.el-form-item__label) {
|
|
107
|
+
background-color: var(--form-item-lable-bg);
|
|
108
|
+
color: var(--form-item-lable-text);
|
|
109
|
+
}
|
|
110
|
+
:deep(.el-form-item__content) {
|
|
111
|
+
flex-wrap: nowrap !important;
|
|
112
|
+
}
|
|
113
|
+
</style>
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<hs-form v-bind="baseData" :model="formData">
|
|
3
|
+
<VueDraggable ref="dragRef" handle=".el-form-item__label" ghostClass="ghost" v-model="formItemList" :animation="150" class="bc-form bg-white p-4">
|
|
4
|
+
<hs-form-item v-for="item in formItemList" :key="item.id" v-bind="getLabel(item.data)">
|
|
5
|
+
<component
|
|
6
|
+
ref="componentRef"
|
|
7
|
+
class="pointer-events-none"
|
|
8
|
+
v-if="item.data.baseData.prop && !item.data.baseData.isSlot && item.data.baseData.el"
|
|
9
|
+
v-model="(formData as any)[item.data.baseData.prop]"
|
|
10
|
+
:is="item.data.baseData.el"
|
|
11
|
+
v-bind="_.omit(item.data.elData, 'rules')"
|
|
12
|
+
></component>
|
|
13
|
+
<slot v-if="item.data.baseData.isSlot" :name="item.data.baseData.prop"></slot>
|
|
14
|
+
</hs-form-item>
|
|
15
|
+
</VueDraggable>
|
|
16
|
+
</hs-form>
|
|
17
|
+
</template>
|
|
18
|
+
<script lang="ts" setup name="bcFormDrag">
|
|
19
|
+
import { ref, computed } from 'vue';
|
|
20
|
+
import { type UseDraggableReturn, VueDraggable } from 'vue-draggable-plus';
|
|
21
|
+
import ICustomData from '/@/types/customData';
|
|
22
|
+
import _ from 'lodash';
|
|
23
|
+
|
|
24
|
+
interface Props {
|
|
25
|
+
baseData: ICustomData.FormBaseConfig;
|
|
26
|
+
formData: ICustomData.Data;
|
|
27
|
+
formConfig: ICustomData.FormItemConfig[];
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
const props = defineProps<Props>();
|
|
31
|
+
const emit = defineEmits(['update:formConfig']);
|
|
32
|
+
const dragRef = ref<UseDraggableReturn>();
|
|
33
|
+
const componentRef = ref(null);
|
|
34
|
+
|
|
35
|
+
const formItemList = computed({
|
|
36
|
+
get() {
|
|
37
|
+
return props.formConfig;
|
|
38
|
+
},
|
|
39
|
+
set(val) {
|
|
40
|
+
emit('update:formConfig', val);
|
|
41
|
+
},
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
function getLabel(data: ICustomData.FormItemConfigData) {
|
|
45
|
+
return {
|
|
46
|
+
..._.omit(data.baseData, ['el', 'isSlot', 'isAuth', 'isApply', 'isShow']),
|
|
47
|
+
...data.elData.rules,
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
defineExpose({
|
|
52
|
+
componentRef,
|
|
53
|
+
});
|
|
54
|
+
</script>
|
|
55
|
+
<style scoped lang="scss">
|
|
56
|
+
:deep(.el-form-item) {
|
|
57
|
+
box-shadow: inset 0 0 0px 1px #c8ebfb;
|
|
58
|
+
border-radius: 4px;
|
|
59
|
+
}
|
|
60
|
+
:deep(.el-form-item__label) {
|
|
61
|
+
font-weight: 700;
|
|
62
|
+
margin-left: 10px;
|
|
63
|
+
cursor: move;
|
|
64
|
+
}
|
|
65
|
+
:deep(.el-select__wrapper) {
|
|
66
|
+
padding: 0;
|
|
67
|
+
}
|
|
68
|
+
:deep(.el-select__wrapper),
|
|
69
|
+
:deep(.el-input__wrapper) {
|
|
70
|
+
box-shadow: none;
|
|
71
|
+
background-color: transparent;
|
|
72
|
+
}
|
|
73
|
+
:deep(.el-date-editor) {
|
|
74
|
+
--el-date-editor-width: 100% !important;
|
|
75
|
+
}
|
|
76
|
+
:deep(.el-date-editor .el-range__icon) {
|
|
77
|
+
display: none;
|
|
78
|
+
}
|
|
79
|
+
:deep(.el-select__wrapper.is-hovering:not(.is-focused)) {
|
|
80
|
+
box-shadow: none;
|
|
81
|
+
}
|
|
82
|
+
:deep(.el-select__suffix) {
|
|
83
|
+
background-color: #f5f5f5;
|
|
84
|
+
justify-content: center;
|
|
85
|
+
margin-right: 1px;
|
|
86
|
+
}
|
|
87
|
+
:deep(.el-form-item--small .el-select__suffix) {
|
|
88
|
+
padding: 4px;
|
|
89
|
+
}
|
|
90
|
+
:deep(.el-form-item--default .el-select__suffix) {
|
|
91
|
+
padding: 7px;
|
|
92
|
+
}
|
|
93
|
+
:deep(.el-select__caret) {
|
|
94
|
+
color: #2f2f2f;
|
|
95
|
+
}
|
|
96
|
+
:deep(.el-form-item.is-required:not(.is-no-asterisk).asterisk-left > .el-form-item__label-wrap > .el-form-item__label:before),
|
|
97
|
+
:deep(.el-form-item.is-required:not(.is-no-asterisk).asterisk-left > .el-form-item__label:before) {
|
|
98
|
+
margin-right: 0;
|
|
99
|
+
}
|
|
100
|
+
.ghost {
|
|
101
|
+
opacity: 0.5;
|
|
102
|
+
background: #c8ebfb;
|
|
103
|
+
}
|
|
104
|
+
</style>
|
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div ref="wrapRef">
|
|
3
|
+
<div class="bc-form__wrapper px-4 pt-4 bg-white flex">
|
|
4
|
+
<hs-form v-bind="baseData" :model="formData" class="bc-form">
|
|
5
|
+
<hs-form-item v-for="item in formItemList" :key="item.id" v-bind="getLabel(item.data)">
|
|
6
|
+
<component
|
|
7
|
+
ref="componentRef"
|
|
8
|
+
v-if="item.data.baseData.prop && !item.data.baseData.isSlot && item.data.baseData.el"
|
|
9
|
+
v-model="(formData as any)[item.data.baseData.prop]"
|
|
10
|
+
:is="item.data.baseData.el"
|
|
11
|
+
v-bind="_.omit(item.data.elData, 'rules')"
|
|
12
|
+
></component>
|
|
13
|
+
<slot v-if="item.data.baseData.isSlot" :name="`hs_query_${item.data.baseData.prop}`"></slot>
|
|
14
|
+
</hs-form-item>
|
|
15
|
+
</hs-form>
|
|
16
|
+
<div class="bc-form__btn flex items-start justify-end mt-1 mx-2">
|
|
17
|
+
<hs-button v-if="formItemList.length !== formConfig.length" size="small" type="primary" :icon="ArrowUpBold" circle @click="toggleShowAll" />
|
|
18
|
+
<hs-button
|
|
19
|
+
v-if="formItemList.length === formConfig.length && showAll"
|
|
20
|
+
size="small"
|
|
21
|
+
type="primary"
|
|
22
|
+
:icon="ArrowDownBold"
|
|
23
|
+
circle
|
|
24
|
+
@click="toggleShowAll"
|
|
25
|
+
/>
|
|
26
|
+
</div>
|
|
27
|
+
</div>
|
|
28
|
+
<div class="h-4"></div>
|
|
29
|
+
</div>
|
|
30
|
+
</template>
|
|
31
|
+
<script lang="ts" setup name="bcFormSearch">
|
|
32
|
+
import { ref, computed, nextTick } from 'vue';
|
|
33
|
+
import { ArrowDownBold, ArrowUpBold } from '@element-plus/icons-vue';
|
|
34
|
+
import { useElementSize } from '@vueuse/core';
|
|
35
|
+
import ICustomData from '/@/types/customData';
|
|
36
|
+
import _ from 'lodash';
|
|
37
|
+
|
|
38
|
+
interface Props {
|
|
39
|
+
baseData: ICustomData.FormBaseConfig;
|
|
40
|
+
formConfig: Array<ICustomData.FormItemConfig>;
|
|
41
|
+
formData: ICustomData.Data;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
const props = defineProps<Props>();
|
|
45
|
+
const emit = defineEmits(['heightChange']);
|
|
46
|
+
const wrapRef = ref(null);
|
|
47
|
+
const componentRef = ref(null);
|
|
48
|
+
const showAll = ref(false);
|
|
49
|
+
const { width } = useElementSize(wrapRef);
|
|
50
|
+
const xl = 1280;
|
|
51
|
+
const lg = 1024;
|
|
52
|
+
const md = 768;
|
|
53
|
+
const sm = 640;
|
|
54
|
+
|
|
55
|
+
const formItemList = computed(() => {
|
|
56
|
+
if (showAll.value) return props.formConfig;
|
|
57
|
+
if (width.value > xl) {
|
|
58
|
+
return props.formConfig.slice(0, 5);
|
|
59
|
+
}
|
|
60
|
+
if (width.value > lg && width.value <= xl) {
|
|
61
|
+
return props.formConfig.slice(0, 4);
|
|
62
|
+
}
|
|
63
|
+
if (width.value > md && width.value <= lg) {
|
|
64
|
+
return props.formConfig.slice(0, 3);
|
|
65
|
+
}
|
|
66
|
+
if (width.value > sm && width.value <= md) {
|
|
67
|
+
return props.formConfig.slice(0, 2);
|
|
68
|
+
}
|
|
69
|
+
return props.formConfig.slice(0, 1);
|
|
70
|
+
});
|
|
71
|
+
|
|
72
|
+
function getLabel(data: ICustomData.FormItemConfigData) {
|
|
73
|
+
return {
|
|
74
|
+
..._.omit(data.baseData, ['el', 'isSlot', 'isAuth', 'isApply', 'isShow']),
|
|
75
|
+
...data.elData.rules,
|
|
76
|
+
};
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
function toggleShowAll() {
|
|
80
|
+
emit('heightChange');
|
|
81
|
+
nextTick(() => {
|
|
82
|
+
showAll.value = !showAll.value;
|
|
83
|
+
});
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
function getComponents() {
|
|
87
|
+
return componentRef.value || [];
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
defineExpose({
|
|
91
|
+
componentRef,
|
|
92
|
+
getComponents,
|
|
93
|
+
});
|
|
94
|
+
</script>
|
|
95
|
+
<style scoped lang="scss">
|
|
96
|
+
@media (max-width: 640px) {
|
|
97
|
+
.bc-form__wrapper {
|
|
98
|
+
flex-direction: column;
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
:deep(.el-form-item) {
|
|
102
|
+
box-shadow: inset 0 0 0px 1px #cfd0d0;
|
|
103
|
+
border-radius: 4px;
|
|
104
|
+
}
|
|
105
|
+
:deep(.el-form-item__label) {
|
|
106
|
+
font-weight: 700;
|
|
107
|
+
margin-left: 10px;
|
|
108
|
+
}
|
|
109
|
+
:deep(.el-select__wrapper) {
|
|
110
|
+
padding: 0;
|
|
111
|
+
}
|
|
112
|
+
:deep(.el-select__wrapper),
|
|
113
|
+
:deep(.el-input__wrapper),
|
|
114
|
+
:deep(.el-date-editor.el-input__wrapper:hover) {
|
|
115
|
+
box-shadow: none;
|
|
116
|
+
background-color: transparent;
|
|
117
|
+
}
|
|
118
|
+
:deep(.el-date-editor) {
|
|
119
|
+
--el-date-editor-width: 100% !important;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
:deep(.el-date-editor .el-range__icon) {
|
|
123
|
+
display: none;
|
|
124
|
+
}
|
|
125
|
+
:deep(.el-select__wrapper.is-hovering:not(.is-focused)) {
|
|
126
|
+
box-shadow: none;
|
|
127
|
+
}
|
|
128
|
+
:deep(.el-select__suffix) {
|
|
129
|
+
background-color: #f5f5f5;
|
|
130
|
+
justify-content: center;
|
|
131
|
+
margin-right: 1px;
|
|
132
|
+
}
|
|
133
|
+
:deep(.el-form-item--small .el-select__suffix) {
|
|
134
|
+
padding: 4px;
|
|
135
|
+
}
|
|
136
|
+
:deep(.el-form-item--default .el-select__suffix) {
|
|
137
|
+
padding: 7px;
|
|
138
|
+
}
|
|
139
|
+
:deep(.el-select__caret) {
|
|
140
|
+
color: #2f2f2f;
|
|
141
|
+
}
|
|
142
|
+
:deep(.el-form-item.is-error .el-input__wrapper),
|
|
143
|
+
:deep(.el-form-item.is-error .el-select__wrapper),
|
|
144
|
+
:deep(.el-form-item.is-error .el-textarea__inner) {
|
|
145
|
+
box-shadow: none;
|
|
146
|
+
}
|
|
147
|
+
:deep(.el-form-item.is-required:not(.is-no-asterisk).asterisk-left > .el-form-item__label-wrap > .el-form-item__label:before),
|
|
148
|
+
:deep(.el-form-item.is-required:not(.is-no-asterisk).asterisk-left > .el-form-item__label:before) {
|
|
149
|
+
margin-right: 0;
|
|
150
|
+
}
|
|
151
|
+
:deep(.el-form-item.is-error) {
|
|
152
|
+
box-shadow: 0 0 0 1px var(--el-color-danger) inset;
|
|
153
|
+
}
|
|
154
|
+
</style>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { showPopup } from '/@/utils/showPopup';
|
|
2
|
+
import SortForm from './sortForm.vue';
|
|
3
|
+
|
|
4
|
+
/** 自定义列排序高级设置 */
|
|
5
|
+
export function setSortPopup<T>(id: string): Promise<T> {
|
|
6
|
+
return new Promise((reslove) => {
|
|
7
|
+
showPopup(
|
|
8
|
+
SortForm,
|
|
9
|
+
{ id },
|
|
10
|
+
{
|
|
11
|
+
title: '高级设置',
|
|
12
|
+
success(params: T) {
|
|
13
|
+
reslove(params);
|
|
14
|
+
},
|
|
15
|
+
}
|
|
16
|
+
);
|
|
17
|
+
});
|
|
18
|
+
}
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="h-full flex flex-col">
|
|
3
|
+
<div class="flex-1 overflow-hidden border-bottom-1">
|
|
4
|
+
<div class="w-full h-full">
|
|
5
|
+
<ul class="head flex items-center list-none">
|
|
6
|
+
<li class="w-[50px] px-2">拖动</li>
|
|
7
|
+
<li class="flex-1 pl-6">列名称</li>
|
|
8
|
+
<li class="flex-1 px-2">显示状态</li>
|
|
9
|
+
<li class="flex-1 px-2">排序值</li>
|
|
10
|
+
</ul>
|
|
11
|
+
<VueDraggable
|
|
12
|
+
v-model="list"
|
|
13
|
+
ghostClass="ghost"
|
|
14
|
+
handle=".sort-target"
|
|
15
|
+
animation="150"
|
|
16
|
+
class="overflow-y-auto border-1"
|
|
17
|
+
style="height: calc(100% - 34px)"
|
|
18
|
+
>
|
|
19
|
+
<div v-for="(item, index) in list" :key="item.id" class="flex items-center w-full px-2 border-bottom-1">
|
|
20
|
+
<span class="sort-target w-[50px] cursor-move px-2">
|
|
21
|
+
<el-icon class="rotate-90" size="14"><MoreFilled /></el-icon>
|
|
22
|
+
</span>
|
|
23
|
+
<span class="flex-1 px-2"><hs-input v-model="item.data.baseData.prop" /></span>
|
|
24
|
+
<span class="flex-1 px-2"><hs-switch v-model="item.data.baseData.isShow" /></span>
|
|
25
|
+
<span class="flex-1 px-2">{{ index + 1 }}</span>
|
|
26
|
+
</div>
|
|
27
|
+
</VueDraggable>
|
|
28
|
+
</div>
|
|
29
|
+
</div>
|
|
30
|
+
<div class="footer h-12 mt-2 flex items-center justify-end">
|
|
31
|
+
<hs-button size="small" @click="$emit('success')">取消</hs-button>
|
|
32
|
+
<hs-button type="primary" size="small" @click="submit">保存</hs-button>
|
|
33
|
+
</div>
|
|
34
|
+
</div>
|
|
35
|
+
</template>
|
|
36
|
+
<script lang="ts" setup name="sortColumn">
|
|
37
|
+
import { MoreFilled } from '@element-plus/icons-vue';
|
|
38
|
+
import ICustomData from '/@/types/customData';
|
|
39
|
+
import { ref } from 'vue';
|
|
40
|
+
import { formStore } from '/@/utils/storage';
|
|
41
|
+
import { VueDraggable } from 'vue-draggable-plus';
|
|
42
|
+
|
|
43
|
+
interface Props {
|
|
44
|
+
id: string;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
const props = defineProps<Props>();
|
|
48
|
+
const emit = defineEmits(['success']);
|
|
49
|
+
const list = ref<ICustomData.FormItemConfig[]>([]);
|
|
50
|
+
|
|
51
|
+
getList(props.id);
|
|
52
|
+
|
|
53
|
+
function getList(id: string) {
|
|
54
|
+
return formStore.get<ICustomData.FormTable>(id).then((res) => {
|
|
55
|
+
list.value = res.form?.formConfig || [];
|
|
56
|
+
});
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
function submit() {
|
|
60
|
+
formStore.get<ICustomData.FormTable>(props.id).then((cache) => {
|
|
61
|
+
// 序列化掉代理数据,获取源数据
|
|
62
|
+
cache.form!.formConfig = JSON.parse(JSON.stringify([...list.value]));
|
|
63
|
+
formStore.set(props.id, cache).then(() => {
|
|
64
|
+
emit('success', cache);
|
|
65
|
+
});
|
|
66
|
+
});
|
|
67
|
+
}
|
|
68
|
+
</script>
|
|
69
|
+
<style scoped lang="scss">
|
|
70
|
+
.ghost {
|
|
71
|
+
opacity: 0.5;
|
|
72
|
+
background: #48c9b0;
|
|
73
|
+
}
|
|
74
|
+
:deep(.el-input__wrapper) {
|
|
75
|
+
box-shadow: none;
|
|
76
|
+
background-color: transparent;
|
|
77
|
+
}
|
|
78
|
+
:deep(.el-input__wrapper.is-focus) {
|
|
79
|
+
box-shadow: 0 0 0 1px var(--el-input-focus-border-color) inset;
|
|
80
|
+
}
|
|
81
|
+
ul {
|
|
82
|
+
&.head {
|
|
83
|
+
background-color: #f5f5f5;
|
|
84
|
+
border: 1px solid #f5f5f5;
|
|
85
|
+
}
|
|
86
|
+
li {
|
|
87
|
+
height: 34px;
|
|
88
|
+
display: flex;
|
|
89
|
+
align-items: center;
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
</style>
|