├── .editorconfig ├── .env.development ├── .env.production ├── .env.staging ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .travis.yml ├── README.md ├── babel.config.js ├── docs └── img │ ├── Libra-Platform平台规划.png │ ├── code-ds.png │ ├── code-gen-list.png │ ├── code-version-list.png │ ├── libra-架构图.jpg │ ├── p-dept-list.png │ ├── p-emp-add.png │ ├── p-emp-list.png │ ├── p-position-list.png │ ├── p-role-list.png │ ├── sentinel.png │ ├── skywaling-1.png │ ├── skywaling-2.png │ ├── skywaling.png │ ├── system-client-list.png │ ├── system-interface-list.png │ ├── system-loglist.png │ ├── system-menu-add.png │ ├── system-menu-interface-add.png │ ├── system-menu-list.png │ ├── tenant-add.png │ ├── tenant-list.png │ ├── tenant-menu-add.png │ ├── tenant-menu-listt.png │ └── 服务监控.png ├── jest.config.js ├── jsconfig.json ├── package.json ├── postcss.config.js ├── public ├── favicon.ico └── index.html ├── src ├── App.vue ├── api │ ├── code │ │ ├── ds.js │ │ ├── onlineCode.js │ │ └── version.js │ ├── personnel │ │ ├── emp.js │ │ ├── org.js │ │ ├── position.js │ │ └── role.js │ ├── system │ │ ├── client.js │ │ ├── interface.js │ │ ├── loginlog.js │ │ ├── menu.js │ │ └── optlog.js │ ├── tenant │ │ ├── menu.js │ │ └── tenant.js │ └── user.js ├── assets │ ├── 401_images │ │ └── 401.gif │ ├── 404_images │ │ ├── 404.png │ │ └── 404_cloud.png │ ├── custom-theme │ │ ├── fonts │ │ │ ├── element-icons.ttf │ │ │ └── element-icons.woff │ │ └── index.css │ ├── libra │ │ ├── Libra-Platform平台规划.png │ │ └── libra-架构图.jpg │ ├── login-button.png │ ├── login-left-top.png │ ├── login.png │ └── logo.png ├── components │ ├── BackToTop │ │ └── index.vue │ ├── Breadcrumb │ │ └── index.vue │ ├── Charts │ │ ├── Keyboard.vue │ │ ├── LineMarker.vue │ │ ├── MixChart.vue │ │ └── mixins │ │ │ └── resize.js │ ├── DndList │ │ └── index.vue │ ├── DragSelect │ │ └── index.vue │ ├── Dropzone │ │ └── index.vue │ ├── ErrorLog │ │ └── index.vue │ ├── GithubCorner │ │ └── index.vue │ ├── Hamburger │ │ └── index.vue │ ├── HeaderSearch │ │ └── index.vue │ ├── ImageCropper │ │ ├── index.vue │ │ └── utils │ │ │ ├── data2blob.js │ │ │ ├── effectRipple.js │ │ │ ├── language.js │ │ │ └── mimes.js │ ├── JsonEditor │ │ └── index.vue │ ├── Kanban │ │ └── index.vue │ ├── LibraTable │ │ └── index.vue │ ├── MDinput │ │ └── index.vue │ ├── MarkdownEditor │ │ ├── default-options.js │ │ └── index.vue │ ├── Pagination │ │ └── index.vue │ ├── PanThumb │ │ └── index.vue │ ├── RightPanel │ │ └── index.vue │ ├── RightToolbar │ │ └── index.vue │ ├── Screenfull │ │ └── index.vue │ ├── Share │ │ └── DropdownMenu.vue │ ├── SizeSelect │ │ └── index.vue │ ├── Sticky │ │ └── index.vue │ ├── SvgIcon │ │ └── index.vue │ ├── TextHoverEffect │ │ └── Mallki.vue │ ├── ThemePicker │ │ └── index.vue │ ├── Tinymce │ │ ├── components │ │ │ └── EditorImage.vue │ │ ├── dynamicLoadScript.js │ │ ├── index.vue │ │ ├── plugins.js │ │ └── toolbar.js │ ├── Upload │ │ ├── SingleImage.vue │ │ ├── SingleImage2.vue │ │ └── SingleImage3.vue │ └── UploadExcel │ │ └── index.vue ├── directive │ ├── clipboard │ │ ├── clipboard.js │ │ └── index.js │ ├── el-drag-dialog │ │ ├── drag.js │ │ └── index.js │ ├── el-table │ │ ├── adaptive.js │ │ └── index.js │ ├── permission │ │ ├── index.js │ │ └── permission.js │ ├── sticky.js │ └── waves │ │ ├── index.js │ │ ├── waves.css │ │ └── waves.js ├── filters │ └── index.js ├── icons │ ├── index.js │ ├── svg │ │ ├── 404.svg │ │ ├── bug.svg │ │ ├── chart.svg │ │ ├── clipboard.svg │ │ ├── component.svg │ │ ├── dashboard.svg │ │ ├── documentation.svg │ │ ├── drag.svg │ │ ├── edit.svg │ │ ├── education.svg │ │ ├── email.svg │ │ ├── example.svg │ │ ├── excel.svg │ │ ├── exit-fullscreen.svg │ │ ├── eye-open.svg │ │ ├── eye.svg │ │ ├── form.svg │ │ ├── fullscreen.svg │ │ ├── guide.svg │ │ ├── icon.svg │ │ ├── international.svg │ │ ├── language.svg │ │ ├── link.svg │ │ ├── list.svg │ │ ├── lock.svg │ │ ├── message.svg │ │ ├── money.svg │ │ ├── nested.svg │ │ ├── password.svg │ │ ├── pdf.svg │ │ ├── people.svg │ │ ├── peoples.svg │ │ ├── qq.svg │ │ ├── search.svg │ │ ├── shopping.svg │ │ ├── size.svg │ │ ├── skill.svg │ │ ├── star.svg │ │ ├── tab.svg │ │ ├── table.svg │ │ ├── theme.svg │ │ ├── tree-table.svg │ │ ├── tree.svg │ │ ├── user.svg │ │ ├── wechat.svg │ │ └── zip.svg │ └── svgo.yml ├── layout │ ├── components │ │ ├── AppMain.vue │ │ ├── Navbar.vue │ │ ├── Settings │ │ │ └── index.vue │ │ ├── Sidebar │ │ │ ├── FixiOSBug.js │ │ │ ├── Item.vue │ │ │ ├── Link.vue │ │ │ ├── Logo.vue │ │ │ ├── SidebarItem.vue │ │ │ └── index.vue │ │ ├── TagsView │ │ │ ├── ScrollPane.vue │ │ │ └── index.vue │ │ ├── WaterMark │ │ │ └── index.vue │ │ └── index.js │ ├── empty.vue │ ├── index.vue │ └── mixin │ │ └── ResizeHandler.js ├── main.js ├── permission.js ├── router │ └── index.js ├── settings.js ├── store │ ├── getters.js │ ├── index.js │ └── modules │ │ ├── app.js │ │ ├── errorLog.js │ │ ├── settings.js │ │ ├── tagsView.js │ │ └── user.js ├── styles │ ├── btn.scss │ ├── element-ui.scss │ ├── element-variables.scss │ ├── index.scss │ ├── mixin.scss │ ├── sidebar.scss │ ├── transition.scss │ └── variables.scss ├── utils │ ├── auth.js │ ├── clipboard.js │ ├── error-log.js │ ├── file.js │ ├── get-page-title.js │ ├── index.js │ ├── open-window.js │ ├── request.js │ ├── scroll-to.js │ ├── storage.js │ └── validate.js └── views │ ├── code │ ├── ds │ │ ├── index.vue │ │ └── js │ │ │ └── constants.js │ ├── online-code │ │ ├── index.vue │ │ └── js │ │ │ └── constants.js │ └── version │ │ ├── index.vue │ │ └── js │ │ └── constants.js │ ├── dashboard │ ├── admin │ │ └── index.vue │ ├── editor │ │ └── index.vue │ └── index.vue │ ├── error-page │ ├── 401.vue │ └── 404.vue │ ├── login │ ├── auth-redirect.vue │ ├── components │ │ └── SocialSignin.vue │ └── index.vue │ ├── personnel │ ├── emp │ │ ├── emp.vue │ │ ├── index.vue │ │ └── js │ │ │ └── constants.js │ ├── org │ │ ├── index.vue │ │ └── js │ │ │ └── constants.js │ ├── position │ │ ├── index.vue │ │ └── js │ │ │ └── constants.js │ └── role │ │ ├── components │ │ ├── PopoverMenu │ │ │ └── index.vue │ │ └── Tree │ │ │ ├── index.vue │ │ │ └── item.vue │ │ ├── index.vue │ │ └── js │ │ └── constants.js │ ├── profile │ ├── components │ │ ├── Account.vue │ │ ├── Activity.vue │ │ ├── Timeline.vue │ │ └── UserCard.vue │ └── index.vue │ ├── redirect │ └── index.vue │ ├── system │ ├── client │ │ ├── index.vue │ │ └── js │ │ │ └── constants.js │ ├── interface │ │ ├── index.vue │ │ └── js │ │ │ └── constants.js │ ├── login-log │ │ ├── index.vue │ │ └── js │ │ │ └── constants.js │ ├── menu │ │ ├── components │ │ │ └── Icons │ │ │ │ ├── index.vue │ │ │ │ └── svg-icons.js │ │ └── index.vue │ └── opt-log │ │ ├── index.vue │ │ └── js │ │ └── constants.js │ └── tenant │ ├── menu │ ├── index.vue │ └── js │ │ └── constants.js │ └── tenant │ ├── index.vue │ └── js │ └── constants.js └── vue.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/.env.development -------------------------------------------------------------------------------- /.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/.env.production -------------------------------------------------------------------------------- /.env.staging: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/.env.staging -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | build/*.js 2 | src/assets 3 | public 4 | dist 5 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/babel.config.js -------------------------------------------------------------------------------- /docs/img/Libra-Platform平台规划.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/docs/img/Libra-Platform平台规划.png -------------------------------------------------------------------------------- /docs/img/code-ds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/docs/img/code-ds.png -------------------------------------------------------------------------------- /docs/img/code-gen-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/docs/img/code-gen-list.png -------------------------------------------------------------------------------- /docs/img/code-version-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/docs/img/code-version-list.png -------------------------------------------------------------------------------- /docs/img/libra-架构图.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/docs/img/libra-架构图.jpg -------------------------------------------------------------------------------- /docs/img/p-dept-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/docs/img/p-dept-list.png -------------------------------------------------------------------------------- /docs/img/p-emp-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/docs/img/p-emp-add.png -------------------------------------------------------------------------------- /docs/img/p-emp-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/docs/img/p-emp-list.png -------------------------------------------------------------------------------- /docs/img/p-position-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/docs/img/p-position-list.png -------------------------------------------------------------------------------- /docs/img/p-role-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/docs/img/p-role-list.png -------------------------------------------------------------------------------- /docs/img/sentinel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/docs/img/sentinel.png -------------------------------------------------------------------------------- /docs/img/skywaling-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/docs/img/skywaling-1.png -------------------------------------------------------------------------------- /docs/img/skywaling-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/docs/img/skywaling-2.png -------------------------------------------------------------------------------- /docs/img/skywaling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/docs/img/skywaling.png -------------------------------------------------------------------------------- /docs/img/system-client-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/docs/img/system-client-list.png -------------------------------------------------------------------------------- /docs/img/system-interface-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/docs/img/system-interface-list.png -------------------------------------------------------------------------------- /docs/img/system-loglist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/docs/img/system-loglist.png -------------------------------------------------------------------------------- /docs/img/system-menu-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/docs/img/system-menu-add.png -------------------------------------------------------------------------------- /docs/img/system-menu-interface-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/docs/img/system-menu-interface-add.png -------------------------------------------------------------------------------- /docs/img/system-menu-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/docs/img/system-menu-list.png -------------------------------------------------------------------------------- /docs/img/tenant-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/docs/img/tenant-add.png -------------------------------------------------------------------------------- /docs/img/tenant-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/docs/img/tenant-list.png -------------------------------------------------------------------------------- /docs/img/tenant-menu-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/docs/img/tenant-menu-add.png -------------------------------------------------------------------------------- /docs/img/tenant-menu-listt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/docs/img/tenant-menu-listt.png -------------------------------------------------------------------------------- /docs/img/服务监控.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/docs/img/服务监控.png -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/jest.config.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/public/index.html -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/api/code/ds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/api/code/ds.js -------------------------------------------------------------------------------- /src/api/code/onlineCode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/api/code/onlineCode.js -------------------------------------------------------------------------------- /src/api/code/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/api/code/version.js -------------------------------------------------------------------------------- /src/api/personnel/emp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/api/personnel/emp.js -------------------------------------------------------------------------------- /src/api/personnel/org.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/api/personnel/org.js -------------------------------------------------------------------------------- /src/api/personnel/position.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/api/personnel/position.js -------------------------------------------------------------------------------- /src/api/personnel/role.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/api/personnel/role.js -------------------------------------------------------------------------------- /src/api/system/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/api/system/client.js -------------------------------------------------------------------------------- /src/api/system/interface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/api/system/interface.js -------------------------------------------------------------------------------- /src/api/system/loginlog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/api/system/loginlog.js -------------------------------------------------------------------------------- /src/api/system/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/api/system/menu.js -------------------------------------------------------------------------------- /src/api/system/optlog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/api/system/optlog.js -------------------------------------------------------------------------------- /src/api/tenant/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/api/tenant/menu.js -------------------------------------------------------------------------------- /src/api/tenant/tenant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/api/tenant/tenant.js -------------------------------------------------------------------------------- /src/api/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/api/user.js -------------------------------------------------------------------------------- /src/assets/401_images/401.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/assets/401_images/401.gif -------------------------------------------------------------------------------- /src/assets/404_images/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/assets/404_images/404.png -------------------------------------------------------------------------------- /src/assets/404_images/404_cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/assets/404_images/404_cloud.png -------------------------------------------------------------------------------- /src/assets/custom-theme/fonts/element-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/assets/custom-theme/fonts/element-icons.ttf -------------------------------------------------------------------------------- /src/assets/custom-theme/fonts/element-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/assets/custom-theme/fonts/element-icons.woff -------------------------------------------------------------------------------- /src/assets/custom-theme/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/assets/custom-theme/index.css -------------------------------------------------------------------------------- /src/assets/libra/Libra-Platform平台规划.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/assets/libra/Libra-Platform平台规划.png -------------------------------------------------------------------------------- /src/assets/libra/libra-架构图.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/assets/libra/libra-架构图.jpg -------------------------------------------------------------------------------- /src/assets/login-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/assets/login-button.png -------------------------------------------------------------------------------- /src/assets/login-left-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/assets/login-left-top.png -------------------------------------------------------------------------------- /src/assets/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/assets/login.png -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/components/BackToTop/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/components/BackToTop/index.vue -------------------------------------------------------------------------------- /src/components/Breadcrumb/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/components/Breadcrumb/index.vue -------------------------------------------------------------------------------- /src/components/Charts/Keyboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/components/Charts/Keyboard.vue -------------------------------------------------------------------------------- /src/components/Charts/LineMarker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/components/Charts/LineMarker.vue -------------------------------------------------------------------------------- /src/components/Charts/MixChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/components/Charts/MixChart.vue -------------------------------------------------------------------------------- /src/components/Charts/mixins/resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/components/Charts/mixins/resize.js -------------------------------------------------------------------------------- /src/components/DndList/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/components/DndList/index.vue -------------------------------------------------------------------------------- /src/components/DragSelect/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/components/DragSelect/index.vue -------------------------------------------------------------------------------- /src/components/Dropzone/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/components/Dropzone/index.vue -------------------------------------------------------------------------------- /src/components/ErrorLog/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/components/ErrorLog/index.vue -------------------------------------------------------------------------------- /src/components/GithubCorner/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/components/GithubCorner/index.vue -------------------------------------------------------------------------------- /src/components/Hamburger/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/components/Hamburger/index.vue -------------------------------------------------------------------------------- /src/components/HeaderSearch/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/components/HeaderSearch/index.vue -------------------------------------------------------------------------------- /src/components/ImageCropper/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/components/ImageCropper/index.vue -------------------------------------------------------------------------------- /src/components/ImageCropper/utils/data2blob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/components/ImageCropper/utils/data2blob.js -------------------------------------------------------------------------------- /src/components/ImageCropper/utils/effectRipple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/components/ImageCropper/utils/effectRipple.js -------------------------------------------------------------------------------- /src/components/ImageCropper/utils/language.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/components/ImageCropper/utils/language.js -------------------------------------------------------------------------------- /src/components/ImageCropper/utils/mimes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/components/ImageCropper/utils/mimes.js -------------------------------------------------------------------------------- /src/components/JsonEditor/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/components/JsonEditor/index.vue -------------------------------------------------------------------------------- /src/components/Kanban/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/components/Kanban/index.vue -------------------------------------------------------------------------------- /src/components/LibraTable/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/components/LibraTable/index.vue -------------------------------------------------------------------------------- /src/components/MDinput/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/components/MDinput/index.vue -------------------------------------------------------------------------------- /src/components/MarkdownEditor/default-options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/components/MarkdownEditor/default-options.js -------------------------------------------------------------------------------- /src/components/MarkdownEditor/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/components/MarkdownEditor/index.vue -------------------------------------------------------------------------------- /src/components/Pagination/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/components/Pagination/index.vue -------------------------------------------------------------------------------- /src/components/PanThumb/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/components/PanThumb/index.vue -------------------------------------------------------------------------------- /src/components/RightPanel/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/components/RightPanel/index.vue -------------------------------------------------------------------------------- /src/components/RightToolbar/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/components/RightToolbar/index.vue -------------------------------------------------------------------------------- /src/components/Screenfull/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/components/Screenfull/index.vue -------------------------------------------------------------------------------- /src/components/Share/DropdownMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/components/Share/DropdownMenu.vue -------------------------------------------------------------------------------- /src/components/SizeSelect/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/components/SizeSelect/index.vue -------------------------------------------------------------------------------- /src/components/Sticky/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/components/Sticky/index.vue -------------------------------------------------------------------------------- /src/components/SvgIcon/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/components/SvgIcon/index.vue -------------------------------------------------------------------------------- /src/components/TextHoverEffect/Mallki.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/components/TextHoverEffect/Mallki.vue -------------------------------------------------------------------------------- /src/components/ThemePicker/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/components/ThemePicker/index.vue -------------------------------------------------------------------------------- /src/components/Tinymce/components/EditorImage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/components/Tinymce/components/EditorImage.vue -------------------------------------------------------------------------------- /src/components/Tinymce/dynamicLoadScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/components/Tinymce/dynamicLoadScript.js -------------------------------------------------------------------------------- /src/components/Tinymce/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/components/Tinymce/index.vue -------------------------------------------------------------------------------- /src/components/Tinymce/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/components/Tinymce/plugins.js -------------------------------------------------------------------------------- /src/components/Tinymce/toolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/components/Tinymce/toolbar.js -------------------------------------------------------------------------------- /src/components/Upload/SingleImage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/components/Upload/SingleImage.vue -------------------------------------------------------------------------------- /src/components/Upload/SingleImage2.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/components/Upload/SingleImage2.vue -------------------------------------------------------------------------------- /src/components/Upload/SingleImage3.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/components/Upload/SingleImage3.vue -------------------------------------------------------------------------------- /src/components/UploadExcel/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/components/UploadExcel/index.vue -------------------------------------------------------------------------------- /src/directive/clipboard/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/directive/clipboard/clipboard.js -------------------------------------------------------------------------------- /src/directive/clipboard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/directive/clipboard/index.js -------------------------------------------------------------------------------- /src/directive/el-drag-dialog/drag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/directive/el-drag-dialog/drag.js -------------------------------------------------------------------------------- /src/directive/el-drag-dialog/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/directive/el-drag-dialog/index.js -------------------------------------------------------------------------------- /src/directive/el-table/adaptive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/directive/el-table/adaptive.js -------------------------------------------------------------------------------- /src/directive/el-table/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/directive/el-table/index.js -------------------------------------------------------------------------------- /src/directive/permission/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/directive/permission/index.js -------------------------------------------------------------------------------- /src/directive/permission/permission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/directive/permission/permission.js -------------------------------------------------------------------------------- /src/directive/sticky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/directive/sticky.js -------------------------------------------------------------------------------- /src/directive/waves/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/directive/waves/index.js -------------------------------------------------------------------------------- /src/directive/waves/waves.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/directive/waves/waves.css -------------------------------------------------------------------------------- /src/directive/waves/waves.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/directive/waves/waves.js -------------------------------------------------------------------------------- /src/filters/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/filters/index.js -------------------------------------------------------------------------------- /src/icons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/icons/index.js -------------------------------------------------------------------------------- /src/icons/svg/404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/icons/svg/404.svg -------------------------------------------------------------------------------- /src/icons/svg/bug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/icons/svg/bug.svg -------------------------------------------------------------------------------- /src/icons/svg/chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/icons/svg/chart.svg -------------------------------------------------------------------------------- /src/icons/svg/clipboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/icons/svg/clipboard.svg -------------------------------------------------------------------------------- /src/icons/svg/component.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/icons/svg/component.svg -------------------------------------------------------------------------------- /src/icons/svg/dashboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/icons/svg/dashboard.svg -------------------------------------------------------------------------------- /src/icons/svg/documentation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/icons/svg/documentation.svg -------------------------------------------------------------------------------- /src/icons/svg/drag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/icons/svg/drag.svg -------------------------------------------------------------------------------- /src/icons/svg/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/icons/svg/edit.svg -------------------------------------------------------------------------------- /src/icons/svg/education.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/icons/svg/education.svg -------------------------------------------------------------------------------- /src/icons/svg/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/icons/svg/email.svg -------------------------------------------------------------------------------- /src/icons/svg/example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/icons/svg/example.svg -------------------------------------------------------------------------------- /src/icons/svg/excel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/icons/svg/excel.svg -------------------------------------------------------------------------------- /src/icons/svg/exit-fullscreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/icons/svg/exit-fullscreen.svg -------------------------------------------------------------------------------- /src/icons/svg/eye-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/icons/svg/eye-open.svg -------------------------------------------------------------------------------- /src/icons/svg/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/icons/svg/eye.svg -------------------------------------------------------------------------------- /src/icons/svg/form.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/icons/svg/form.svg -------------------------------------------------------------------------------- /src/icons/svg/fullscreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/icons/svg/fullscreen.svg -------------------------------------------------------------------------------- /src/icons/svg/guide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/icons/svg/guide.svg -------------------------------------------------------------------------------- /src/icons/svg/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/icons/svg/icon.svg -------------------------------------------------------------------------------- /src/icons/svg/international.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/icons/svg/international.svg -------------------------------------------------------------------------------- /src/icons/svg/language.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/icons/svg/language.svg -------------------------------------------------------------------------------- /src/icons/svg/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/icons/svg/link.svg -------------------------------------------------------------------------------- /src/icons/svg/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/icons/svg/list.svg -------------------------------------------------------------------------------- /src/icons/svg/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/icons/svg/lock.svg -------------------------------------------------------------------------------- /src/icons/svg/message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/icons/svg/message.svg -------------------------------------------------------------------------------- /src/icons/svg/money.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/icons/svg/money.svg -------------------------------------------------------------------------------- /src/icons/svg/nested.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/icons/svg/nested.svg -------------------------------------------------------------------------------- /src/icons/svg/password.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/icons/svg/password.svg -------------------------------------------------------------------------------- /src/icons/svg/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/icons/svg/pdf.svg -------------------------------------------------------------------------------- /src/icons/svg/people.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/icons/svg/people.svg -------------------------------------------------------------------------------- /src/icons/svg/peoples.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/icons/svg/peoples.svg -------------------------------------------------------------------------------- /src/icons/svg/qq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/icons/svg/qq.svg -------------------------------------------------------------------------------- /src/icons/svg/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/icons/svg/search.svg -------------------------------------------------------------------------------- /src/icons/svg/shopping.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/icons/svg/shopping.svg -------------------------------------------------------------------------------- /src/icons/svg/size.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/icons/svg/size.svg -------------------------------------------------------------------------------- /src/icons/svg/skill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/icons/svg/skill.svg -------------------------------------------------------------------------------- /src/icons/svg/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/icons/svg/star.svg -------------------------------------------------------------------------------- /src/icons/svg/tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/icons/svg/tab.svg -------------------------------------------------------------------------------- /src/icons/svg/table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/icons/svg/table.svg -------------------------------------------------------------------------------- /src/icons/svg/theme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/icons/svg/theme.svg -------------------------------------------------------------------------------- /src/icons/svg/tree-table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/icons/svg/tree-table.svg -------------------------------------------------------------------------------- /src/icons/svg/tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/icons/svg/tree.svg -------------------------------------------------------------------------------- /src/icons/svg/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/icons/svg/user.svg -------------------------------------------------------------------------------- /src/icons/svg/wechat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/icons/svg/wechat.svg -------------------------------------------------------------------------------- /src/icons/svg/zip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/icons/svg/zip.svg -------------------------------------------------------------------------------- /src/icons/svgo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/icons/svgo.yml -------------------------------------------------------------------------------- /src/layout/components/AppMain.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/layout/components/AppMain.vue -------------------------------------------------------------------------------- /src/layout/components/Navbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/layout/components/Navbar.vue -------------------------------------------------------------------------------- /src/layout/components/Settings/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/layout/components/Settings/index.vue -------------------------------------------------------------------------------- /src/layout/components/Sidebar/FixiOSBug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/layout/components/Sidebar/FixiOSBug.js -------------------------------------------------------------------------------- /src/layout/components/Sidebar/Item.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/layout/components/Sidebar/Item.vue -------------------------------------------------------------------------------- /src/layout/components/Sidebar/Link.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/layout/components/Sidebar/Link.vue -------------------------------------------------------------------------------- /src/layout/components/Sidebar/Logo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/layout/components/Sidebar/Logo.vue -------------------------------------------------------------------------------- /src/layout/components/Sidebar/SidebarItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/layout/components/Sidebar/SidebarItem.vue -------------------------------------------------------------------------------- /src/layout/components/Sidebar/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/layout/components/Sidebar/index.vue -------------------------------------------------------------------------------- /src/layout/components/TagsView/ScrollPane.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/layout/components/TagsView/ScrollPane.vue -------------------------------------------------------------------------------- /src/layout/components/TagsView/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/layout/components/TagsView/index.vue -------------------------------------------------------------------------------- /src/layout/components/WaterMark/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/layout/components/WaterMark/index.vue -------------------------------------------------------------------------------- /src/layout/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/layout/components/index.js -------------------------------------------------------------------------------- /src/layout/empty.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/layout/empty.vue -------------------------------------------------------------------------------- /src/layout/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/layout/index.vue -------------------------------------------------------------------------------- /src/layout/mixin/ResizeHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/layout/mixin/ResizeHandler.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/main.js -------------------------------------------------------------------------------- /src/permission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/permission.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/settings.js -------------------------------------------------------------------------------- /src/store/getters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/store/getters.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/store/modules/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/store/modules/app.js -------------------------------------------------------------------------------- /src/store/modules/errorLog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/store/modules/errorLog.js -------------------------------------------------------------------------------- /src/store/modules/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/store/modules/settings.js -------------------------------------------------------------------------------- /src/store/modules/tagsView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/store/modules/tagsView.js -------------------------------------------------------------------------------- /src/store/modules/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/store/modules/user.js -------------------------------------------------------------------------------- /src/styles/btn.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/styles/btn.scss -------------------------------------------------------------------------------- /src/styles/element-ui.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/styles/element-ui.scss -------------------------------------------------------------------------------- /src/styles/element-variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/styles/element-variables.scss -------------------------------------------------------------------------------- /src/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/styles/index.scss -------------------------------------------------------------------------------- /src/styles/mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/styles/mixin.scss -------------------------------------------------------------------------------- /src/styles/sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/styles/sidebar.scss -------------------------------------------------------------------------------- /src/styles/transition.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/styles/transition.scss -------------------------------------------------------------------------------- /src/styles/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/styles/variables.scss -------------------------------------------------------------------------------- /src/utils/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/utils/auth.js -------------------------------------------------------------------------------- /src/utils/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/utils/clipboard.js -------------------------------------------------------------------------------- /src/utils/error-log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/utils/error-log.js -------------------------------------------------------------------------------- /src/utils/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/utils/file.js -------------------------------------------------------------------------------- /src/utils/get-page-title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/utils/get-page-title.js -------------------------------------------------------------------------------- /src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/utils/index.js -------------------------------------------------------------------------------- /src/utils/open-window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/utils/open-window.js -------------------------------------------------------------------------------- /src/utils/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/utils/request.js -------------------------------------------------------------------------------- /src/utils/scroll-to.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/utils/scroll-to.js -------------------------------------------------------------------------------- /src/utils/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/utils/storage.js -------------------------------------------------------------------------------- /src/utils/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/utils/validate.js -------------------------------------------------------------------------------- /src/views/code/ds/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/views/code/ds/index.vue -------------------------------------------------------------------------------- /src/views/code/ds/js/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/views/code/ds/js/constants.js -------------------------------------------------------------------------------- /src/views/code/online-code/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/views/code/online-code/index.vue -------------------------------------------------------------------------------- /src/views/code/online-code/js/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/views/code/online-code/js/constants.js -------------------------------------------------------------------------------- /src/views/code/version/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/views/code/version/index.vue -------------------------------------------------------------------------------- /src/views/code/version/js/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/views/code/version/js/constants.js -------------------------------------------------------------------------------- /src/views/dashboard/admin/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/views/dashboard/admin/index.vue -------------------------------------------------------------------------------- /src/views/dashboard/editor/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/views/dashboard/editor/index.vue -------------------------------------------------------------------------------- /src/views/dashboard/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/views/dashboard/index.vue -------------------------------------------------------------------------------- /src/views/error-page/401.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/views/error-page/401.vue -------------------------------------------------------------------------------- /src/views/error-page/404.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/views/error-page/404.vue -------------------------------------------------------------------------------- /src/views/login/auth-redirect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/views/login/auth-redirect.vue -------------------------------------------------------------------------------- /src/views/login/components/SocialSignin.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/views/login/components/SocialSignin.vue -------------------------------------------------------------------------------- /src/views/login/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/views/login/index.vue -------------------------------------------------------------------------------- /src/views/personnel/emp/emp.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/views/personnel/emp/emp.vue -------------------------------------------------------------------------------- /src/views/personnel/emp/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/views/personnel/emp/index.vue -------------------------------------------------------------------------------- /src/views/personnel/emp/js/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/views/personnel/emp/js/constants.js -------------------------------------------------------------------------------- /src/views/personnel/org/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/views/personnel/org/index.vue -------------------------------------------------------------------------------- /src/views/personnel/org/js/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/views/personnel/org/js/constants.js -------------------------------------------------------------------------------- /src/views/personnel/position/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/views/personnel/position/index.vue -------------------------------------------------------------------------------- /src/views/personnel/position/js/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/views/personnel/position/js/constants.js -------------------------------------------------------------------------------- /src/views/personnel/role/components/PopoverMenu/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/views/personnel/role/components/PopoverMenu/index.vue -------------------------------------------------------------------------------- /src/views/personnel/role/components/Tree/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/views/personnel/role/components/Tree/index.vue -------------------------------------------------------------------------------- /src/views/personnel/role/components/Tree/item.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/views/personnel/role/components/Tree/item.vue -------------------------------------------------------------------------------- /src/views/personnel/role/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/views/personnel/role/index.vue -------------------------------------------------------------------------------- /src/views/personnel/role/js/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/views/personnel/role/js/constants.js -------------------------------------------------------------------------------- /src/views/profile/components/Account.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/views/profile/components/Account.vue -------------------------------------------------------------------------------- /src/views/profile/components/Activity.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/views/profile/components/Activity.vue -------------------------------------------------------------------------------- /src/views/profile/components/Timeline.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/views/profile/components/Timeline.vue -------------------------------------------------------------------------------- /src/views/profile/components/UserCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/views/profile/components/UserCard.vue -------------------------------------------------------------------------------- /src/views/profile/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/views/profile/index.vue -------------------------------------------------------------------------------- /src/views/redirect/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/views/redirect/index.vue -------------------------------------------------------------------------------- /src/views/system/client/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/views/system/client/index.vue -------------------------------------------------------------------------------- /src/views/system/client/js/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/views/system/client/js/constants.js -------------------------------------------------------------------------------- /src/views/system/interface/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/views/system/interface/index.vue -------------------------------------------------------------------------------- /src/views/system/interface/js/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/views/system/interface/js/constants.js -------------------------------------------------------------------------------- /src/views/system/login-log/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/views/system/login-log/index.vue -------------------------------------------------------------------------------- /src/views/system/login-log/js/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/views/system/login-log/js/constants.js -------------------------------------------------------------------------------- /src/views/system/menu/components/Icons/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/views/system/menu/components/Icons/index.vue -------------------------------------------------------------------------------- /src/views/system/menu/components/Icons/svg-icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/views/system/menu/components/Icons/svg-icons.js -------------------------------------------------------------------------------- /src/views/system/menu/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/views/system/menu/index.vue -------------------------------------------------------------------------------- /src/views/system/opt-log/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/views/system/opt-log/index.vue -------------------------------------------------------------------------------- /src/views/system/opt-log/js/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/views/system/opt-log/js/constants.js -------------------------------------------------------------------------------- /src/views/tenant/menu/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/views/tenant/menu/index.vue -------------------------------------------------------------------------------- /src/views/tenant/menu/js/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/views/tenant/menu/js/constants.js -------------------------------------------------------------------------------- /src/views/tenant/tenant/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/views/tenant/tenant/index.vue -------------------------------------------------------------------------------- /src/views/tenant/tenant/js/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/src/views/tenant/tenant/js/constants.js -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/LibraPlatformUi/HEAD/vue.config.js --------------------------------------------------------------------------------