yuang-framework-ui-pc 1.0.20 → 1.2.1
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 +17 -41
- package/es/ele-admin-layout/components/layout-skeleton.d.ts +10 -0
- package/es/ele-admin-layout/components/layout-skeleton.js +47 -0
- package/es/ele-admin-layout/components/layout-tabs.d.ts +64 -0
- package/es/ele-admin-layout/components/layout-tabs.js +132 -0
- package/es/ele-admin-layout/components/layout-tool.d.ts +2 -0
- package/es/ele-admin-layout/components/layout-tool.js +21 -0
- package/es/ele-admin-layout/index.d.ts +293 -0
- package/es/ele-admin-layout/index.js +693 -0
- package/es/ele-admin-layout/props.d.ts +182 -0
- package/es/ele-admin-layout/props.js +169 -0
- package/es/ele-admin-layout/style/css-var.scss +14 -0
- package/es/ele-admin-layout/style/header.scss +192 -0
- package/es/ele-admin-layout/style/index.d.ts +1 -0
- package/es/ele-admin-layout/style/index.js +9 -0
- package/es/ele-admin-layout/style/index.scss +313 -0
- package/es/ele-admin-layout/style/sidebar.scss +187 -0
- package/es/ele-admin-layout/style/tabs.scss +59 -0
- package/es/ele-admin-layout/types.d.ts +54 -0
- package/es/ele-app/components/message-body.d.ts +46 -0
- package/es/ele-app/components/message-body.js +98 -0
- package/es/ele-app/components/message-box-icon.d.ts +31 -0
- package/es/ele-app/components/message-box-icon.js +63 -0
- package/es/ele-app/el.d.ts +304 -0
- package/es/ele-app/index.d.ts +4 -0
- package/es/ele-app/index.js +13 -0
- package/es/ele-app/plus.d.ts +181 -0
- package/es/ele-app/style/common/index.d.ts +1 -0
- package/es/ele-app/style/common/index.js +1 -0
- package/es/ele-app/style/common/index.scss +55 -0
- package/es/ele-app/style/css-var.scss +11 -0
- package/es/ele-app/style/index.d.ts +1 -0
- package/es/ele-app/style/index.js +4 -0
- package/es/ele-app/style/index.scss +4 -0
- package/es/ele-app/style/message/css-var.scss +8 -0
- package/es/ele-app/style/message/index.d.ts +1 -0
- package/es/ele-app/style/message/index.js +2 -0
- package/es/ele-app/style/message/index.scss +261 -0
- package/es/ele-app/style/overwrite/autocomplete/css-var.scss +8 -0
- package/es/ele-app/style/overwrite/autocomplete/index.d.ts +1 -0
- package/es/ele-app/style/overwrite/autocomplete/index.js +1 -0
- package/es/ele-app/style/overwrite/autocomplete/index.scss +33 -0
- package/es/ele-app/style/overwrite/backtop/index.d.ts +1 -0
- package/es/ele-app/style/overwrite/backtop/index.js +1 -0
- package/es/ele-app/style/overwrite/backtop/index.scss +8 -0
- package/es/ele-app/style/overwrite/cascader/css-var.scss +8 -0
- package/es/ele-app/style/overwrite/cascader/index.d.ts +1 -0
- package/es/ele-app/style/overwrite/cascader/index.js +1 -0
- package/es/ele-app/style/overwrite/cascader/index.scss +166 -0
- package/es/ele-app/style/overwrite/checkbox/css-var.scss +8 -0
- package/es/ele-app/style/overwrite/checkbox/index.d.ts +1 -0
- package/es/ele-app/style/overwrite/checkbox/index.js +1 -0
- package/es/ele-app/style/overwrite/checkbox/index.scss +161 -0
- package/es/ele-app/style/overwrite/color-picker/index.d.ts +1 -0
- package/es/ele-app/style/overwrite/color-picker/index.js +1 -0
- package/es/ele-app/style/overwrite/color-picker/index.scss +42 -0
- package/es/ele-app/style/overwrite/css-var.scss +33 -0
- package/es/ele-app/style/overwrite/date-picker/css-var.scss +16 -0
- package/es/ele-app/style/overwrite/date-picker/index.d.ts +1 -0
- package/es/ele-app/style/overwrite/date-picker/index.js +1 -0
- package/es/ele-app/style/overwrite/date-picker/index.scss +895 -0
- package/es/ele-app/style/overwrite/descriptions/css-var.scss +8 -0
- package/es/ele-app/style/overwrite/descriptions/index.d.ts +1 -0
- package/es/ele-app/style/overwrite/descriptions/index.js +1 -0
- package/es/ele-app/style/overwrite/descriptions/index.scss +52 -0
- package/es/ele-app/style/overwrite/index.d.ts +1 -0
- package/es/ele-app/style/overwrite/index.js +16 -0
- package/es/ele-app/style/overwrite/index.scss +16 -0
- package/es/ele-app/style/overwrite/input/css-var.scss +34 -0
- package/es/ele-app/style/overwrite/input/index.d.ts +1 -0
- package/es/ele-app/style/overwrite/input/index.js +1 -0
- package/es/ele-app/style/overwrite/input/index.scss +540 -0
- package/es/ele-app/style/overwrite/message-box/css-var.scss +8 -0
- package/es/ele-app/style/overwrite/message-box/index.d.ts +1 -0
- package/es/ele-app/style/overwrite/message-box/index.js +2 -0
- package/es/ele-app/style/overwrite/message-box/index.scss +148 -0
- package/es/ele-app/style/overwrite/notification/css-var.scss +8 -0
- package/es/ele-app/style/overwrite/notification/index.d.ts +1 -0
- package/es/ele-app/style/overwrite/notification/index.js +2 -0
- package/es/ele-app/style/overwrite/notification/index.scss +65 -0
- package/es/ele-app/style/overwrite/popper/css-var.scss +14 -0
- package/es/ele-app/style/overwrite/popper/index.d.ts +1 -0
- package/es/ele-app/style/overwrite/popper/index.js +1 -0
- package/es/ele-app/style/overwrite/popper/index.scss +9 -0
- package/es/ele-app/style/overwrite/radio/css-var.scss +8 -0
- package/es/ele-app/style/overwrite/radio/index.d.ts +1 -0
- package/es/ele-app/style/overwrite/radio/index.js +1 -0
- package/es/ele-app/style/overwrite/radio/index.scss +128 -0
- package/es/ele-app/style/overwrite/select/css-var.scss +8 -0
- package/es/ele-app/style/overwrite/select/index.d.ts +1 -0
- package/es/ele-app/style/overwrite/select/index.js +1 -0
- package/es/ele-app/style/overwrite/select/index.scss +203 -0
- package/es/ele-app/style/overwrite/tag/css-var.scss +8 -0
- package/es/ele-app/style/overwrite/tag/index.d.ts +1 -0
- package/es/ele-app/style/overwrite/tag/index.js +1 -0
- package/es/ele-app/style/overwrite/tag/index.scss +346 -0
- package/es/ele-app/style/overwrite/tree/css-var.scss +8 -0
- package/es/ele-app/style/overwrite/tree/index.d.ts +1 -0
- package/es/ele-app/style/overwrite/tree/index.js +1 -0
- package/es/ele-app/style/overwrite/tree/index.scss +106 -0
- package/es/ele-app/style/overwrite/tree-select/css-var.scss +8 -0
- package/es/ele-app/style/overwrite/tree-select/index.d.ts +1 -0
- package/es/ele-app/style/overwrite/tree-select/index.js +1 -0
- package/es/ele-app/style/overwrite/tree-select/index.scss +108 -0
- package/es/ele-app/style/scrollbar/css-var.scss +71 -0
- package/es/ele-app/style/scrollbar/index.d.ts +1 -0
- package/es/ele-app/style/scrollbar/index.js +1 -0
- package/es/ele-app/style/scrollbar/index.scss +9 -0
- package/es/ele-app/types.d.ts +48 -0
- package/es/ele-pro-layout/components/pro-iframe.vue +120 -0
- package/es/ele-pro-layout/index.vue +1277 -0
- package/es/ele-pro-layout/props.ts +255 -0
- package/es/ele-pro-layout/style/index.scss +41 -0
- package/es/ele-pro-layout/style/index.ts +2 -0
- package/es/ele-pro-layout/types.ts +212 -0
- package/es/ele-pro-layout/util.ts +277 -0
- package/es/ele-tabs/index.d.ts +149 -0
- package/es/ele-tabs/index.js +480 -0
- package/es/ele-tabs/props.d.ts +82 -0
- package/es/ele-tabs/props.js +46 -0
- package/es/ele-tabs/style/css-var.scss +8 -0
- package/es/ele-tabs/style/index.d.ts +1 -0
- package/es/ele-tabs/style/index.js +5 -0
- package/es/ele-tabs/style/index.scss +1074 -0
- package/es/ele-tabs/types.d.ts +70 -0
- package/es/icons/AnalysisOutlined.d.ts +2 -0
- package/es/icons/AnalysisOutlined.js +35 -0
- package/es/icons/ApplicationOutlined.d.ts +2 -0
- package/es/icons/ApplicationOutlined.js +26 -0
- package/es/icons/AppstoreAddOutlined.d.ts +2 -0
- package/es/icons/AppstoreAddOutlined.js +35 -0
- package/es/icons/AppstoreOutlined.d.ts +2 -0
- package/es/icons/AppstoreOutlined.js +35 -0
- package/es/icons/ArrowDown.d.ts +2 -0
- package/es/icons/ArrowDown.js +31 -0
- package/es/icons/ArrowDownOutlined.d.ts +2 -0
- package/es/icons/ArrowDownOutlined.js +30 -0
- package/es/icons/ArrowLeft.d.ts +2 -0
- package/es/icons/ArrowLeft.js +31 -0
- package/es/icons/ArrowLeftOutlined.d.ts +2 -0
- package/es/icons/ArrowLeftOutlined.js +30 -0
- package/es/icons/ArrowRight.d.ts +2 -0
- package/es/icons/ArrowRight.js +31 -0
- package/es/icons/ArrowRightOutlined.d.ts +2 -0
- package/es/icons/ArrowRightOutlined.js +30 -0
- package/es/icons/ArrowUp.d.ts +2 -0
- package/es/icons/ArrowUp.js +31 -0
- package/es/icons/ArrowUpOutlined.d.ts +2 -0
- package/es/icons/ArrowUpOutlined.js +30 -0
- package/es/icons/BellOutlined.d.ts +2 -0
- package/es/icons/BellOutlined.js +29 -0
- package/es/icons/BookOutlined.d.ts +2 -0
- package/es/icons/BookOutlined.js +29 -0
- package/es/icons/CalendarOutlined.d.ts +2 -0
- package/es/icons/CalendarOutlined.js +29 -0
- package/es/icons/CaretDownFilled.d.ts +2 -0
- package/es/icons/CaretDownFilled.js +26 -0
- package/es/icons/CaretUpFilled.d.ts +2 -0
- package/es/icons/CaretUpFilled.js +26 -0
- package/es/icons/CheckCircleFilled.d.ts +2 -0
- package/es/icons/CheckCircleFilled.js +26 -0
- package/es/icons/CheckCircleOutlined.d.ts +2 -0
- package/es/icons/CheckCircleOutlined.js +32 -0
- package/es/icons/CheckOutlined.d.ts +2 -0
- package/es/icons/CheckOutlined.js +30 -0
- package/es/icons/CityOutlined.d.ts +2 -0
- package/es/icons/CityOutlined.js +35 -0
- package/es/icons/ClockCircleOutlined.d.ts +2 -0
- package/es/icons/ClockCircleOutlined.js +32 -0
- package/es/icons/CloseCircleFilled.d.ts +2 -0
- package/es/icons/CloseCircleFilled.js +26 -0
- package/es/icons/CloseCircleOutlined.d.ts +2 -0
- package/es/icons/CloseCircleOutlined.js +31 -0
- package/es/icons/CloseOutlined.d.ts +2 -0
- package/es/icons/CloseOutlined.js +30 -0
- package/es/icons/CloudUploadOutlined.d.ts +2 -0
- package/es/icons/CloudUploadOutlined.js +32 -0
- package/es/icons/ClusterOutlined.d.ts +2 -0
- package/es/icons/ClusterOutlined.js +29 -0
- package/es/icons/CodeOutlined.d.ts +2 -0
- package/es/icons/CodeOutlined.js +34 -0
- package/es/icons/ColumnHeightOutlined.d.ts +2 -0
- package/es/icons/ColumnHeightOutlined.js +35 -0
- package/es/icons/CompassOutlined.d.ts +2 -0
- package/es/icons/CompassOutlined.js +34 -0
- package/es/icons/CompressOutlined.d.ts +2 -0
- package/es/icons/CompressOutlined.js +36 -0
- package/es/icons/ConnectionOutlined.d.ts +2 -0
- package/es/icons/ConnectionOutlined.js +31 -0
- package/es/icons/ControlOutlined.d.ts +2 -0
- package/es/icons/ControlOutlined.js +33 -0
- package/es/icons/CopyOutlined.d.ts +2 -0
- package/es/icons/CopyOutlined.js +35 -0
- package/es/icons/CornerLeftFilled.d.ts +2 -0
- package/es/icons/CornerLeftFilled.js +26 -0
- package/es/icons/CornerRightFilled.d.ts +2 -0
- package/es/icons/CornerRightFilled.js +26 -0
- package/es/icons/CpuOutlined.d.ts +2 -0
- package/es/icons/CpuOutlined.js +30 -0
- package/es/icons/DashboardOutlined.d.ts +2 -0
- package/es/icons/DashboardOutlined.js +37 -0
- package/es/icons/DatabaseOutlined.d.ts +2 -0
- package/es/icons/DatabaseOutlined.js +35 -0
- package/es/icons/DeleteOutlined.d.ts +2 -0
- package/es/icons/DeleteOutlined.js +34 -0
- package/es/icons/DesktopOutlined.d.ts +2 -0
- package/es/icons/DesktopOutlined.js +29 -0
- package/es/icons/DownloadOutlined.d.ts +2 -0
- package/es/icons/DownloadOutlined.js +32 -0
- package/es/icons/DragOutlined.d.ts +2 -0
- package/es/icons/DragOutlined.js +30 -0
- package/es/icons/EditOutlined.d.ts +2 -0
- package/es/icons/EditOutlined.js +32 -0
- package/es/icons/EllipsisOutlined.d.ts +2 -0
- package/es/icons/EllipsisOutlined.js +42 -0
- package/es/icons/EnvironmentOutlined.d.ts +2 -0
- package/es/icons/EnvironmentOutlined.js +31 -0
- package/es/icons/ExclamationCircleFilled.d.ts +2 -0
- package/es/icons/ExclamationCircleFilled.js +26 -0
- package/es/icons/ExpandOutlined.d.ts +2 -0
- package/es/icons/ExpandOutlined.js +36 -0
- package/es/icons/EyeOutlined.d.ts +2 -0
- package/es/icons/EyeOutlined.js +30 -0
- package/es/icons/FileOutlined.d.ts +2 -0
- package/es/icons/FileOutlined.js +35 -0
- package/es/icons/FilterFilled.d.ts +2 -0
- package/es/icons/FilterFilled.js +26 -0
- package/es/icons/FolderAddOutlined.d.ts +2 -0
- package/es/icons/FolderAddOutlined.js +31 -0
- package/es/icons/FolderOutlined.d.ts +2 -0
- package/es/icons/FolderOutlined.js +29 -0
- package/es/icons/FormOutlined.d.ts +2 -0
- package/es/icons/FormOutlined.js +31 -0
- package/es/icons/FullscreenExitOutlined.d.ts +2 -0
- package/es/icons/FullscreenExitOutlined.js +34 -0
- package/es/icons/FullscreenOutlined.d.ts +2 -0
- package/es/icons/FullscreenOutlined.js +34 -0
- package/es/icons/FundOutlined.d.ts +2 -0
- package/es/icons/FundOutlined.js +31 -0
- package/es/icons/GlobalOutlined.d.ts +2 -0
- package/es/icons/GlobalOutlined.js +28 -0
- package/es/icons/HolderOutlined.d.ts +2 -0
- package/es/icons/HolderOutlined.js +26 -0
- package/es/icons/HomeOutlined.d.ts +2 -0
- package/es/icons/HomeOutlined.js +29 -0
- package/es/icons/IdcardOutlined.d.ts +2 -0
- package/es/icons/IdcardOutlined.js +38 -0
- package/es/icons/InfoCircleFilled.d.ts +2 -0
- package/es/icons/InfoCircleFilled.js +26 -0
- package/es/icons/LinkOutlined.d.ts +2 -0
- package/es/icons/LinkOutlined.js +32 -0
- package/es/icons/LoadingDotOutlined.d.ts +2 -0
- package/es/icons/LoadingDotOutlined.js +29 -0
- package/es/icons/LoadingOutlined.d.ts +2 -0
- package/es/icons/LoadingOutlined.js +29 -0
- package/es/icons/LockOutlined.d.ts +2 -0
- package/es/icons/LockOutlined.js +32 -0
- package/es/icons/LogOutlined.d.ts +2 -0
- package/es/icons/LogOutlined.js +35 -0
- package/es/icons/LogoutOutlined.d.ts +2 -0
- package/es/icons/LogoutOutlined.js +31 -0
- package/es/icons/MailOutlined.d.ts +2 -0
- package/es/icons/MailOutlined.js +29 -0
- package/es/icons/MenuFoldOutlined.d.ts +2 -0
- package/es/icons/MenuFoldOutlined.js +28 -0
- package/es/icons/MenuOutlined.d.ts +2 -0
- package/es/icons/MenuOutlined.js +32 -0
- package/es/icons/MenuUnfoldOutlined.d.ts +2 -0
- package/es/icons/MenuUnfoldOutlined.js +28 -0
- package/es/icons/MessageOutlined.d.ts +2 -0
- package/es/icons/MessageOutlined.js +50 -0
- package/es/icons/MinusCircleOutlined.d.ts +2 -0
- package/es/icons/MinusCircleOutlined.js +31 -0
- package/es/icons/MobileOutlined.d.ts +2 -0
- package/es/icons/MobileOutlined.js +37 -0
- package/es/icons/MoonOutlined.d.ts +2 -0
- package/es/icons/MoonOutlined.js +29 -0
- package/es/icons/MoreOutlined.d.ts +2 -0
- package/es/icons/MoreOutlined.js +42 -0
- package/es/icons/PauseFilled.d.ts +2 -0
- package/es/icons/PauseFilled.js +30 -0
- package/es/icons/PieChartOutlined.d.ts +2 -0
- package/es/icons/PieChartOutlined.js +31 -0
- package/es/icons/PlayFilled.d.ts +2 -0
- package/es/icons/PlayFilled.js +26 -0
- package/es/icons/PlusCircleOutlined.d.ts +2 -0
- package/es/icons/PlusCircleOutlined.js +31 -0
- package/es/icons/PlusOutlined.d.ts +2 -0
- package/es/icons/PlusOutlined.js +29 -0
- package/es/icons/PrinterOutlined.d.ts +2 -0
- package/es/icons/PrinterOutlined.js +29 -0
- package/es/icons/ProtectOutlined.d.ts +2 -0
- package/es/icons/ProtectOutlined.js +32 -0
- package/es/icons/QuestionCircleFilled.d.ts +2 -0
- package/es/icons/QuestionCircleFilled.js +26 -0
- package/es/icons/QuestionCircleOutlined.d.ts +2 -0
- package/es/icons/QuestionCircleOutlined.js +39 -0
- package/es/icons/ReloadOutlined.d.ts +2 -0
- package/es/icons/ReloadOutlined.js +30 -0
- package/es/icons/ResizeOutlined.d.ts +2 -0
- package/es/icons/ResizeOutlined.js +30 -0
- package/es/icons/SearchOutlined.d.ts +2 -0
- package/es/icons/SearchOutlined.js +29 -0
- package/es/icons/SettingOutlined.d.ts +2 -0
- package/es/icons/SettingOutlined.js +31 -0
- package/es/icons/ShoppingOutlined.d.ts +2 -0
- package/es/icons/ShoppingOutlined.js +29 -0
- package/es/icons/SizeCompactOutlined.d.ts +2 -0
- package/es/icons/SizeCompactOutlined.js +34 -0
- package/es/icons/SizeMiddleOutlined.d.ts +2 -0
- package/es/icons/SizeMiddleOutlined.js +34 -0
- package/es/icons/SizeSlackOutlined.d.ts +2 -0
- package/es/icons/SizeSlackOutlined.js +34 -0
- package/es/icons/SortOutlined.d.ts +2 -0
- package/es/icons/SortOutlined.js +32 -0
- package/es/icons/StarFilled.d.ts +2 -0
- package/es/icons/StarFilled.js +26 -0
- package/es/icons/StepBackwardFilled.d.ts +2 -0
- package/es/icons/StepBackwardFilled.js +33 -0
- package/es/icons/StepForwardFilled.d.ts +2 -0
- package/es/icons/StepForwardFilled.js +33 -0
- package/es/icons/SuitcaseOutlined.d.ts +2 -0
- package/es/icons/SuitcaseOutlined.js +29 -0
- package/es/icons/SunOutlined.d.ts +2 -0
- package/es/icons/SunOutlined.js +29 -0
- package/es/icons/SwapOutlined.d.ts +2 -0
- package/es/icons/SwapOutlined.js +32 -0
- package/es/icons/SyncOutlined.d.ts +2 -0
- package/es/icons/SyncOutlined.js +32 -0
- package/es/icons/TableOutlined.d.ts +2 -0
- package/es/icons/TableOutlined.js +29 -0
- package/es/icons/TagOutlined.d.ts +2 -0
- package/es/icons/TagOutlined.js +31 -0
- package/es/icons/TimerOutlined.d.ts +2 -0
- package/es/icons/TimerOutlined.js +31 -0
- package/es/icons/UndoOutlined.d.ts +2 -0
- package/es/icons/UndoOutlined.js +30 -0
- package/es/icons/UnlockOutlined.d.ts +2 -0
- package/es/icons/UnlockOutlined.js +32 -0
- package/es/icons/UploadOutlined.d.ts +2 -0
- package/es/icons/UploadOutlined.js +32 -0
- package/es/icons/UserOutlined.d.ts +2 -0
- package/es/icons/UserOutlined.js +29 -0
- package/es/icons/VerticalAlignMiddleOutlined.d.ts +2 -0
- package/es/icons/VerticalAlignMiddleOutlined.js +32 -0
- package/es/icons/VerticalLeftOutlined.d.ts +2 -0
- package/es/icons/VerticalLeftOutlined.js +28 -0
- package/es/icons/VerticalRightOutlined.d.ts +2 -0
- package/es/icons/VerticalRightOutlined.js +28 -0
- package/es/icons/WarningOutlined.d.ts +2 -0
- package/es/icons/WarningOutlined.js +42 -0
- package/es/icons/ZoomInOutlined.d.ts +2 -0
- package/es/icons/ZoomInOutlined.js +31 -0
- package/es/icons/ZoomOutOutlined.d.ts +2 -0
- package/es/icons/ZoomOutOutlined.js +31 -0
- package/es/icons/index.d.ts +115 -0
- package/es/icons/index.js +232 -0
- package/es/utils/chart-theme-dark.d.ts +373 -0
- package/es/utils/chart-theme-dark.js +397 -0
- package/es/utils/chart-theme.d.ts +368 -0
- package/es/utils/chart-theme.js +392 -0
- package/es/utils/core.d.ts +168 -0
- package/es/utils/core.js +318 -0
- package/es/utils/hook.d.ts +113 -0
- package/es/utils/hook.js +264 -0
- package/es/utils/menu-util.d.ts +14 -0
- package/es/utils/menu-util.js +78 -0
- package/es/utils/message-box.d.ts +25 -0
- package/es/utils/message-box.js +98 -0
- package/es/utils/message.d.ts +66 -0
- package/es/utils/message.js +267 -0
- package/es/utils/resolvers.d.ts +18 -0
- package/es/utils/resolvers.js +50 -0
- package/es/utils/theme-util.d.ts +6 -0
- package/es/utils/theme-util.js +42 -0
- package/es/utils/validate.d.ts +182 -0
- package/es/utils/validate.js +197 -0
- package/package.json +184 -45
- package/typings/global.d.ts +64 -0
- package/dist/favicon.ico +0 -0
- package/dist/style.css +0 -1
- package/dist/yuang-framework-ui-pc.es.js +0 -78
- package/dist/yuang-framework-ui-pc.umd.js +0 -1
- package/lib/utils/vueRouterUtils.ts +0 -30
- package/src/App.vue +0 -31
- package/src/components/YuButton/index.vue +0 -35
- package/src/components/YuRow/index.vue +0 -16
- package/src/components/index.ts +0 -14
- package/src/main.ts +0 -42
- package/src/router/index.ts +0 -26
- package/src/shims-vue.d.ts +0 -10
- package/src/views/components/yu-button/index.vue +0 -15
- package/src/views/exception/403/components/icon-svg.vue +0 -276
- package/src/views/exception/403/index.vue +0 -25
- package/src/views/exception/404/components/icon-svg.vue +0 -288
- package/src/views/exception/404/index.vue +0 -25
- package/src/views/exception/500/components/icon-svg.vue +0 -331
- package/src/views/exception/500/index.vue +0 -25
|
@@ -1,78 +0,0 @@
|
|
|
1
|
-
import { defineComponent as f, getCurrentInstance as m, openBlock as l, createElementBlock as i, createElementVNode as y, resolveComponent as _, createBlock as x, withCtx as e, createVNode as o, createTextVNode as c } from "vue";
|
|
2
|
-
const g = /* @__PURE__ */ f({
|
|
3
|
-
name: "YuButton",
|
|
4
|
-
__name: "index",
|
|
5
|
-
setup(a) {
|
|
6
|
-
const { proxy: t } = m(), r = () => {
|
|
7
|
-
t.$message.success("我是测试按钮");
|
|
8
|
-
};
|
|
9
|
-
return (s, u) => (l(), i("div", null, [
|
|
10
|
-
y("button", { onClick: r }, "我是测试按钮")
|
|
11
|
-
]));
|
|
12
|
-
}
|
|
13
|
-
}), p = (a, t) => {
|
|
14
|
-
const r = a.__vccOpts || a;
|
|
15
|
-
for (const [s, u] of t)
|
|
16
|
-
r[s] = u;
|
|
17
|
-
return r;
|
|
18
|
-
}, k = /* @__PURE__ */ p(g, [["__scopeId", "data-v-d865be7e"]]), w = {
|
|
19
|
-
name: "YuRow"
|
|
20
|
-
};
|
|
21
|
-
function B(a, t, r, s, u, v) {
|
|
22
|
-
const n = _("el-button"), d = _("el-row");
|
|
23
|
-
return l(), x(d, { class: "mb-4" }, {
|
|
24
|
-
default: e(() => [
|
|
25
|
-
o(n, null, {
|
|
26
|
-
default: e(() => [
|
|
27
|
-
c("Default")
|
|
28
|
-
]),
|
|
29
|
-
_: 1
|
|
30
|
-
}),
|
|
31
|
-
o(n, { type: "primary" }, {
|
|
32
|
-
default: e(() => [
|
|
33
|
-
c("Primary")
|
|
34
|
-
]),
|
|
35
|
-
_: 1
|
|
36
|
-
}),
|
|
37
|
-
o(n, { type: "success" }, {
|
|
38
|
-
default: e(() => [
|
|
39
|
-
c("Success")
|
|
40
|
-
]),
|
|
41
|
-
_: 1
|
|
42
|
-
}),
|
|
43
|
-
o(n, { type: "info" }, {
|
|
44
|
-
default: e(() => [
|
|
45
|
-
c("Info")
|
|
46
|
-
]),
|
|
47
|
-
_: 1
|
|
48
|
-
}),
|
|
49
|
-
o(n, { type: "warning" }, {
|
|
50
|
-
default: e(() => [
|
|
51
|
-
c("Warning")
|
|
52
|
-
]),
|
|
53
|
-
_: 1
|
|
54
|
-
}),
|
|
55
|
-
o(n, { type: "danger" }, {
|
|
56
|
-
default: e(() => [
|
|
57
|
-
c("Danger")
|
|
58
|
-
]),
|
|
59
|
-
_: 1
|
|
60
|
-
}),
|
|
61
|
-
o(n, null, {
|
|
62
|
-
default: e(() => [
|
|
63
|
-
c("中文")
|
|
64
|
-
]),
|
|
65
|
-
_: 1
|
|
66
|
-
})
|
|
67
|
-
]),
|
|
68
|
-
_: 1
|
|
69
|
-
});
|
|
70
|
-
}
|
|
71
|
-
const $ = /* @__PURE__ */ p(w, [["render", B]]), b = [k, $], h = function(a) {
|
|
72
|
-
b.forEach((t) => {
|
|
73
|
-
a.component(t.name, t);
|
|
74
|
-
});
|
|
75
|
-
};
|
|
76
|
-
export {
|
|
77
|
-
h as default
|
|
78
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
(function(e,c){typeof exports=="object"&&typeof module<"u"?module.exports=c(require("vue")):typeof define=="function"&&define.amd?define(["vue"],c):(e=typeof globalThis<"u"?globalThis:e||self,e["yuang-framework-ui-pc"]=c(e.Vue))})(this,function(e){"use strict";const c=e.defineComponent({name:"YuButton",__name:"index",setup(o){const{proxy:t}=e.getCurrentInstance(),r=()=>{t.$message.success("我是测试按钮")};return(a,s)=>(e.openBlock(),e.createElementBlock("div",null,[e.createElementVNode("button",{onClick:r},"我是测试按钮")]))}}),d=(o,t)=>{const r=o.__vccOpts||o;for(const[a,s]of t)r[a]=s;return r},i=d(c,[["__scopeId","data-v-d865be7e"]]),l={name:"YuRow"};function _(o,t,r,a,s,u){const n=e.resolveComponent("el-button"),p=e.resolveComponent("el-row");return e.openBlock(),e.createBlock(p,{class:"mb-4"},{default:e.withCtx(()=>[e.createVNode(n,null,{default:e.withCtx(()=>[e.createTextVNode("Default")]),_:1}),e.createVNode(n,{type:"primary"},{default:e.withCtx(()=>[e.createTextVNode("Primary")]),_:1}),e.createVNode(n,{type:"success"},{default:e.withCtx(()=>[e.createTextVNode("Success")]),_:1}),e.createVNode(n,{type:"info"},{default:e.withCtx(()=>[e.createTextVNode("Info")]),_:1}),e.createVNode(n,{type:"warning"},{default:e.withCtx(()=>[e.createTextVNode("Warning")]),_:1}),e.createVNode(n,{type:"danger"},{default:e.withCtx(()=>[e.createTextVNode("Danger")]),_:1}),e.createVNode(n,null,{default:e.withCtx(()=>[e.createTextVNode("中文")]),_:1})]),_:1})}const f=[i,d(l,[["render",_]])];return function(o){f.forEach(t=>{o.component(t.name,t)})}});
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
const getExceptionRoutes = () => {
|
|
2
|
-
return [
|
|
3
|
-
{
|
|
4
|
-
path: '/exception/403',
|
|
5
|
-
component: () => import('../../src/views/exception/403/index.vue'),
|
|
6
|
-
meta: {
|
|
7
|
-
title: '403'
|
|
8
|
-
}
|
|
9
|
-
},
|
|
10
|
-
{
|
|
11
|
-
path: '/exception/500',
|
|
12
|
-
component: () => import('../../src/views/exception/500/index.vue'),
|
|
13
|
-
meta: {
|
|
14
|
-
title: '500'
|
|
15
|
-
}
|
|
16
|
-
},
|
|
17
|
-
{
|
|
18
|
-
path: '/:path(.*)*',
|
|
19
|
-
component: () => import('../../src/views/exception/404/index.vue'),
|
|
20
|
-
meta: {
|
|
21
|
-
title: '404'
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
];
|
|
25
|
-
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
export {
|
|
29
|
-
getExceptionRoutes
|
|
30
|
-
}
|
package/src/App.vue
DELETED
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<RouterView v-if="isShowRouterView"/>
|
|
3
|
-
</template>
|
|
4
|
-
<script setup lang="ts">
|
|
5
|
-
import {RouterView} from 'vue-router'
|
|
6
|
-
import {onBeforeMount, ref, getCurrentInstance} from 'vue';
|
|
7
|
-
import {initGateway} from 'yuang-framework-ui-common/lib/utils/gatewayUtils'
|
|
8
|
-
|
|
9
|
-
let isShowRouterView = ref(false);
|
|
10
|
-
|
|
11
|
-
const {proxy} = getCurrentInstance() as any;
|
|
12
|
-
|
|
13
|
-
onBeforeMount(async () => {
|
|
14
|
-
await initGateway();
|
|
15
|
-
isShowRouterView.value = true;
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
// proxy.$http.post("/sso-api/server/sso/login", {}).then((res: any) => {
|
|
19
|
-
// if (res.data.statusCode != 200) {
|
|
20
|
-
// return proxy.$message.error(res.data.message);
|
|
21
|
-
// }
|
|
22
|
-
// });
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
})
|
|
26
|
-
</script>
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
<style scoped>
|
|
30
|
-
|
|
31
|
-
</style>
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div>
|
|
3
|
-
<button @click="clickButton">我是测试按钮</button>
|
|
4
|
-
</div>
|
|
5
|
-
</template>
|
|
6
|
-
|
|
7
|
-
<!--<script lang="ts">-->
|
|
8
|
-
<!--// 必须返回name属性,否则无法注册组件-->
|
|
9
|
-
<!--// 在 <script lang="ts" setup name="YuButton"> 刚开始可以生效,后面不知道为啥不生效了-->
|
|
10
|
-
<!--export default {-->
|
|
11
|
-
<!-- name: "YuButton",-->
|
|
12
|
-
<!--};-->
|
|
13
|
-
<!--</script>-->
|
|
14
|
-
<script lang="ts" setup>
|
|
15
|
-
import {getCurrentInstance} from 'vue';
|
|
16
|
-
|
|
17
|
-
defineOptions({ name: 'YuButton' });
|
|
18
|
-
const {proxy} = getCurrentInstance() as any;
|
|
19
|
-
|
|
20
|
-
const clickButton = () => {
|
|
21
|
-
proxy.$message.success('我是测试按钮');
|
|
22
|
-
}
|
|
23
|
-
</script>
|
|
24
|
-
<style scoped>
|
|
25
|
-
button {
|
|
26
|
-
width: 100px;
|
|
27
|
-
height: 50px;
|
|
28
|
-
display: flex;
|
|
29
|
-
align-items: center;
|
|
30
|
-
justify-content: center;
|
|
31
|
-
border: none;
|
|
32
|
-
border-radius: 10px;
|
|
33
|
-
cursor: pointer;
|
|
34
|
-
}
|
|
35
|
-
</style>
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<el-row class="mb-4">
|
|
3
|
-
<el-button>Default</el-button>
|
|
4
|
-
<el-button type="primary">Primary</el-button>
|
|
5
|
-
<el-button type="success">Success</el-button>
|
|
6
|
-
<el-button type="info">Info</el-button>
|
|
7
|
-
<el-button type="warning">Warning</el-button>
|
|
8
|
-
<el-button type="danger">Danger</el-button>
|
|
9
|
-
<el-button>中文</el-button>
|
|
10
|
-
</el-row>
|
|
11
|
-
</template>
|
|
12
|
-
<script>
|
|
13
|
-
export default {
|
|
14
|
-
name: 'YuRow'
|
|
15
|
-
}
|
|
16
|
-
</script>
|
package/src/components/index.ts
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
// 引入封装好的组件
|
|
2
|
-
import YuButton from "./YuButton/index.vue";
|
|
3
|
-
import YuRow from "./YuRow/index.vue";
|
|
4
|
-
// 将来如果有其它组件,都可以写到这个数组里
|
|
5
|
-
const components = [ YuButton, YuRow ];
|
|
6
|
-
|
|
7
|
-
// 批量组件注册
|
|
8
|
-
const install = function (Vue) {
|
|
9
|
-
components.forEach((component) => {
|
|
10
|
-
Vue.component(component.name, component);
|
|
11
|
-
});
|
|
12
|
-
};
|
|
13
|
-
|
|
14
|
-
export default install;
|
package/src/main.ts
DELETED
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
import { createApp } from 'vue'
|
|
3
|
-
import { createPinia } from 'pinia'
|
|
4
|
-
|
|
5
|
-
import App from './App.vue'
|
|
6
|
-
import router from './router'
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
import ElementPlus from 'element-plus'
|
|
10
|
-
import 'element-plus/dist/index.css'
|
|
11
|
-
import { ElMessage } from 'element-plus'
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
const app = createApp(App)
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
import http from 'yuang-framework-ui-common/lib/config/http';
|
|
19
|
-
|
|
20
|
-
app.config.globalProperties.$http = http;
|
|
21
|
-
app.config.globalProperties.$message = ElMessage
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
app.use(createPinia())
|
|
25
|
-
app.use(router)
|
|
26
|
-
|
|
27
|
-
app.use(ElementPlus)
|
|
28
|
-
|
|
29
|
-
app.mount('#app')
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
/*
|
|
33
|
-
npm config get registry
|
|
34
|
-
|
|
35
|
-
npm config set registry=https://registry.npmjs.org
|
|
36
|
-
npm config set registry=https://registry.npmmirror.com
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
npm run build
|
|
40
|
-
npm publish
|
|
41
|
-
|
|
42
|
-
*/
|
package/src/router/index.ts
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import {createRouter, createWebHistory} from 'vue-router'
|
|
2
|
-
|
|
3
|
-
import {getExceptionRoutes} from '../../lib/utils/vueRouterUtils'
|
|
4
|
-
|
|
5
|
-
const router = createRouter({
|
|
6
|
-
history: createWebHistory(import.meta.env.BASE_URL),
|
|
7
|
-
routes: [
|
|
8
|
-
{
|
|
9
|
-
path: '/components/yu-button/index',
|
|
10
|
-
component: () => import('@/views/components/yu-button/index.vue'),
|
|
11
|
-
meta: {
|
|
12
|
-
title: ''
|
|
13
|
-
}
|
|
14
|
-
},
|
|
15
|
-
...getExceptionRoutes()
|
|
16
|
-
]
|
|
17
|
-
})
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
/* 路由守卫 */
|
|
21
|
-
router.beforeEach(async (to, from, next) => {
|
|
22
|
-
next();
|
|
23
|
-
});
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
export default router
|
package/src/shims-vue.d.ts
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* shims-vue.d.ts文件是一种声明文件,用来告诉TypeScript如何处理.vue文件,填补TypeScript对.vue文件类型识别缺失的文件,为Vue.js的单文件组件提供类型定义支持。
|
|
3
|
-
* 否则会报错:Vue: Could not find a declaration file for module @/components/YuButton/index.
|
|
4
|
-
*/
|
|
5
|
-
/* eslint-disable */
|
|
6
|
-
declare module '*.vue' {
|
|
7
|
-
import type { DefineComponent } from 'vue';
|
|
8
|
-
const component: DefineComponent<{}, {}, any>;
|
|
9
|
-
export default component;
|
|
10
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
|
|
3
|
-
<yu-button></yu-button>
|
|
4
|
-
<yu-row></yu-row>
|
|
5
|
-
</template>
|
|
6
|
-
<script setup lang="ts">
|
|
7
|
-
|
|
8
|
-
import YuButton from '@/components/YuButton/index.vue';
|
|
9
|
-
import YuRow from '@/components/YuRow/index.vue';
|
|
10
|
-
|
|
11
|
-
</script>
|
|
12
|
-
|
|
13
|
-
<style scoped>
|
|
14
|
-
|
|
15
|
-
</style>
|
|
@@ -1,276 +0,0 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<svg width="251" height="294" style="width: auto; height: auto">
|
|
3
|
-
<g fill="none" fillRule="evenodd">
|
|
4
|
-
<path
|
|
5
|
-
d="M0 129.023v-2.084C0 58.364 55.591 2.774 124.165 2.774h2.085c68.574 0 124.165 55.59 124.165 124.165v2.084c0 68.575-55.59 124.166-124.165 124.166h-2.085C55.591 253.189 0 197.598 0 129.023"
|
|
6
|
-
fill="#E4EBF7"
|
|
7
|
-
/>
|
|
8
|
-
<path
|
|
9
|
-
d="M41.417 132.92a8.231 8.231 0 1 1-16.38-1.65 8.231 8.231 0 0 1 16.38 1.65"
|
|
10
|
-
fill="#FFF"
|
|
11
|
-
/>
|
|
12
|
-
<path
|
|
13
|
-
d="M38.652 136.36l10.425 5.91M49.989 148.505l-12.58 10.73"
|
|
14
|
-
stroke="#FFF"
|
|
15
|
-
strokeWidth="2"
|
|
16
|
-
/>
|
|
17
|
-
<path
|
|
18
|
-
d="M41.536 161.28a5.636 5.636 0 1 1-11.216-1.13 5.636 5.636 0 0 1 11.216 1.13M59.154 145.261a5.677 5.677 0 1 1-11.297-1.138 5.677 5.677 0 0 1 11.297 1.138M100.36 29.516l29.66-.013a4.562 4.562 0 1 0-.004-9.126l-29.66.013a4.563 4.563 0 0 0 .005 9.126M111.705 47.754l29.659-.013a4.563 4.563 0 1 0-.004-9.126l-29.66.013a4.563 4.563 0 1 0 .005 9.126"
|
|
19
|
-
fill="#FFF"
|
|
20
|
-
/>
|
|
21
|
-
<path
|
|
22
|
-
d="M114.066 29.503V29.5l15.698-.007a4.563 4.563 0 1 0 .004 9.126l-15.698.007v-.002a4.562 4.562 0 0 0-.004-9.122M185.405 137.723c-.55 5.455-5.418 9.432-10.873 8.882-5.456-.55-9.432-5.418-8.882-10.873.55-5.455 5.418-9.432 10.873-8.882 5.455.55 9.432 5.418 8.882 10.873"
|
|
23
|
-
fill="#FFF"
|
|
24
|
-
/>
|
|
25
|
-
<path
|
|
26
|
-
d="M180.17 143.772l12.572 7.129M193.841 158.42L178.67 171.36"
|
|
27
|
-
stroke="#FFF"
|
|
28
|
-
strokeWidth="2"
|
|
29
|
-
/>
|
|
30
|
-
<path
|
|
31
|
-
d="M185.55 171.926a6.798 6.798 0 1 1-13.528-1.363 6.798 6.798 0 0 1 13.527 1.363M204.12 155.285a6.848 6.848 0 1 1-13.627-1.375 6.848 6.848 0 0 1 13.626 1.375"
|
|
32
|
-
fill="#FFF"
|
|
33
|
-
/>
|
|
34
|
-
<path
|
|
35
|
-
d="M152.988 194.074a2.21 2.21 0 1 1-4.42 0 2.21 2.21 0 0 1 4.42 0zM225.931 118.217a2.21 2.21 0 1 1-4.421 0 2.21 2.21 0 0 1 4.421 0zM217.09 153.051a2.21 2.21 0 1 1-4.421 0 2.21 2.21 0 0 1 4.42 0zM177.84 109.842a2.21 2.21 0 1 1-4.422 0 2.21 2.21 0 0 1 4.421 0zM196.114 94.454a2.21 2.21 0 1 1-4.421 0 2.21 2.21 0 0 1 4.421 0zM202.844 182.523a2.21 2.21 0 1 1-4.42 0 2.21 2.21 0 0 1 4.42 0z"
|
|
36
|
-
stroke="#FFF"
|
|
37
|
-
strokeWidth="2"
|
|
38
|
-
/>
|
|
39
|
-
<path
|
|
40
|
-
stroke="#FFF"
|
|
41
|
-
strokeWidth="2"
|
|
42
|
-
d="M215.125 155.262l-1.902 20.075-10.87 5.958M174.601 176.636l-6.322 9.761H156.98l-4.484 6.449M175.874 127.28V111.56M221.51 119.404l-12.77 7.859-15.228-7.86V96.668"
|
|
43
|
-
/>
|
|
44
|
-
<path
|
|
45
|
-
d="M180.68 29.32C180.68 13.128 193.806 0 210 0c16.193 0 29.32 13.127 29.32 29.32 0 16.194-13.127 29.322-29.32 29.322-16.193 0-29.32-13.128-29.32-29.321"
|
|
46
|
-
fill="#A26EF4"
|
|
47
|
-
/>
|
|
48
|
-
<path
|
|
49
|
-
d="M221.45 41.706l-21.563-.125a1.744 1.744 0 0 1-1.734-1.754l.071-12.23a1.744 1.744 0 0 1 1.754-1.734l21.562.125c.964.006 1.74.791 1.735 1.755l-.071 12.229a1.744 1.744 0 0 1-1.754 1.734"
|
|
50
|
-
fill="#FFF"
|
|
51
|
-
/>
|
|
52
|
-
<path
|
|
53
|
-
d="M215.106 29.192c-.015 2.577-2.049 4.654-4.543 4.64-2.494-.014-4.504-2.115-4.489-4.693l.04-6.925c.016-2.577 2.05-4.654 4.543-4.64 2.494.015 4.504 2.116 4.49 4.693l-.04 6.925zm-4.53-14.074a6.877 6.877 0 0 0-6.916 6.837l-.043 7.368a6.877 6.877 0 0 0 13.754.08l.042-7.368a6.878 6.878 0 0 0-6.837-6.917zM167.566 68.367h-3.93a4.73 4.73 0 0 1-4.717-4.717 4.73 4.73 0 0 1 4.717-4.717h3.93a4.73 4.73 0 0 1 4.717 4.717 4.73 4.73 0 0 1-4.717 4.717"
|
|
54
|
-
fill="#FFF"
|
|
55
|
-
/>
|
|
56
|
-
<path
|
|
57
|
-
d="M168.214 248.838a6.611 6.611 0 0 1-6.61-6.611v-66.108a6.611 6.611 0 0 1 13.221 0v66.108a6.611 6.611 0 0 1-6.61 6.61"
|
|
58
|
-
fill="#5BA02E"
|
|
59
|
-
/>
|
|
60
|
-
<path
|
|
61
|
-
d="M176.147 248.176a6.611 6.611 0 0 1-6.61-6.61v-33.054a6.611 6.611 0 1 1 13.221 0v33.053a6.611 6.611 0 0 1-6.61 6.611"
|
|
62
|
-
fill="#92C110"
|
|
63
|
-
/>
|
|
64
|
-
<path
|
|
65
|
-
d="M185.994 293.89h-27.376a3.17 3.17 0 0 1-3.17-3.17v-45.887a3.17 3.17 0 0 1 3.17-3.17h27.376a3.17 3.17 0 0 1 3.17 3.17v45.886a3.17 3.17 0 0 1-3.17 3.17"
|
|
66
|
-
fill="#F2D7AD"
|
|
67
|
-
/>
|
|
68
|
-
<path
|
|
69
|
-
d="M81.972 147.673s6.377-.927 17.566-1.28c11.729-.371 17.57 1.086 17.57 1.086s3.697-3.855.968-8.424c1.278-12.077 5.982-32.827.335-48.273-1.116-1.339-3.743-1.512-7.536-.62-1.337.315-7.147-.149-7.983-.1l-15.311-.347s-3.487-.17-8.035-.508c-1.512-.113-4.227-1.683-5.458-.338-.406.443-2.425 5.669-1.97 16.077l8.635 35.642s-3.141 3.61 1.219 7.085"
|
|
70
|
-
fill="#FFF"
|
|
71
|
-
/>
|
|
72
|
-
<path
|
|
73
|
-
d="M75.768 73.325l-.9-6.397 11.982-6.52s7.302-.118 8.038 1.205c.737 1.324-5.616.993-5.616.993s-1.836 1.388-2.615 2.5c-1.654 2.363-.986 6.471-8.318 5.986-1.708.284-2.57 2.233-2.57 2.233"
|
|
74
|
-
fill="#FFC6A0"
|
|
75
|
-
/>
|
|
76
|
-
<path
|
|
77
|
-
d="M52.44 77.672s14.217 9.406 24.973 14.444c1.061.497-2.094 16.183-11.892 11.811-7.436-3.318-20.162-8.44-21.482-14.496-.71-3.258 2.543-7.643 8.401-11.76M141.862 80.113s-6.693 2.999-13.844 6.876c-3.894 2.11-10.137 4.704-12.33 7.988-6.224 9.314 3.536 11.22 12.947 7.503 6.71-2.651 28.999-12.127 13.227-22.367"
|
|
78
|
-
fill="#FFB594"
|
|
79
|
-
/>
|
|
80
|
-
<path
|
|
81
|
-
d="M76.166 66.36l3.06 3.881s-2.783 2.67-6.31 5.747c-7.103 6.195-12.803 14.296-15.995 16.44-3.966 2.662-9.754 3.314-12.177-.118-3.553-5.032.464-14.628 31.422-25.95"
|
|
82
|
-
fill="#FFC6A0"
|
|
83
|
-
/>
|
|
84
|
-
<path
|
|
85
|
-
d="M64.674 85.116s-2.34 8.413-8.912 14.447c.652.548 18.586 10.51 22.144 10.056 5.238-.669 6.417-18.968 1.145-20.531-.702-.208-5.901-1.286-8.853-2.167-.87-.26-1.611-1.71-3.545-.936l-1.98-.869zM128.362 85.826s5.318 1.956 7.325 13.734c-.546.274-17.55 12.35-21.829 7.805-6.534-6.94-.766-17.393 4.275-18.61 4.646-1.121 5.03-1.37 10.23-2.929"
|
|
86
|
-
fill="#FFF"
|
|
87
|
-
/>
|
|
88
|
-
<path
|
|
89
|
-
d="M78.18 94.656s.911 7.41-4.914 13.078"
|
|
90
|
-
stroke="#E4EBF7"
|
|
91
|
-
strokeWidth="1.051"
|
|
92
|
-
strokeLinecap="round"
|
|
93
|
-
strokeLinejoin="round"
|
|
94
|
-
/>
|
|
95
|
-
<path
|
|
96
|
-
d="M87.397 94.68s3.124 2.572 10.263 2.572c7.14 0 9.074-3.437 9.074-3.437"
|
|
97
|
-
stroke="#E4EBF7"
|
|
98
|
-
strokeWidth=".932"
|
|
99
|
-
strokeLinecap="round"
|
|
100
|
-
strokeLinejoin="round"
|
|
101
|
-
/>
|
|
102
|
-
<path
|
|
103
|
-
d="M117.184 68.639l-6.781-6.177s-5.355-4.314-9.223-.893c-3.867 3.422 4.463 2.083 5.653 4.165 1.19 2.082.848 1.143-2.083.446-5.603-1.331-2.082.893 2.975 5.355 2.091 1.845 6.992.955 6.992.955l2.467-3.851z"
|
|
104
|
-
fill="#FFC6A0"
|
|
105
|
-
/>
|
|
106
|
-
<path
|
|
107
|
-
d="M105.282 91.315l-.297-10.937-15.918-.027-.53 10.45c-.026.403.17.788.515.999 2.049 1.251 9.387 5.093 15.799.424.287-.21.443-.554.431-.91"
|
|
108
|
-
fill="#FFB594"
|
|
109
|
-
/>
|
|
110
|
-
<path
|
|
111
|
-
d="M107.573 74.24c.817-1.147.982-9.118 1.015-11.928a1.046 1.046 0 0 0-.965-1.055l-4.62-.365c-7.71-1.044-17.071.624-18.253 6.346-5.482 5.813-.421 13.244-.421 13.244s1.963 3.566 4.305 6.791c.756 1.041.398-3.731 3.04-5.929 5.524-4.594 15.899-7.103 15.899-7.103"
|
|
112
|
-
fill="#5C2552"
|
|
113
|
-
/>
|
|
114
|
-
<path
|
|
115
|
-
d="M88.426 83.206s2.685 6.202 11.602 6.522c7.82.28 8.973-7.008 7.434-17.505l-.909-5.483c-6.118-2.897-15.478.54-15.478.54s-.576 2.044-.19 5.504c-2.276 2.066-1.824 5.618-1.824 5.618s-.905-1.922-1.98-2.321c-.86-.32-1.897.089-2.322 1.98-1.04 4.632 3.667 5.145 3.667 5.145"
|
|
116
|
-
fill="#FFC6A0"
|
|
117
|
-
/>
|
|
118
|
-
<path
|
|
119
|
-
stroke="#DB836E"
|
|
120
|
-
strokeWidth="1.145"
|
|
121
|
-
strokeLinecap="round"
|
|
122
|
-
strokeLinejoin="round"
|
|
123
|
-
d="M100.843 77.099l1.701-.928-1.015-4.324.674-1.406"
|
|
124
|
-
/>
|
|
125
|
-
<path
|
|
126
|
-
d="M105.546 74.092c-.022.713-.452 1.279-.96 1.263-.51-.016-.904-.607-.882-1.32.021-.713.452-1.278.96-1.263.51.016.904.607.882 1.32M97.592 74.349c-.022.713-.452 1.278-.961 1.263-.509-.016-.904-.607-.882-1.32.022-.713.452-1.279.961-1.263.51.016.904.606.882 1.32"
|
|
127
|
-
fill="#552950"
|
|
128
|
-
/>
|
|
129
|
-
<path
|
|
130
|
-
d="M91.132 86.786s5.269 4.957 12.679 2.327"
|
|
131
|
-
stroke="#DB836E"
|
|
132
|
-
strokeWidth="1.145"
|
|
133
|
-
strokeLinecap="round"
|
|
134
|
-
strokeLinejoin="round"
|
|
135
|
-
/>
|
|
136
|
-
<path
|
|
137
|
-
d="M99.776 81.903s-3.592.232-1.44-2.79c1.59-1.496 4.897-.46 4.897-.46s1.156 3.906-3.457 3.25"
|
|
138
|
-
fill="#DB836E"
|
|
139
|
-
/>
|
|
140
|
-
<path
|
|
141
|
-
d="M102.88 70.6s2.483.84 3.402.715M93.883 71.975s2.492-1.144 4.778-1.073"
|
|
142
|
-
stroke="#5C2552"
|
|
143
|
-
strokeWidth="1.526"
|
|
144
|
-
strokeLinecap="round"
|
|
145
|
-
strokeLinejoin="round"
|
|
146
|
-
/>
|
|
147
|
-
<path
|
|
148
|
-
d="M86.32 77.374s.961.879 1.458 2.106c-.377.48-1.033 1.152-.236 1.809M99.337 83.719s1.911.151 2.509-.254"
|
|
149
|
-
stroke="#DB836E"
|
|
150
|
-
strokeWidth="1.145"
|
|
151
|
-
strokeLinecap="round"
|
|
152
|
-
strokeLinejoin="round"
|
|
153
|
-
/>
|
|
154
|
-
<path
|
|
155
|
-
d="M87.782 115.821l15.73-3.012M100.165 115.821l10.04-2.008"
|
|
156
|
-
stroke="#E4EBF7"
|
|
157
|
-
strokeWidth="1.051"
|
|
158
|
-
strokeLinecap="round"
|
|
159
|
-
strokeLinejoin="round"
|
|
160
|
-
/>
|
|
161
|
-
<path
|
|
162
|
-
d="M66.508 86.763s-1.598 8.83-6.697 14.078"
|
|
163
|
-
stroke="#E4EBF7"
|
|
164
|
-
strokeWidth="1.114"
|
|
165
|
-
strokeLinecap="round"
|
|
166
|
-
strokeLinejoin="round"
|
|
167
|
-
/>
|
|
168
|
-
<path
|
|
169
|
-
d="M128.31 87.934s3.013 4.121 4.06 11.785"
|
|
170
|
-
stroke="#E4EBF7"
|
|
171
|
-
strokeWidth="1.051"
|
|
172
|
-
strokeLinecap="round"
|
|
173
|
-
strokeLinejoin="round"
|
|
174
|
-
/>
|
|
175
|
-
<path
|
|
176
|
-
d="M64.09 84.816s-6.03 9.912-13.607 9.903"
|
|
177
|
-
stroke="#DB836E"
|
|
178
|
-
strokeWidth=".795"
|
|
179
|
-
strokeLinecap="round"
|
|
180
|
-
strokeLinejoin="round"
|
|
181
|
-
/>
|
|
182
|
-
<path
|
|
183
|
-
d="M112.366 65.909l-.142 5.32s5.993 4.472 11.945 9.202c4.482 3.562 8.888 7.455 10.985 8.662 4.804 2.766 8.9 3.355 11.076 1.808 4.071-2.894 4.373-9.878-8.136-15.263-4.271-1.838-16.144-6.36-25.728-9.73"
|
|
184
|
-
fill="#FFC6A0"
|
|
185
|
-
/>
|
|
186
|
-
<path
|
|
187
|
-
d="M130.532 85.488s4.588 5.757 11.619 6.214"
|
|
188
|
-
stroke="#DB836E"
|
|
189
|
-
strokeWidth=".75"
|
|
190
|
-
strokeLinecap="round"
|
|
191
|
-
strokeLinejoin="round"
|
|
192
|
-
/>
|
|
193
|
-
<path
|
|
194
|
-
d="M121.708 105.73s-.393 8.564-1.34 13.612"
|
|
195
|
-
stroke="#E4EBF7"
|
|
196
|
-
strokeWidth="1.051"
|
|
197
|
-
strokeLinecap="round"
|
|
198
|
-
strokeLinejoin="round"
|
|
199
|
-
/>
|
|
200
|
-
<path
|
|
201
|
-
d="M115.784 161.512s-3.57-1.488-2.678-7.14"
|
|
202
|
-
stroke="#648BD8"
|
|
203
|
-
strokeWidth="1.051"
|
|
204
|
-
strokeLinecap="round"
|
|
205
|
-
strokeLinejoin="round"
|
|
206
|
-
/>
|
|
207
|
-
<path
|
|
208
|
-
d="M101.52 290.246s4.326 2.057 7.408 1.03c2.842-.948 4.564.673 7.132 1.186 2.57.514 6.925 1.108 11.772-1.269-.104-5.551-6.939-4.01-12.048-6.763-2.582-1.39-3.812-4.757-3.625-8.863h-9.471s-1.402 10.596-1.169 14.68"
|
|
209
|
-
fill="#CBD1D1"
|
|
210
|
-
/>
|
|
211
|
-
<path
|
|
212
|
-
d="M101.496 290.073s2.447 1.281 6.809.658c3.081-.44 3.74.485 7.479 1.039 3.739.554 10.802-.07 11.91-.9.415 1.108-.347 2.077-.347 2.077s-1.523.608-4.847.831c-2.045.137-5.843.293-7.663-.507-1.8-1.385-5.286-1.917-5.77-.243-3.947.958-7.41-.288-7.41-.288l-.16-2.667z"
|
|
213
|
-
fill="#2B0849"
|
|
214
|
-
/>
|
|
215
|
-
<path
|
|
216
|
-
d="M108.824 276.19h3.116s-.103 6.751 4.57 8.62c-4.673.624-8.62-2.32-7.686-8.62"
|
|
217
|
-
fill="#A4AABA"
|
|
218
|
-
/>
|
|
219
|
-
<path
|
|
220
|
-
d="M57.65 272.52s-2.122 7.47-4.518 12.396c-1.811 3.724-4.255 7.548 5.505 7.548 6.698 0 9.02-.483 7.479-6.648-1.541-6.164.268-13.296.268-13.296H57.65z"
|
|
221
|
-
fill="#CBD1D1"
|
|
222
|
-
/>
|
|
223
|
-
<path
|
|
224
|
-
d="M51.54 290.04s2.111 1.178 6.682 1.178c6.128 0 8.31-1.662 8.31-1.662s.605 1.122-.624 2.18c-1 .862-3.624 1.603-7.444 1.559-4.177-.049-5.876-.57-6.786-1.177-.831-.554-.692-1.593-.138-2.078"
|
|
225
|
-
fill="#2B0849"
|
|
226
|
-
/>
|
|
227
|
-
<path
|
|
228
|
-
d="M58.533 274.438s.034 1.529-.315 2.95c-.352 1.431-1.087 3.127-1.139 4.17-.058 1.16 4.57 1.592 5.194.035.623-1.559 1.303-6.475 1.927-7.306.622-.831-4.94-2.135-5.667.15"
|
|
229
|
-
fill="#A4AABA"
|
|
230
|
-
/>
|
|
231
|
-
<path
|
|
232
|
-
d="M100.885 277.015l13.306.092s1.291-54.228 1.843-64.056c.552-9.828 3.756-43.13.997-62.788l-12.48-.64-22.725.776s-.433 3.944-1.19 9.921c-.062.493-.677.838-.744 1.358-.075.582.42 1.347.318 1.956-2.35 14.003-6.343 32.926-8.697 46.425-.116.663-1.227 1.004-1.45 2.677-.04.3.21 1.516.112 1.785-6.836 18.643-10.89 47.584-14.2 61.551l14.528-.014s2.185-8.524 4.008-16.878c2.796-12.817 22.987-84.553 22.987-84.553l3-.517 1.037 46.1s-.223 1.228.334 2.008c.558.782-.556 1.117-.39 2.233l.39 1.784s-.446 7.14-.892 11.826c-.446 4.685-.092 38.954-.092 38.954"
|
|
233
|
-
fill="#7BB2F9"
|
|
234
|
-
/>
|
|
235
|
-
<path
|
|
236
|
-
d="M77.438 220.434c1.146.094 4.016-2.008 6.916-4.91M107.55 223.931s2.758-1.103 6.069-3.862"
|
|
237
|
-
stroke="#648BD8"
|
|
238
|
-
strokeWidth="1.051"
|
|
239
|
-
strokeLinecap="round"
|
|
240
|
-
strokeLinejoin="round"
|
|
241
|
-
/>
|
|
242
|
-
<path
|
|
243
|
-
d="M108.459 220.905s2.759-1.104 6.07-3.863"
|
|
244
|
-
stroke="#648BD8"
|
|
245
|
-
strokeLinecap="round"
|
|
246
|
-
strokeLinejoin="round"
|
|
247
|
-
/>
|
|
248
|
-
<path
|
|
249
|
-
d="M76.099 223.557s2.608-.587 6.47-3.346M87.33 150.82c-.27 3.088.297 8.478-4.315 9.073M104.829 149.075s.11 13.936-1.286 14.983c-2.207 1.655-2.975 1.934-2.975 1.934M101.014 149.63s.035 12.81-1.19 24.245M94.93 174.965s7.174-1.655 9.38-1.655M75.671 204.754c-.316 1.55-.64 3.067-.973 4.535 0 0-1.45 1.822-1.003 3.756.446 1.934-.943 2.034-4.96 15.273-1.686 5.559-4.464 18.49-6.313 27.447-.078.38-4.018 18.06-4.093 18.423M77.043 196.743a313.269 313.269 0 0 1-.877 4.729M83.908 151.414l-1.19 10.413s-1.091.148-.496 2.23c.111 1.34-2.66 15.692-5.153 30.267M57.58 272.94h13.238"
|
|
250
|
-
stroke="#648BD8"
|
|
251
|
-
strokeWidth="1.051"
|
|
252
|
-
strokeLinecap="round"
|
|
253
|
-
strokeLinejoin="round"
|
|
254
|
-
/>
|
|
255
|
-
<path
|
|
256
|
-
d="M117.377 147.423s-16.955-3.087-35.7.199c.157 2.501-.002 4.128-.002 4.128s14.607-2.802 35.476-.31c.251-2.342.226-4.017.226-4.017"
|
|
257
|
-
fill="#192064"
|
|
258
|
-
/>
|
|
259
|
-
<path
|
|
260
|
-
d="M107.511 150.353l.004-4.885a.807.807 0 0 0-.774-.81c-2.428-.092-5.04-.108-7.795-.014a.814.814 0 0 0-.784.81l-.003 4.88c0 .456.371.82.827.808a140.76 140.76 0 0 1 7.688.017.81.81 0 0 0 .837-.806"
|
|
261
|
-
fill="#FFF"
|
|
262
|
-
/>
|
|
263
|
-
<path
|
|
264
|
-
d="M106.402 149.426l.002-3.06a.64.64 0 0 0-.616-.643 94.135 94.135 0 0 0-5.834-.009.647.647 0 0 0-.626.643l-.001 3.056c0 .36.291.648.651.64 1.78-.04 3.708-.041 5.762.012.36.009.662-.279.662-.64"
|
|
265
|
-
fill="#192064"
|
|
266
|
-
/>
|
|
267
|
-
<path
|
|
268
|
-
d="M101.485 273.933h12.272M102.652 269.075c.006 3.368.04 5.759.11 6.47M102.667 263.125c-.009 1.53-.015 2.98-.016 4.313M102.204 174.024l.893 44.402s.669 1.561-.224 2.677c-.892 1.116 2.455.67.893 2.231-1.562 1.562.893 1.116 0 3.347-.592 1.48-.988 20.987-1.09 34.956"
|
|
269
|
-
stroke="#648BD8"
|
|
270
|
-
strokeWidth="1.051"
|
|
271
|
-
strokeLinecap="round"
|
|
272
|
-
strokeLinejoin="round"
|
|
273
|
-
/>
|
|
274
|
-
</g>
|
|
275
|
-
</svg>
|
|
276
|
-
</template>
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<ele-page>
|
|
3
|
-
<el-result title="403">
|
|
4
|
-
<template #icon>
|
|
5
|
-
<div style="width: 250px; height: 295px; margin: 20px 0 10px 0">
|
|
6
|
-
<icon-svg />
|
|
7
|
-
</div>
|
|
8
|
-
</template>
|
|
9
|
-
<template #sub-title>
|
|
10
|
-
<ele-text type="placeholder">抱歉, 你无权访问该页面.</ele-text>
|
|
11
|
-
</template>
|
|
12
|
-
<template #extra>
|
|
13
|
-
<router-link to="/" style="display: inline-flex; text-decoration: none">
|
|
14
|
-
<el-button type="primary">返回首页</el-button>
|
|
15
|
-
</router-link>
|
|
16
|
-
</template>
|
|
17
|
-
</el-result>
|
|
18
|
-
</ele-page>
|
|
19
|
-
</template>
|
|
20
|
-
|
|
21
|
-
<script lang="ts" setup>
|
|
22
|
-
import IconSvg from './components/icon-svg.vue';
|
|
23
|
-
|
|
24
|
-
defineOptions({ name: 'Exception403' });
|
|
25
|
-
</script>
|