├── .github └── workflows │ └── npm-publish.sh ├── .gitignore ├── LICENSE ├── README.md └── dashboard ├── .editorconfig ├── .env.development ├── .env.development.example ├── .env.production ├── .env.production.example ├── .env.staging ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .travis.yml ├── LICENSE ├── babel.config.js ├── build └── index.js ├── jest.config.js ├── jsconfig.json ├── package.json ├── plop-templates ├── component │ ├── index.hbs │ └── prompt.js ├── store │ ├── index.hbs │ └── prompt.js ├── utils.js └── view │ ├── index.hbs │ └── prompt.js ├── plopfile.js ├── postcss.config.js ├── public ├── alipay.jpg ├── favicon.ico ├── favicon1.ico ├── index.html ├── qqqun.jpg ├── robots.txt └── wechatpay.jpg ├── src ├── App.vue ├── api │ ├── control_panel │ │ └── database.js │ ├── hiker │ │ ├── developer.js │ │ ├── rule.js │ │ └── rule_type.js │ ├── monitor │ │ ├── cache.js │ │ ├── job.js │ │ ├── jobLog.js │ │ ├── logininfor.js │ │ ├── online.js │ │ ├── operlog.js │ │ ├── pip.js │ │ └── server.js │ ├── permission │ │ ├── label.js │ │ ├── menu.js │ │ ├── role.js │ │ └── user.js │ ├── system │ │ ├── dict │ │ │ ├── data.js │ │ │ └── detail.js │ │ └── parameter.js │ ├── user.js │ └── vod │ │ ├── configs.js │ │ ├── houses.js │ │ ├── rules.js │ │ ├── subs.js │ │ └── web.js ├── assets │ ├── 401_images │ │ └── 401.gif │ ├── 404_images │ │ ├── 404.png │ │ └── 404_cloud.png │ ├── custom-theme │ │ ├── fonts │ │ │ ├── element-icons.ttf │ │ │ └── element-icons.woff │ │ └── index.css │ ├── doc │ │ └── less2css.md │ ├── icons │ │ ├── index.js │ │ ├── svg │ │ │ ├── 404.svg │ │ │ ├── bug.svg │ │ │ ├── build.svg │ │ │ ├── button.svg │ │ │ ├── cascader.svg │ │ │ ├── chart.svg │ │ │ ├── checkbox.svg │ │ │ ├── clipboard.svg │ │ │ ├── code.svg │ │ │ ├── color.svg │ │ │ ├── component.svg │ │ │ ├── dashboard.svg │ │ │ ├── date-range.svg │ │ │ ├── date.svg │ │ │ ├── dict.svg │ │ │ ├── documentation.svg │ │ │ ├── download.svg │ │ │ ├── drag.svg │ │ │ ├── druid.svg │ │ │ ├── edit.svg │ │ │ ├── education.svg │ │ │ ├── email.svg │ │ │ ├── example.svg │ │ │ ├── excel.svg │ │ │ ├── exit-fullscreen.svg │ │ │ ├── eye-open.svg │ │ │ ├── eye.svg │ │ │ ├── form.svg │ │ │ ├── fullscreen.svg │ │ │ ├── github.svg │ │ │ ├── guide.svg │ │ │ ├── icon.svg │ │ │ ├── input.svg │ │ │ ├── international.svg │ │ │ ├── job.svg │ │ │ ├── language.svg │ │ │ ├── link.svg │ │ │ ├── list.svg │ │ │ ├── lock.svg │ │ │ ├── log.svg │ │ │ ├── logininfor.svg │ │ │ ├── message.svg │ │ │ ├── money.svg │ │ │ ├── monitor.svg │ │ │ ├── nested.svg │ │ │ ├── number.svg │ │ │ ├── online.svg │ │ │ ├── password.svg │ │ │ ├── pdf.svg │ │ │ ├── people.svg │ │ │ ├── peoples.svg │ │ │ ├── phone.svg │ │ │ ├── post.svg │ │ │ ├── qq.svg │ │ │ ├── question.svg │ │ │ ├── radio.svg │ │ │ ├── rate.svg │ │ │ ├── redis-list.svg │ │ │ ├── redis.svg │ │ │ ├── row.svg │ │ │ ├── search.svg │ │ │ ├── select.svg │ │ │ ├── server.svg │ │ │ ├── shopping.svg │ │ │ ├── size.svg │ │ │ ├── skill.svg │ │ │ ├── slider.svg │ │ │ ├── star.svg │ │ │ ├── swagger.svg │ │ │ ├── switch.svg │ │ │ ├── system.svg │ │ │ ├── tab.svg │ │ │ ├── table.svg │ │ │ ├── textarea.svg │ │ │ ├── theme.svg │ │ │ ├── time-range.svg │ │ │ ├── time.svg │ │ │ ├── tool.svg │ │ │ ├── tree-table.svg │ │ │ ├── tree.svg │ │ │ ├── upload.svg │ │ │ ├── user.svg │ │ │ ├── validCode.svg │ │ │ ├── wechat.svg │ │ │ └── zip.svg │ │ └── svgo.yml │ ├── images │ │ ├── dark.svg │ │ ├── light.svg │ │ ├── loading.gif │ │ ├── login-background.jpg │ │ ├── logo.png │ │ ├── pay.png │ │ └── profile.jpg │ └── logo │ │ └── logo.png ├── components │ ├── BackToTop │ │ └── index.vue │ ├── Breadcrumb │ │ └── index.vue │ ├── Charts │ │ ├── Keyboard.vue │ │ ├── LineMarker.vue │ │ ├── MixChart.vue │ │ └── mixins │ │ │ └── resize.js │ ├── CodeEditor │ │ └── index.vue │ ├── Crontab │ │ ├── day.vue │ │ ├── hour.vue │ │ ├── index.vue │ │ ├── min.vue │ │ ├── month.vue │ │ ├── result.vue │ │ ├── second.vue │ │ ├── week.vue │ │ └── year.vue │ ├── DictTag │ │ └── index.vue │ ├── DndList │ │ └── index.vue │ ├── DragSelect │ │ └── index.vue │ ├── Dropzone │ │ └── index.vue │ ├── Editor │ │ └── index.vue │ ├── ErrorLog │ │ └── index.vue │ ├── FileUpload │ │ └── index.vue │ ├── GithubCorner │ │ └── index.vue │ ├── Hamburger │ │ └── index.vue │ ├── HeaderSearch │ │ └── index.vue │ ├── IconSelect │ │ ├── index.vue │ │ └── requireIcons.js │ ├── ImageCropper │ │ ├── index.vue │ │ └── utils │ │ │ ├── data2blob.js │ │ │ ├── effectRipple.js │ │ │ ├── language.js │ │ │ └── mimes.js │ ├── ImagePreview │ │ └── index.vue │ ├── ImageUpload │ │ └── index.vue │ ├── JsonEditor │ │ └── index.vue │ ├── Kanban │ │ └── index.vue │ ├── MDinput │ │ └── index.vue │ ├── MarkdownEditor │ │ ├── default-options.js │ │ └── index.vue │ ├── Pagination │ │ └── index.vue │ ├── PanThumb │ │ └── index.vue │ ├── README.md │ ├── 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 │ └── iFrame │ │ └── index.vue ├── directive │ ├── button_permission │ │ ├── hasPermi.js │ │ ├── hasRole.js │ │ └── index.js │ ├── 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 │ │ ├── build.svg │ │ ├── cascader.svg │ │ ├── chart.svg │ │ ├── checkbox.svg │ │ ├── clipboard.svg │ │ ├── code.svg │ │ ├── color.svg │ │ ├── component.svg │ │ ├── dashboard.svg │ │ ├── date-range.svg │ │ ├── date.svg │ │ ├── dict.svg │ │ ├── documentation.svg │ │ ├── download.svg │ │ ├── drag.svg │ │ ├── druid.svg │ │ ├── edit.svg │ │ ├── education.svg │ │ ├── email.svg │ │ ├── example.svg │ │ ├── excel.svg │ │ ├── exit-fullscreen.svg │ │ ├── eye-open.svg │ │ ├── eye.svg │ │ ├── form.svg │ │ ├── fullscreen.svg │ │ ├── github.svg │ │ ├── guide.svg │ │ ├── icon.svg │ │ ├── input.svg │ │ ├── international.svg │ │ ├── job.svg │ │ ├── language.svg │ │ ├── link.svg │ │ ├── list.svg │ │ ├── lock.svg │ │ ├── log.svg │ │ ├── logininfor.svg │ │ ├── message.svg │ │ ├── money.svg │ │ ├── monitor.svg │ │ ├── nested.svg │ │ ├── number.svg │ │ ├── online.svg │ │ ├── password.svg │ │ ├── pdf.svg │ │ ├── people.svg │ │ ├── peoples.svg │ │ ├── phone.svg │ │ ├── post.svg │ │ ├── qq.svg │ │ ├── question.svg │ │ ├── radio.svg │ │ ├── rate.svg │ │ ├── row.svg │ │ ├── search.svg │ │ ├── select.svg │ │ ├── server.svg │ │ ├── shopping.svg │ │ ├── size.svg │ │ ├── skill.svg │ │ ├── slider.svg │ │ ├── star.svg │ │ ├── swagger.svg │ │ ├── switch.svg │ │ ├── system.svg │ │ ├── tab.svg │ │ ├── table.svg │ │ ├── textarea.svg │ │ ├── theme.svg │ │ ├── time-range.svg │ │ ├── time.svg │ │ ├── tool.svg │ │ ├── tree-table.svg │ │ ├── tree.svg │ │ ├── upload.svg │ │ ├── user.svg │ │ ├── validCode.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 │ │ └── index.js │ ├── index.vue │ └── mixin │ │ └── ResizeHandler.js ├── main.js ├── permission.js ├── plugins │ ├── auth.js │ ├── cache.js │ ├── download.js │ ├── index.js │ ├── modal.js │ └── tab.js ├── router │ └── index.js ├── settings.js ├── store │ ├── getters.js │ ├── index.js │ └── modules │ │ ├── app.js │ │ ├── errorLog.js │ │ ├── permission.js │ │ ├── settings.js │ │ ├── tagsView.js │ │ ├── user.js │ │ └── vod.js ├── styles │ ├── btn.scss │ ├── element-ui.scss │ ├── element-variables.scss │ ├── index.scss │ ├── mixin.scss │ ├── reset.scss │ ├── ruoyi.scss │ ├── sidebar.scss │ ├── transition.scss │ └── variables.scss ├── utils │ ├── auth.js │ ├── clipboard.js │ ├── error-log.js │ ├── errorCode.js │ ├── generator │ │ ├── config.js │ │ ├── css.js │ │ ├── drawingDefault.js │ │ ├── html.js │ │ ├── icon.json │ │ ├── js.js │ │ └── render.js │ ├── get-page-title.js │ ├── index.js │ ├── jsencrypt.js │ ├── open-window.js │ ├── permission.js │ ├── random.js │ ├── request.js │ ├── ruoyi.js │ ├── scroll-to.js │ └── validate.js ├── vendor │ ├── Export2Excel.js │ └── Export2Zip.js └── views │ ├── components │ └── icons │ │ ├── element-icons.js │ │ ├── index.vue │ │ └── svg-icons.js │ ├── control_panel │ └── index.vue │ ├── dashboard │ ├── admin │ │ ├── components │ │ │ ├── BarChart.vue │ │ │ ├── BoxCard.vue │ │ │ ├── LineChart.vue │ │ │ ├── PanelGroup.vue │ │ │ ├── PieChart.vue │ │ │ ├── RaddarChart.vue │ │ │ ├── TodoList │ │ │ │ ├── Todo.vue │ │ │ │ ├── index.scss │ │ │ │ └── index.vue │ │ │ └── mixins │ │ │ │ └── resize.js │ │ └── index.vue │ ├── editor │ │ └── index.vue │ └── index.vue │ ├── error-page │ ├── 401.vue │ └── 404.vue │ ├── hiker │ ├── developer │ │ └── index.vue │ ├── rule │ │ └── index.vue │ └── rule_type │ │ └── index.vue │ ├── monitor │ ├── cache │ │ ├── index.vue │ │ └── list.vue │ ├── druid │ │ └── index.vue │ ├── job │ │ ├── index.vue │ │ └── log.vue │ ├── logininfor │ │ └── index.vue │ ├── online │ │ └── index.vue │ ├── operlog │ │ └── index.vue │ ├── pip │ │ └── index.vue │ └── server │ │ └── index.vue │ ├── permission │ ├── label │ │ └── index.vue │ ├── menu │ │ └── index.vue │ ├── role │ │ └── index.vue │ └── user │ │ ├── AvatarUpload.vue │ │ └── index.vue │ ├── profile │ ├── components │ │ ├── Account.vue │ │ ├── ResetPwd.vue │ │ ├── UserCard.vue │ │ └── userAvatar.vue │ └── index.vue │ ├── redirect │ └── index.vue │ ├── system │ ├── dict │ │ ├── detail │ │ │ └── index.vue │ │ └── index.vue │ └── parameter │ │ └── index.vue │ ├── tool │ ├── blog │ │ └── index.vue │ ├── build │ │ ├── CodeTypeDialog.vue │ │ ├── DraggableItem.vue │ │ ├── IconsDialog.vue │ │ ├── RightPanel.vue │ │ ├── TreeNodeDialog.vue │ │ └── index.vue │ ├── liveTool │ │ ├── index.vue │ │ ├── logo.json │ │ └── styles.scss │ ├── swagger │ │ └── index.vue │ └── xfgpt │ │ └── index.vue │ ├── user │ ├── forgetPassword │ │ ├── SetPassword.vue │ │ └── index.vue │ ├── layout.vue │ ├── login │ │ ├── auth-redirect.vue │ │ └── index.vue │ └── register │ │ ├── index.vue │ │ └── verify.vue │ └── vod │ ├── configs │ └── index.vue │ ├── houses │ └── index.vue │ ├── rules │ ├── edit.vue │ └── index.vue │ ├── subs │ └── index.vue │ └── web │ ├── about.vue │ ├── components │ ├── filter.vue │ ├── footer.vue │ ├── header.vue │ ├── menu.vue │ └── videoList.vue │ ├── home │ ├── category.vue │ ├── detail.vue │ └── search.vue │ └── index.vue ├── tests └── unit │ ├── .eslintrc.js │ ├── components │ ├── Hamburger.spec.js │ └── SvgIcon.spec.js │ └── utils │ ├── formatTime.spec.js │ ├── param2Obj.spec.js │ ├── parseTime.spec.js │ └── validate.spec.js └── vue.config.js /.github/workflows/npm-publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/.github/workflows/npm-publish.sh -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/README.md -------------------------------------------------------------------------------- /dashboard/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/.editorconfig -------------------------------------------------------------------------------- /dashboard/.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/.env.development -------------------------------------------------------------------------------- /dashboard/.env.development.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/.env.development.example -------------------------------------------------------------------------------- /dashboard/.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/.env.production -------------------------------------------------------------------------------- /dashboard/.env.production.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/.env.production.example -------------------------------------------------------------------------------- /dashboard/.env.staging: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/.env.staging -------------------------------------------------------------------------------- /dashboard/.eslintignore: -------------------------------------------------------------------------------- 1 | build/*.js 2 | src/assets 3 | public 4 | dist 5 | -------------------------------------------------------------------------------- /dashboard/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/.eslintrc.js -------------------------------------------------------------------------------- /dashboard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/.gitignore -------------------------------------------------------------------------------- /dashboard/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/.travis.yml -------------------------------------------------------------------------------- /dashboard/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/LICENSE -------------------------------------------------------------------------------- /dashboard/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/babel.config.js -------------------------------------------------------------------------------- /dashboard/build/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/build/index.js -------------------------------------------------------------------------------- /dashboard/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/jest.config.js -------------------------------------------------------------------------------- /dashboard/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/jsconfig.json -------------------------------------------------------------------------------- /dashboard/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/package.json -------------------------------------------------------------------------------- /dashboard/plop-templates/component/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/plop-templates/component/index.hbs -------------------------------------------------------------------------------- /dashboard/plop-templates/component/prompt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/plop-templates/component/prompt.js -------------------------------------------------------------------------------- /dashboard/plop-templates/store/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/plop-templates/store/index.hbs -------------------------------------------------------------------------------- /dashboard/plop-templates/store/prompt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/plop-templates/store/prompt.js -------------------------------------------------------------------------------- /dashboard/plop-templates/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/plop-templates/utils.js -------------------------------------------------------------------------------- /dashboard/plop-templates/view/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/plop-templates/view/index.hbs -------------------------------------------------------------------------------- /dashboard/plop-templates/view/prompt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/plop-templates/view/prompt.js -------------------------------------------------------------------------------- /dashboard/plopfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/plopfile.js -------------------------------------------------------------------------------- /dashboard/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/postcss.config.js -------------------------------------------------------------------------------- /dashboard/public/alipay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/public/alipay.jpg -------------------------------------------------------------------------------- /dashboard/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/public/favicon.ico -------------------------------------------------------------------------------- /dashboard/public/favicon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/public/favicon1.ico -------------------------------------------------------------------------------- /dashboard/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/public/index.html -------------------------------------------------------------------------------- /dashboard/public/qqqun.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/public/qqqun.jpg -------------------------------------------------------------------------------- /dashboard/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / -------------------------------------------------------------------------------- /dashboard/public/wechatpay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/public/wechatpay.jpg -------------------------------------------------------------------------------- /dashboard/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/App.vue -------------------------------------------------------------------------------- /dashboard/src/api/control_panel/database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/api/control_panel/database.js -------------------------------------------------------------------------------- /dashboard/src/api/hiker/developer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/api/hiker/developer.js -------------------------------------------------------------------------------- /dashboard/src/api/hiker/rule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/api/hiker/rule.js -------------------------------------------------------------------------------- /dashboard/src/api/hiker/rule_type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/api/hiker/rule_type.js -------------------------------------------------------------------------------- /dashboard/src/api/monitor/cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/api/monitor/cache.js -------------------------------------------------------------------------------- /dashboard/src/api/monitor/job.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/api/monitor/job.js -------------------------------------------------------------------------------- /dashboard/src/api/monitor/jobLog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/api/monitor/jobLog.js -------------------------------------------------------------------------------- /dashboard/src/api/monitor/logininfor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/api/monitor/logininfor.js -------------------------------------------------------------------------------- /dashboard/src/api/monitor/online.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/api/monitor/online.js -------------------------------------------------------------------------------- /dashboard/src/api/monitor/operlog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/api/monitor/operlog.js -------------------------------------------------------------------------------- /dashboard/src/api/monitor/pip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/api/monitor/pip.js -------------------------------------------------------------------------------- /dashboard/src/api/monitor/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/api/monitor/server.js -------------------------------------------------------------------------------- /dashboard/src/api/permission/label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/api/permission/label.js -------------------------------------------------------------------------------- /dashboard/src/api/permission/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/api/permission/menu.js -------------------------------------------------------------------------------- /dashboard/src/api/permission/role.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/api/permission/role.js -------------------------------------------------------------------------------- /dashboard/src/api/permission/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/api/permission/user.js -------------------------------------------------------------------------------- /dashboard/src/api/system/dict/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/api/system/dict/data.js -------------------------------------------------------------------------------- /dashboard/src/api/system/dict/detail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/api/system/dict/detail.js -------------------------------------------------------------------------------- /dashboard/src/api/system/parameter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/api/system/parameter.js -------------------------------------------------------------------------------- /dashboard/src/api/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/api/user.js -------------------------------------------------------------------------------- /dashboard/src/api/vod/configs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/api/vod/configs.js -------------------------------------------------------------------------------- /dashboard/src/api/vod/houses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/api/vod/houses.js -------------------------------------------------------------------------------- /dashboard/src/api/vod/rules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/api/vod/rules.js -------------------------------------------------------------------------------- /dashboard/src/api/vod/subs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/api/vod/subs.js -------------------------------------------------------------------------------- /dashboard/src/api/vod/web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/api/vod/web.js -------------------------------------------------------------------------------- /dashboard/src/assets/401_images/401.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/401_images/401.gif -------------------------------------------------------------------------------- /dashboard/src/assets/404_images/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/404_images/404.png -------------------------------------------------------------------------------- /dashboard/src/assets/404_images/404_cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/404_images/404_cloud.png -------------------------------------------------------------------------------- /dashboard/src/assets/custom-theme/fonts/element-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/custom-theme/fonts/element-icons.ttf -------------------------------------------------------------------------------- /dashboard/src/assets/custom-theme/fonts/element-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/custom-theme/fonts/element-icons.woff -------------------------------------------------------------------------------- /dashboard/src/assets/custom-theme/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/custom-theme/index.css -------------------------------------------------------------------------------- /dashboard/src/assets/doc/less2css.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/doc/less2css.md -------------------------------------------------------------------------------- /dashboard/src/assets/icons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/index.js -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/404.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/bug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/bug.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/build.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/build.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/button.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/cascader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/cascader.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/chart.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/checkbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/checkbox.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/clipboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/clipboard.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/code.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/color.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/component.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/component.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/dashboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/dashboard.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/date-range.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/date-range.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/date.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/date.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/dict.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/dict.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/documentation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/documentation.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/download.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/drag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/drag.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/druid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/druid.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/edit.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/education.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/education.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/email.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/example.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/excel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/excel.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/exit-fullscreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/exit-fullscreen.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/eye-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/eye-open.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/eye.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/form.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/form.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/fullscreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/fullscreen.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/github.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/guide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/guide.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/icon.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/input.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/input.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/international.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/international.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/job.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/job.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/language.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/language.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/link.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/list.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/lock.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/log.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/log.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/logininfor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/logininfor.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/message.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/money.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/money.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/monitor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/monitor.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/nested.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/nested.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/number.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/number.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/online.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/online.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/password.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/password.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/pdf.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/people.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/people.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/peoples.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/peoples.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/phone.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/post.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/post.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/qq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/qq.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/question.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/question.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/radio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/radio.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/rate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/rate.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/redis-list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/redis-list.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/redis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/redis.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/row.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/row.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/search.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/select.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/select.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/server.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/server.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/shopping.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/shopping.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/size.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/size.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/skill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/skill.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/slider.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/slider.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/star.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/swagger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/swagger.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/switch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/switch.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/system.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/system.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/tab.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/table.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/textarea.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/textarea.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/theme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/theme.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/time-range.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/time-range.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/time.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/time.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/tool.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/tool.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/tree-table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/tree-table.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/tree.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/upload.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/user.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/validCode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/validCode.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/wechat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/wechat.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svg/zip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svg/zip.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/svgo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/icons/svgo.yml -------------------------------------------------------------------------------- /dashboard/src/assets/images/dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/images/dark.svg -------------------------------------------------------------------------------- /dashboard/src/assets/images/light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/images/light.svg -------------------------------------------------------------------------------- /dashboard/src/assets/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/images/loading.gif -------------------------------------------------------------------------------- /dashboard/src/assets/images/login-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/images/login-background.jpg -------------------------------------------------------------------------------- /dashboard/src/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/images/logo.png -------------------------------------------------------------------------------- /dashboard/src/assets/images/pay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/images/pay.png -------------------------------------------------------------------------------- /dashboard/src/assets/images/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/images/profile.jpg -------------------------------------------------------------------------------- /dashboard/src/assets/logo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/assets/logo/logo.png -------------------------------------------------------------------------------- /dashboard/src/components/BackToTop/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/BackToTop/index.vue -------------------------------------------------------------------------------- /dashboard/src/components/Breadcrumb/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/Breadcrumb/index.vue -------------------------------------------------------------------------------- /dashboard/src/components/Charts/Keyboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/Charts/Keyboard.vue -------------------------------------------------------------------------------- /dashboard/src/components/Charts/LineMarker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/Charts/LineMarker.vue -------------------------------------------------------------------------------- /dashboard/src/components/Charts/MixChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/Charts/MixChart.vue -------------------------------------------------------------------------------- /dashboard/src/components/Charts/mixins/resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/Charts/mixins/resize.js -------------------------------------------------------------------------------- /dashboard/src/components/CodeEditor/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/CodeEditor/index.vue -------------------------------------------------------------------------------- /dashboard/src/components/Crontab/day.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/Crontab/day.vue -------------------------------------------------------------------------------- /dashboard/src/components/Crontab/hour.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/Crontab/hour.vue -------------------------------------------------------------------------------- /dashboard/src/components/Crontab/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/Crontab/index.vue -------------------------------------------------------------------------------- /dashboard/src/components/Crontab/min.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/Crontab/min.vue -------------------------------------------------------------------------------- /dashboard/src/components/Crontab/month.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/Crontab/month.vue -------------------------------------------------------------------------------- /dashboard/src/components/Crontab/result.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/Crontab/result.vue -------------------------------------------------------------------------------- /dashboard/src/components/Crontab/second.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/Crontab/second.vue -------------------------------------------------------------------------------- /dashboard/src/components/Crontab/week.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/Crontab/week.vue -------------------------------------------------------------------------------- /dashboard/src/components/Crontab/year.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/Crontab/year.vue -------------------------------------------------------------------------------- /dashboard/src/components/DictTag/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/DictTag/index.vue -------------------------------------------------------------------------------- /dashboard/src/components/DndList/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/DndList/index.vue -------------------------------------------------------------------------------- /dashboard/src/components/DragSelect/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/DragSelect/index.vue -------------------------------------------------------------------------------- /dashboard/src/components/Dropzone/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/Dropzone/index.vue -------------------------------------------------------------------------------- /dashboard/src/components/Editor/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/Editor/index.vue -------------------------------------------------------------------------------- /dashboard/src/components/ErrorLog/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/ErrorLog/index.vue -------------------------------------------------------------------------------- /dashboard/src/components/FileUpload/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/FileUpload/index.vue -------------------------------------------------------------------------------- /dashboard/src/components/GithubCorner/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/GithubCorner/index.vue -------------------------------------------------------------------------------- /dashboard/src/components/Hamburger/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/Hamburger/index.vue -------------------------------------------------------------------------------- /dashboard/src/components/HeaderSearch/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/HeaderSearch/index.vue -------------------------------------------------------------------------------- /dashboard/src/components/IconSelect/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/IconSelect/index.vue -------------------------------------------------------------------------------- /dashboard/src/components/IconSelect/requireIcons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/IconSelect/requireIcons.js -------------------------------------------------------------------------------- /dashboard/src/components/ImageCropper/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/ImageCropper/index.vue -------------------------------------------------------------------------------- /dashboard/src/components/ImageCropper/utils/data2blob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/ImageCropper/utils/data2blob.js -------------------------------------------------------------------------------- /dashboard/src/components/ImageCropper/utils/effectRipple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/ImageCropper/utils/effectRipple.js -------------------------------------------------------------------------------- /dashboard/src/components/ImageCropper/utils/language.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/ImageCropper/utils/language.js -------------------------------------------------------------------------------- /dashboard/src/components/ImageCropper/utils/mimes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/ImageCropper/utils/mimes.js -------------------------------------------------------------------------------- /dashboard/src/components/ImagePreview/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/ImagePreview/index.vue -------------------------------------------------------------------------------- /dashboard/src/components/ImageUpload/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/ImageUpload/index.vue -------------------------------------------------------------------------------- /dashboard/src/components/JsonEditor/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/JsonEditor/index.vue -------------------------------------------------------------------------------- /dashboard/src/components/Kanban/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/Kanban/index.vue -------------------------------------------------------------------------------- /dashboard/src/components/MDinput/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/MDinput/index.vue -------------------------------------------------------------------------------- /dashboard/src/components/MarkdownEditor/default-options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/MarkdownEditor/default-options.js -------------------------------------------------------------------------------- /dashboard/src/components/MarkdownEditor/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/MarkdownEditor/index.vue -------------------------------------------------------------------------------- /dashboard/src/components/Pagination/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/Pagination/index.vue -------------------------------------------------------------------------------- /dashboard/src/components/PanThumb/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/PanThumb/index.vue -------------------------------------------------------------------------------- /dashboard/src/components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/README.md -------------------------------------------------------------------------------- /dashboard/src/components/RightPanel/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/RightPanel/index.vue -------------------------------------------------------------------------------- /dashboard/src/components/RightToolbar/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/RightToolbar/index.vue -------------------------------------------------------------------------------- /dashboard/src/components/Screenfull/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/Screenfull/index.vue -------------------------------------------------------------------------------- /dashboard/src/components/Share/DropdownMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/Share/DropdownMenu.vue -------------------------------------------------------------------------------- /dashboard/src/components/SizeSelect/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/SizeSelect/index.vue -------------------------------------------------------------------------------- /dashboard/src/components/Sticky/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/Sticky/index.vue -------------------------------------------------------------------------------- /dashboard/src/components/SvgIcon/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/SvgIcon/index.vue -------------------------------------------------------------------------------- /dashboard/src/components/TextHoverEffect/Mallki.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/TextHoverEffect/Mallki.vue -------------------------------------------------------------------------------- /dashboard/src/components/ThemePicker/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/ThemePicker/index.vue -------------------------------------------------------------------------------- /dashboard/src/components/Tinymce/components/EditorImage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/Tinymce/components/EditorImage.vue -------------------------------------------------------------------------------- /dashboard/src/components/Tinymce/dynamicLoadScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/Tinymce/dynamicLoadScript.js -------------------------------------------------------------------------------- /dashboard/src/components/Tinymce/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/Tinymce/index.vue -------------------------------------------------------------------------------- /dashboard/src/components/Tinymce/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/Tinymce/plugins.js -------------------------------------------------------------------------------- /dashboard/src/components/Tinymce/toolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/Tinymce/toolbar.js -------------------------------------------------------------------------------- /dashboard/src/components/Upload/SingleImage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/Upload/SingleImage.vue -------------------------------------------------------------------------------- /dashboard/src/components/Upload/SingleImage2.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/Upload/SingleImage2.vue -------------------------------------------------------------------------------- /dashboard/src/components/Upload/SingleImage3.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/Upload/SingleImage3.vue -------------------------------------------------------------------------------- /dashboard/src/components/UploadExcel/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/UploadExcel/index.vue -------------------------------------------------------------------------------- /dashboard/src/components/iFrame/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/components/iFrame/index.vue -------------------------------------------------------------------------------- /dashboard/src/directive/button_permission/hasPermi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/directive/button_permission/hasPermi.js -------------------------------------------------------------------------------- /dashboard/src/directive/button_permission/hasRole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/directive/button_permission/hasRole.js -------------------------------------------------------------------------------- /dashboard/src/directive/button_permission/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/directive/button_permission/index.js -------------------------------------------------------------------------------- /dashboard/src/directive/clipboard/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/directive/clipboard/clipboard.js -------------------------------------------------------------------------------- /dashboard/src/directive/clipboard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/directive/clipboard/index.js -------------------------------------------------------------------------------- /dashboard/src/directive/el-drag-dialog/drag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/directive/el-drag-dialog/drag.js -------------------------------------------------------------------------------- /dashboard/src/directive/el-drag-dialog/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/directive/el-drag-dialog/index.js -------------------------------------------------------------------------------- /dashboard/src/directive/el-table/adaptive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/directive/el-table/adaptive.js -------------------------------------------------------------------------------- /dashboard/src/directive/el-table/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/directive/el-table/index.js -------------------------------------------------------------------------------- /dashboard/src/directive/permission/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/directive/permission/index.js -------------------------------------------------------------------------------- /dashboard/src/directive/permission/permission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/directive/permission/permission.js -------------------------------------------------------------------------------- /dashboard/src/directive/sticky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/directive/sticky.js -------------------------------------------------------------------------------- /dashboard/src/directive/waves/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/directive/waves/index.js -------------------------------------------------------------------------------- /dashboard/src/directive/waves/waves.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/directive/waves/waves.css -------------------------------------------------------------------------------- /dashboard/src/directive/waves/waves.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/directive/waves/waves.js -------------------------------------------------------------------------------- /dashboard/src/filters/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/filters/index.js -------------------------------------------------------------------------------- /dashboard/src/icons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/index.js -------------------------------------------------------------------------------- /dashboard/src/icons/svg/404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/404.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/bug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/bug.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/build.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/build.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/cascader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/cascader.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/chart.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/checkbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/checkbox.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/clipboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/clipboard.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/code.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/color.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/component.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/component.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/dashboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/dashboard.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/date-range.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/date-range.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/date.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/date.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/dict.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/dict.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/documentation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/documentation.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/download.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/drag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/drag.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/druid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/druid.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/edit.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/education.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/education.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/email.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/example.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/excel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/excel.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/exit-fullscreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/exit-fullscreen.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/eye-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/eye-open.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/eye.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/form.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/form.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/fullscreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/fullscreen.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/github.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/guide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/guide.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/icon.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/input.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/input.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/international.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/international.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/job.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/job.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/language.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/language.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/link.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/list.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/lock.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/log.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/log.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/logininfor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/logininfor.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/message.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/money.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/money.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/monitor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/monitor.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/nested.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/nested.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/number.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/number.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/online.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/online.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/password.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/password.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/pdf.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/people.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/people.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/peoples.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/peoples.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/phone.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/post.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/post.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/qq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/qq.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/question.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/question.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/radio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/radio.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/rate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/rate.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/row.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/row.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/search.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/select.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/select.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/server.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/server.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/shopping.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/shopping.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/size.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/size.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/skill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/skill.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/slider.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/slider.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/star.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/swagger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/swagger.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/switch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/switch.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/system.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/system.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/tab.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/table.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/textarea.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/textarea.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/theme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/theme.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/time-range.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/time-range.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/time.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/time.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/tool.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/tool.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/tree-table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/tree-table.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/tree.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/upload.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/user.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/validCode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/validCode.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/wechat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/wechat.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svg/zip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svg/zip.svg -------------------------------------------------------------------------------- /dashboard/src/icons/svgo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/icons/svgo.yml -------------------------------------------------------------------------------- /dashboard/src/layout/components/AppMain.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/layout/components/AppMain.vue -------------------------------------------------------------------------------- /dashboard/src/layout/components/Navbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/layout/components/Navbar.vue -------------------------------------------------------------------------------- /dashboard/src/layout/components/Settings/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/layout/components/Settings/index.vue -------------------------------------------------------------------------------- /dashboard/src/layout/components/Sidebar/FixiOSBug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/layout/components/Sidebar/FixiOSBug.js -------------------------------------------------------------------------------- /dashboard/src/layout/components/Sidebar/Item.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/layout/components/Sidebar/Item.vue -------------------------------------------------------------------------------- /dashboard/src/layout/components/Sidebar/Link.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/layout/components/Sidebar/Link.vue -------------------------------------------------------------------------------- /dashboard/src/layout/components/Sidebar/Logo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/layout/components/Sidebar/Logo.vue -------------------------------------------------------------------------------- /dashboard/src/layout/components/Sidebar/SidebarItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/layout/components/Sidebar/SidebarItem.vue -------------------------------------------------------------------------------- /dashboard/src/layout/components/Sidebar/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/layout/components/Sidebar/index.vue -------------------------------------------------------------------------------- /dashboard/src/layout/components/TagsView/ScrollPane.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/layout/components/TagsView/ScrollPane.vue -------------------------------------------------------------------------------- /dashboard/src/layout/components/TagsView/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/layout/components/TagsView/index.vue -------------------------------------------------------------------------------- /dashboard/src/layout/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/layout/components/index.js -------------------------------------------------------------------------------- /dashboard/src/layout/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/layout/index.vue -------------------------------------------------------------------------------- /dashboard/src/layout/mixin/ResizeHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/layout/mixin/ResizeHandler.js -------------------------------------------------------------------------------- /dashboard/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/main.js -------------------------------------------------------------------------------- /dashboard/src/permission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/permission.js -------------------------------------------------------------------------------- /dashboard/src/plugins/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/plugins/auth.js -------------------------------------------------------------------------------- /dashboard/src/plugins/cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/plugins/cache.js -------------------------------------------------------------------------------- /dashboard/src/plugins/download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/plugins/download.js -------------------------------------------------------------------------------- /dashboard/src/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/plugins/index.js -------------------------------------------------------------------------------- /dashboard/src/plugins/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/plugins/modal.js -------------------------------------------------------------------------------- /dashboard/src/plugins/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/plugins/tab.js -------------------------------------------------------------------------------- /dashboard/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/router/index.js -------------------------------------------------------------------------------- /dashboard/src/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/settings.js -------------------------------------------------------------------------------- /dashboard/src/store/getters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/store/getters.js -------------------------------------------------------------------------------- /dashboard/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/store/index.js -------------------------------------------------------------------------------- /dashboard/src/store/modules/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/store/modules/app.js -------------------------------------------------------------------------------- /dashboard/src/store/modules/errorLog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/store/modules/errorLog.js -------------------------------------------------------------------------------- /dashboard/src/store/modules/permission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/store/modules/permission.js -------------------------------------------------------------------------------- /dashboard/src/store/modules/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/store/modules/settings.js -------------------------------------------------------------------------------- /dashboard/src/store/modules/tagsView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/store/modules/tagsView.js -------------------------------------------------------------------------------- /dashboard/src/store/modules/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/store/modules/user.js -------------------------------------------------------------------------------- /dashboard/src/store/modules/vod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/store/modules/vod.js -------------------------------------------------------------------------------- /dashboard/src/styles/btn.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/styles/btn.scss -------------------------------------------------------------------------------- /dashboard/src/styles/element-ui.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/styles/element-ui.scss -------------------------------------------------------------------------------- /dashboard/src/styles/element-variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/styles/element-variables.scss -------------------------------------------------------------------------------- /dashboard/src/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/styles/index.scss -------------------------------------------------------------------------------- /dashboard/src/styles/mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/styles/mixin.scss -------------------------------------------------------------------------------- /dashboard/src/styles/reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/styles/reset.scss -------------------------------------------------------------------------------- /dashboard/src/styles/ruoyi.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/styles/ruoyi.scss -------------------------------------------------------------------------------- /dashboard/src/styles/sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/styles/sidebar.scss -------------------------------------------------------------------------------- /dashboard/src/styles/transition.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/styles/transition.scss -------------------------------------------------------------------------------- /dashboard/src/styles/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/styles/variables.scss -------------------------------------------------------------------------------- /dashboard/src/utils/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/utils/auth.js -------------------------------------------------------------------------------- /dashboard/src/utils/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/utils/clipboard.js -------------------------------------------------------------------------------- /dashboard/src/utils/error-log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/utils/error-log.js -------------------------------------------------------------------------------- /dashboard/src/utils/errorCode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/utils/errorCode.js -------------------------------------------------------------------------------- /dashboard/src/utils/generator/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/utils/generator/config.js -------------------------------------------------------------------------------- /dashboard/src/utils/generator/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/utils/generator/css.js -------------------------------------------------------------------------------- /dashboard/src/utils/generator/drawingDefault.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/utils/generator/drawingDefault.js -------------------------------------------------------------------------------- /dashboard/src/utils/generator/html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/utils/generator/html.js -------------------------------------------------------------------------------- /dashboard/src/utils/generator/icon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/utils/generator/icon.json -------------------------------------------------------------------------------- /dashboard/src/utils/generator/js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/utils/generator/js.js -------------------------------------------------------------------------------- /dashboard/src/utils/generator/render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/utils/generator/render.js -------------------------------------------------------------------------------- /dashboard/src/utils/get-page-title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/utils/get-page-title.js -------------------------------------------------------------------------------- /dashboard/src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/utils/index.js -------------------------------------------------------------------------------- /dashboard/src/utils/jsencrypt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/utils/jsencrypt.js -------------------------------------------------------------------------------- /dashboard/src/utils/open-window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/utils/open-window.js -------------------------------------------------------------------------------- /dashboard/src/utils/permission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/utils/permission.js -------------------------------------------------------------------------------- /dashboard/src/utils/random.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/utils/random.js -------------------------------------------------------------------------------- /dashboard/src/utils/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/utils/request.js -------------------------------------------------------------------------------- /dashboard/src/utils/ruoyi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/utils/ruoyi.js -------------------------------------------------------------------------------- /dashboard/src/utils/scroll-to.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/utils/scroll-to.js -------------------------------------------------------------------------------- /dashboard/src/utils/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/utils/validate.js -------------------------------------------------------------------------------- /dashboard/src/vendor/Export2Excel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/vendor/Export2Excel.js -------------------------------------------------------------------------------- /dashboard/src/vendor/Export2Zip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/vendor/Export2Zip.js -------------------------------------------------------------------------------- /dashboard/src/views/components/icons/element-icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/components/icons/element-icons.js -------------------------------------------------------------------------------- /dashboard/src/views/components/icons/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/components/icons/index.vue -------------------------------------------------------------------------------- /dashboard/src/views/components/icons/svg-icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/components/icons/svg-icons.js -------------------------------------------------------------------------------- /dashboard/src/views/control_panel/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/control_panel/index.vue -------------------------------------------------------------------------------- /dashboard/src/views/dashboard/admin/components/BarChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/dashboard/admin/components/BarChart.vue -------------------------------------------------------------------------------- /dashboard/src/views/dashboard/admin/components/BoxCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/dashboard/admin/components/BoxCard.vue -------------------------------------------------------------------------------- /dashboard/src/views/dashboard/admin/components/LineChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/dashboard/admin/components/LineChart.vue -------------------------------------------------------------------------------- /dashboard/src/views/dashboard/admin/components/PanelGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/dashboard/admin/components/PanelGroup.vue -------------------------------------------------------------------------------- /dashboard/src/views/dashboard/admin/components/PieChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/dashboard/admin/components/PieChart.vue -------------------------------------------------------------------------------- /dashboard/src/views/dashboard/admin/components/RaddarChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/dashboard/admin/components/RaddarChart.vue -------------------------------------------------------------------------------- /dashboard/src/views/dashboard/admin/components/TodoList/Todo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/dashboard/admin/components/TodoList/Todo.vue -------------------------------------------------------------------------------- /dashboard/src/views/dashboard/admin/components/TodoList/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/dashboard/admin/components/TodoList/index.scss -------------------------------------------------------------------------------- /dashboard/src/views/dashboard/admin/components/TodoList/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/dashboard/admin/components/TodoList/index.vue -------------------------------------------------------------------------------- /dashboard/src/views/dashboard/admin/components/mixins/resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/dashboard/admin/components/mixins/resize.js -------------------------------------------------------------------------------- /dashboard/src/views/dashboard/admin/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/dashboard/admin/index.vue -------------------------------------------------------------------------------- /dashboard/src/views/dashboard/editor/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/dashboard/editor/index.vue -------------------------------------------------------------------------------- /dashboard/src/views/dashboard/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/dashboard/index.vue -------------------------------------------------------------------------------- /dashboard/src/views/error-page/401.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/error-page/401.vue -------------------------------------------------------------------------------- /dashboard/src/views/error-page/404.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/error-page/404.vue -------------------------------------------------------------------------------- /dashboard/src/views/hiker/developer/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/hiker/developer/index.vue -------------------------------------------------------------------------------- /dashboard/src/views/hiker/rule/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/hiker/rule/index.vue -------------------------------------------------------------------------------- /dashboard/src/views/hiker/rule_type/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/hiker/rule_type/index.vue -------------------------------------------------------------------------------- /dashboard/src/views/monitor/cache/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/monitor/cache/index.vue -------------------------------------------------------------------------------- /dashboard/src/views/monitor/cache/list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/monitor/cache/list.vue -------------------------------------------------------------------------------- /dashboard/src/views/monitor/druid/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/monitor/druid/index.vue -------------------------------------------------------------------------------- /dashboard/src/views/monitor/job/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/monitor/job/index.vue -------------------------------------------------------------------------------- /dashboard/src/views/monitor/job/log.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/monitor/job/log.vue -------------------------------------------------------------------------------- /dashboard/src/views/monitor/logininfor/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/monitor/logininfor/index.vue -------------------------------------------------------------------------------- /dashboard/src/views/monitor/online/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/monitor/online/index.vue -------------------------------------------------------------------------------- /dashboard/src/views/monitor/operlog/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/monitor/operlog/index.vue -------------------------------------------------------------------------------- /dashboard/src/views/monitor/pip/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/monitor/pip/index.vue -------------------------------------------------------------------------------- /dashboard/src/views/monitor/server/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/monitor/server/index.vue -------------------------------------------------------------------------------- /dashboard/src/views/permission/label/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/permission/label/index.vue -------------------------------------------------------------------------------- /dashboard/src/views/permission/menu/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/permission/menu/index.vue -------------------------------------------------------------------------------- /dashboard/src/views/permission/role/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/permission/role/index.vue -------------------------------------------------------------------------------- /dashboard/src/views/permission/user/AvatarUpload.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/permission/user/AvatarUpload.vue -------------------------------------------------------------------------------- /dashboard/src/views/permission/user/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/permission/user/index.vue -------------------------------------------------------------------------------- /dashboard/src/views/profile/components/Account.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/profile/components/Account.vue -------------------------------------------------------------------------------- /dashboard/src/views/profile/components/ResetPwd.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/profile/components/ResetPwd.vue -------------------------------------------------------------------------------- /dashboard/src/views/profile/components/UserCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/profile/components/UserCard.vue -------------------------------------------------------------------------------- /dashboard/src/views/profile/components/userAvatar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/profile/components/userAvatar.vue -------------------------------------------------------------------------------- /dashboard/src/views/profile/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/profile/index.vue -------------------------------------------------------------------------------- /dashboard/src/views/redirect/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/redirect/index.vue -------------------------------------------------------------------------------- /dashboard/src/views/system/dict/detail/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/system/dict/detail/index.vue -------------------------------------------------------------------------------- /dashboard/src/views/system/dict/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/system/dict/index.vue -------------------------------------------------------------------------------- /dashboard/src/views/system/parameter/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/system/parameter/index.vue -------------------------------------------------------------------------------- /dashboard/src/views/tool/blog/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/tool/blog/index.vue -------------------------------------------------------------------------------- /dashboard/src/views/tool/build/CodeTypeDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/tool/build/CodeTypeDialog.vue -------------------------------------------------------------------------------- /dashboard/src/views/tool/build/DraggableItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/tool/build/DraggableItem.vue -------------------------------------------------------------------------------- /dashboard/src/views/tool/build/IconsDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/tool/build/IconsDialog.vue -------------------------------------------------------------------------------- /dashboard/src/views/tool/build/RightPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/tool/build/RightPanel.vue -------------------------------------------------------------------------------- /dashboard/src/views/tool/build/TreeNodeDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/tool/build/TreeNodeDialog.vue -------------------------------------------------------------------------------- /dashboard/src/views/tool/build/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/tool/build/index.vue -------------------------------------------------------------------------------- /dashboard/src/views/tool/liveTool/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/tool/liveTool/index.vue -------------------------------------------------------------------------------- /dashboard/src/views/tool/liveTool/logo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/tool/liveTool/logo.json -------------------------------------------------------------------------------- /dashboard/src/views/tool/liveTool/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/tool/liveTool/styles.scss -------------------------------------------------------------------------------- /dashboard/src/views/tool/swagger/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/tool/swagger/index.vue -------------------------------------------------------------------------------- /dashboard/src/views/tool/xfgpt/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/tool/xfgpt/index.vue -------------------------------------------------------------------------------- /dashboard/src/views/user/forgetPassword/SetPassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/user/forgetPassword/SetPassword.vue -------------------------------------------------------------------------------- /dashboard/src/views/user/forgetPassword/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/user/forgetPassword/index.vue -------------------------------------------------------------------------------- /dashboard/src/views/user/layout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/user/layout.vue -------------------------------------------------------------------------------- /dashboard/src/views/user/login/auth-redirect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/user/login/auth-redirect.vue -------------------------------------------------------------------------------- /dashboard/src/views/user/login/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/user/login/index.vue -------------------------------------------------------------------------------- /dashboard/src/views/user/register/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/user/register/index.vue -------------------------------------------------------------------------------- /dashboard/src/views/user/register/verify.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/user/register/verify.vue -------------------------------------------------------------------------------- /dashboard/src/views/vod/configs/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/vod/configs/index.vue -------------------------------------------------------------------------------- /dashboard/src/views/vod/houses/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/vod/houses/index.vue -------------------------------------------------------------------------------- /dashboard/src/views/vod/rules/edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/vod/rules/edit.vue -------------------------------------------------------------------------------- /dashboard/src/views/vod/rules/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/vod/rules/index.vue -------------------------------------------------------------------------------- /dashboard/src/views/vod/subs/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/vod/subs/index.vue -------------------------------------------------------------------------------- /dashboard/src/views/vod/web/about.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/vod/web/about.vue -------------------------------------------------------------------------------- /dashboard/src/views/vod/web/components/filter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/vod/web/components/filter.vue -------------------------------------------------------------------------------- /dashboard/src/views/vod/web/components/footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/vod/web/components/footer.vue -------------------------------------------------------------------------------- /dashboard/src/views/vod/web/components/header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/vod/web/components/header.vue -------------------------------------------------------------------------------- /dashboard/src/views/vod/web/components/menu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/vod/web/components/menu.vue -------------------------------------------------------------------------------- /dashboard/src/views/vod/web/components/videoList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/vod/web/components/videoList.vue -------------------------------------------------------------------------------- /dashboard/src/views/vod/web/home/category.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/vod/web/home/category.vue -------------------------------------------------------------------------------- /dashboard/src/views/vod/web/home/detail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/vod/web/home/detail.vue -------------------------------------------------------------------------------- /dashboard/src/views/vod/web/home/search.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/vod/web/home/search.vue -------------------------------------------------------------------------------- /dashboard/src/views/vod/web/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/src/views/vod/web/index.vue -------------------------------------------------------------------------------- /dashboard/tests/unit/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/tests/unit/.eslintrc.js -------------------------------------------------------------------------------- /dashboard/tests/unit/components/Hamburger.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/tests/unit/components/Hamburger.spec.js -------------------------------------------------------------------------------- /dashboard/tests/unit/components/SvgIcon.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/tests/unit/components/SvgIcon.spec.js -------------------------------------------------------------------------------- /dashboard/tests/unit/utils/formatTime.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/tests/unit/utils/formatTime.spec.js -------------------------------------------------------------------------------- /dashboard/tests/unit/utils/param2Obj.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/tests/unit/utils/param2Obj.spec.js -------------------------------------------------------------------------------- /dashboard/tests/unit/utils/parseTime.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/tests/unit/utils/parseTime.spec.js -------------------------------------------------------------------------------- /dashboard/tests/unit/utils/validate.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/tests/unit/utils/validate.spec.js -------------------------------------------------------------------------------- /dashboard/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/hipy-ui/HEAD/dashboard/vue.config.js --------------------------------------------------------------------------------