├── .browserslistrc ├── .env.base ├── .env.dev ├── .env.gitee ├── .env.pro ├── .env.test ├── .github ├── ISSUE_TEMPLATE │ ├── bug.yml │ └── feature.yml ├── backup │ ├── ci.yml │ ├── release-mac.yml │ ├── release-pro.yml │ ├── release-win.yml │ └── release.yml └── workflows │ ├── ci-pro-win.yml │ └── release-pro-win.yml ├── .gitignore ├── .husky ├── commit-msg ├── lintstagedrc.cjs └── pre-commit ├── .npmrc ├── .prettierignore ├── .stylelintignore ├── CHANGELOG.md ├── Dockerfile.dev ├── LICENSE ├── LICENSE.zh-cn.md ├── README.md ├── commitlint.config.cjs ├── doc ├── assets │ ├── image-20241025112503453.png │ ├── image-20241025112907169.png │ ├── image-20241025143234326.png │ ├── manage-step1.png │ ├── manage-step2.png │ ├── manage-step3.png │ ├── manage-step4.png │ ├── manage-step5.png │ ├── manage-step6.png │ ├── manage-step7.png │ ├── manage-step8.png │ └── manage-step9.png ├── nssm中文.exe └── nssm英文.exe ├── docker-compose.dev.yaml ├── eslint.config.mjs ├── index.html ├── package.json ├── postcss.config.cjs ├── prettier.config.cjs ├── public ├── favicon.ico └── logo.png ├── scripts └── icon.ts ├── src-tauri ├── .gitignore ├── Cargo.toml ├── build.rs ├── capabilities │ ├── default.json │ └── desktop.json ├── icons │ ├── 128x128.png │ ├── 128x128@2x.png │ ├── 32x32.png │ ├── Square107x107Logo.png │ ├── Square142x142Logo.png │ ├── Square150x150Logo.png │ ├── Square284x284Logo.png │ ├── Square30x30Logo.png │ ├── Square310x310Logo.png │ ├── Square44x44Logo.png │ ├── Square71x71Logo.png │ ├── Square89x89Logo.png │ ├── StoreLogo.png │ ├── android │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ └── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ ├── icon-inactive.ico │ ├── icon.icns │ ├── icon.ico │ ├── icon.png │ ├── icon.rgba │ └── ios │ │ ├── AppIcon-20x20@1x.png │ │ ├── AppIcon-20x20@2x-1.png │ │ ├── AppIcon-20x20@2x.png │ │ ├── AppIcon-20x20@3x.png │ │ ├── AppIcon-29x29@1x.png │ │ ├── AppIcon-29x29@2x-1.png │ │ ├── AppIcon-29x29@2x.png │ │ ├── AppIcon-29x29@3x.png │ │ ├── AppIcon-40x40@1x.png │ │ ├── AppIcon-40x40@2x-1.png │ │ ├── AppIcon-40x40@2x.png │ │ ├── AppIcon-40x40@3x.png │ │ ├── AppIcon-512@2x.png │ │ ├── AppIcon-60x60@2x.png │ │ ├── AppIcon-60x60@3x.png │ │ ├── AppIcon-76x76@1x.png │ │ ├── AppIcon-76x76@2x.png │ │ └── AppIcon-83.5x83.5@2x.png ├── resource │ └── nssm.exe ├── src │ ├── lib.rs │ └── main.rs ├── tauri.conf.json5 └── tauri.windows.conf.json ├── src ├── App.vue ├── api │ ├── dashboard │ │ ├── analysis │ │ │ ├── index.ts │ │ │ └── types.ts │ │ └── workplace │ │ │ ├── index.ts │ │ │ └── types.ts │ └── login │ │ ├── index.ts │ │ └── types.ts ├── assets │ ├── imgs │ │ ├── avatar.jpg │ │ ├── favicon.ico │ │ ├── logo.png │ │ └── logo@512.png │ └── svgs │ │ ├── 403.svg │ │ ├── 404.svg │ │ ├── 500.svg │ │ ├── Easy-Tier.svg │ │ ├── icon.svg │ │ ├── login-bg.svg │ │ ├── login-box-bg.svg │ │ ├── message.svg │ │ ├── money.svg │ │ ├── peoples.svg │ │ └── shopping.svg ├── axios │ ├── config.ts │ ├── index.ts │ ├── service.ts │ └── types │ │ └── index.ts ├── components │ ├── Avatars │ │ ├── index.ts │ │ └── src │ │ │ ├── Avatars.vue │ │ │ └── types │ │ │ └── index.ts │ ├── Backtop │ │ ├── index.ts │ │ └── src │ │ │ └── Backtop.vue │ ├── Breadcrumb │ │ ├── index.ts │ │ └── src │ │ │ ├── Breadcrumb.vue │ │ │ └── helper.ts │ ├── Button │ │ ├── index.ts │ │ └── src │ │ │ └── Button.vue │ ├── CodeEditor │ │ ├── index.ts │ │ └── src │ │ │ ├── CodeEditor.vue │ │ │ └── config │ │ │ └── config.ts │ ├── Collapse │ │ ├── index.ts │ │ └── src │ │ │ └── Collapse.vue │ ├── ConfigGlobal │ │ ├── index.ts │ │ └── src │ │ │ ├── ConfigGlobal.vue │ │ │ └── types │ │ │ └── index.ts │ ├── ContentDetailWrap │ │ ├── index.ts │ │ └── src │ │ │ └── ContentDetailWrap.vue │ ├── ContentWrap │ │ ├── index.ts │ │ └── src │ │ │ └── ContentWrap.vue │ ├── ContextMenu │ │ ├── index.ts │ │ └── src │ │ │ ├── ContextMenu.vue │ │ │ └── types │ │ │ └── index.ts │ ├── CountTo │ │ ├── index.ts │ │ └── src │ │ │ └── CountTo.vue │ ├── Descriptions │ │ ├── index.ts │ │ └── src │ │ │ ├── Descriptions.vue │ │ │ └── types │ │ │ └── index.ts │ ├── Dialog │ │ ├── hooks │ │ │ └── useResize.ts │ │ ├── index.ts │ │ └── src │ │ │ ├── Dialog.vue │ │ │ └── ResizeDialog.vue │ ├── Echart │ │ ├── index.ts │ │ └── src │ │ │ └── Echart.vue │ ├── Error │ │ ├── index.ts │ │ └── src │ │ │ └── Error.vue │ ├── Footer │ │ ├── index.ts │ │ └── src │ │ │ └── Footer.vue │ ├── Highlight │ │ ├── index.ts │ │ └── src │ │ │ └── Highlight.vue │ ├── IAgree │ │ ├── index.ts │ │ └── src │ │ │ ├── IAgree.vue │ │ │ └── types │ │ │ └── index.ts │ ├── Icon │ │ ├── index.ts │ │ └── src │ │ │ ├── Icon.vue │ │ │ └── types │ │ │ └── index.ts │ ├── IconPicker │ │ ├── index.ts │ │ └── src │ │ │ ├── IconPicker.vue │ │ │ └── data │ │ │ ├── icons.ant-design.ts │ │ │ ├── icons.ep.ts │ │ │ └── icons.tdesign.ts │ ├── ImageCropping │ │ ├── index.ts │ │ └── src │ │ │ └── ImageCropping.vue │ ├── ImageViewer │ │ ├── index.ts │ │ └── src │ │ │ ├── ImageViewer.vue │ │ │ └── types │ │ │ └── index.ts │ ├── Infotip │ │ ├── index.ts │ │ └── src │ │ │ ├── Infotip.vue │ │ │ └── types │ │ │ └── index.ts │ ├── InputPassword │ │ ├── index.ts │ │ └── src │ │ │ └── InputPassword.vue │ ├── JsonEditor │ │ ├── index.ts │ │ └── src │ │ │ ├── JsonEditor.vue │ │ │ └── types │ │ │ └── index.ts │ ├── LocaleDropdown │ │ ├── index.ts │ │ └── src │ │ │ ├── LocaleDropdown.vue │ │ │ └── types │ │ │ └── index.ts │ ├── Logo │ │ ├── index.ts │ │ └── src │ │ │ └── Logo.vue │ ├── Menu │ │ ├── index.ts │ │ └── src │ │ │ ├── Menu.vue │ │ │ ├── components │ │ │ ├── useRenderMenuItem.tsx │ │ │ └── useRenderMenuTitle.tsx │ │ │ └── helper.ts │ ├── Permission │ │ ├── index.ts │ │ └── src │ │ │ ├── Permission.vue │ │ │ └── utils.ts │ ├── Qrcode │ │ ├── index.ts │ │ └── src │ │ │ ├── Qrcode.vue │ │ │ └── types │ │ │ └── index.ts │ ├── Screenfull │ │ ├── index.ts │ │ └── src │ │ │ └── Screenfull.vue │ ├── Search │ │ ├── index.ts │ │ └── src │ │ │ ├── Search.vue │ │ │ ├── components │ │ │ └── ActionButton.vue │ │ │ └── types │ │ │ └── index.ts │ ├── Setting │ │ ├── index.ts │ │ └── src │ │ │ ├── Setting.vue │ │ │ └── components │ │ │ ├── ColorRadioPicker.vue │ │ │ ├── InterfaceDisplay.vue │ │ │ └── LayoutRadioPicker.vue │ ├── SizeDropdown │ │ ├── index.ts │ │ └── src │ │ │ └── SizeDropdown.vue │ ├── TabMenu │ │ ├── index.ts │ │ └── src │ │ │ ├── TabMenu.vue │ │ │ └── helper.ts │ ├── TagsView │ │ ├── index.ts │ │ └── src │ │ │ ├── TagsView.vue │ │ │ └── helper.ts │ ├── ThemeSwitch │ │ ├── index.ts │ │ └── src │ │ │ └── ThemeSwitch.vue │ ├── VideoPlayer │ │ ├── index.ts │ │ └── src │ │ │ └── VideoPlayer.vue │ ├── VideoPlayerViewer │ │ ├── index.ts │ │ └── src │ │ │ └── VideoPlayerViewer.vue │ ├── Waterfall │ │ ├── index.ts │ │ └── src │ │ │ └── Waterfall.vue │ └── index.ts ├── constants │ ├── defaultData.ts │ ├── easytier.ts │ └── index.ts ├── directives │ ├── index.ts │ └── permission │ │ └── hasPermi.ts ├── hooks │ ├── event │ │ ├── useEventBus.ts │ │ └── useScrollTo.ts │ └── web │ │ ├── useClipboard.ts │ │ ├── useConfigGlobal.ts │ │ ├── useDesign.ts │ │ ├── useForm.ts │ │ ├── useGuide.ts │ │ ├── useI18n.ts │ │ ├── useIcon.ts │ │ ├── useLocale.ts │ │ ├── useMonacoEditor.ts │ │ ├── useNProgress.ts │ │ ├── useNetwork.ts │ │ ├── useNow.ts │ │ ├── usePageLoading.ts │ │ ├── useSearch.ts │ │ ├── useStorage.ts │ │ ├── useTagsView.ts │ │ ├── useTimeAgo.ts │ │ ├── useTitle.ts │ │ ├── useValidator.ts │ │ └── useWatermark.ts ├── layout │ ├── Layout.vue │ └── components │ │ ├── AppView.vue │ │ ├── ToolHeader.vue │ │ └── useRenderLayout.tsx ├── locales │ ├── en.ts │ └── zh-CN.ts ├── main.ts ├── permission.ts ├── plugins │ ├── animate.css │ │ └── index.ts │ ├── echarts │ │ └── index.ts │ ├── elementPlus │ │ └── index.ts │ ├── svgIcon │ │ └── index.ts │ ├── unocss │ │ └── index.ts │ └── vueI18n │ │ ├── helper.ts │ │ └── index.ts ├── router │ └── index.ts ├── store │ ├── index.ts │ └── modules │ │ ├── app.ts │ │ ├── easytier.ts │ │ ├── locale.ts │ │ ├── lock.ts │ │ ├── permission.ts │ │ ├── tagsView.ts │ │ ├── trayStore.ts │ │ └── user.ts ├── styles │ ├── index.less │ ├── var.css │ └── variables.module.less ├── types │ ├── easyTier.ts │ └── formTypes.ts ├── utils │ ├── color.ts │ ├── dateUtil.ts │ ├── domUtils.ts │ ├── easyTierUtil.ts │ ├── fileUtil.ts │ ├── i18nUtil.ts │ ├── index.ts │ ├── is.ts │ ├── propTypes.ts │ ├── routerHelper.ts │ ├── shellUtil.ts │ ├── sysUtil.ts │ ├── tree.ts │ └── tsxHelper.ts └── views │ ├── Dashboard │ ├── Analysis.vue │ ├── Workplace.vue │ ├── components │ │ └── PanelGroup.vue │ └── echarts-data.ts │ ├── Error │ ├── 403.vue │ ├── 404.vue │ └── 500.vue │ ├── Redirect │ └── Redirect.vue │ ├── config │ ├── Form.vue │ └── index.vue │ ├── configWeb │ ├── form-web.vue │ └── index.vue │ ├── index │ └── index.vue │ └── setting │ └── index.vue ├── stylelint.config.cjs ├── tsconfig.json ├── tsconfig.node.json ├── types ├── components.d.ts ├── env.d.ts ├── global.d.ts └── router.d.ts ├── uno.config.ts └── vite.config.ts /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.env.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/.env.base -------------------------------------------------------------------------------- /.env.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/.env.dev -------------------------------------------------------------------------------- /.env.gitee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/.env.gitee -------------------------------------------------------------------------------- /.env.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/.env.pro -------------------------------------------------------------------------------- /.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/.env.test -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/.github/ISSUE_TEMPLATE/feature.yml -------------------------------------------------------------------------------- /.github/backup/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/.github/backup/ci.yml -------------------------------------------------------------------------------- /.github/backup/release-mac.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/.github/backup/release-mac.yml -------------------------------------------------------------------------------- /.github/backup/release-pro.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/.github/backup/release-pro.yml -------------------------------------------------------------------------------- /.github/backup/release-win.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/.github/backup/release-win.yml -------------------------------------------------------------------------------- /.github/backup/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/.github/backup/release.yml -------------------------------------------------------------------------------- /.github/workflows/ci-pro-win.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/.github/workflows/ci-pro-win.yml -------------------------------------------------------------------------------- /.github/workflows/release-pro-win.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/.github/workflows/release-pro-win.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/lintstagedrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/.husky/lintstagedrc.cjs -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/.prettierignore -------------------------------------------------------------------------------- /.stylelintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/.stylelintignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/Dockerfile.dev -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/LICENSE.zh-cn.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/README.md -------------------------------------------------------------------------------- /commitlint.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/commitlint.config.cjs -------------------------------------------------------------------------------- /doc/assets/image-20241025112503453.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/doc/assets/image-20241025112503453.png -------------------------------------------------------------------------------- /doc/assets/image-20241025112907169.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/doc/assets/image-20241025112907169.png -------------------------------------------------------------------------------- /doc/assets/image-20241025143234326.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/doc/assets/image-20241025143234326.png -------------------------------------------------------------------------------- /doc/assets/manage-step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/doc/assets/manage-step1.png -------------------------------------------------------------------------------- /doc/assets/manage-step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/doc/assets/manage-step2.png -------------------------------------------------------------------------------- /doc/assets/manage-step3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/doc/assets/manage-step3.png -------------------------------------------------------------------------------- /doc/assets/manage-step4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/doc/assets/manage-step4.png -------------------------------------------------------------------------------- /doc/assets/manage-step5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/doc/assets/manage-step5.png -------------------------------------------------------------------------------- /doc/assets/manage-step6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/doc/assets/manage-step6.png -------------------------------------------------------------------------------- /doc/assets/manage-step7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/doc/assets/manage-step7.png -------------------------------------------------------------------------------- /doc/assets/manage-step8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/doc/assets/manage-step8.png -------------------------------------------------------------------------------- /doc/assets/manage-step9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/doc/assets/manage-step9.png -------------------------------------------------------------------------------- /doc/nssm中文.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/doc/nssm中文.exe -------------------------------------------------------------------------------- /doc/nssm英文.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/doc/nssm英文.exe -------------------------------------------------------------------------------- /docker-compose.dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/docker-compose.dev.yaml -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /prettier.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/prettier.config.cjs -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/public/logo.png -------------------------------------------------------------------------------- /scripts/icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/scripts/icon.ts -------------------------------------------------------------------------------- /src-tauri/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/.gitignore -------------------------------------------------------------------------------- /src-tauri/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/Cargo.toml -------------------------------------------------------------------------------- /src-tauri/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/build.rs -------------------------------------------------------------------------------- /src-tauri/capabilities/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/capabilities/default.json -------------------------------------------------------------------------------- /src-tauri/capabilities/desktop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/capabilities/desktop.json -------------------------------------------------------------------------------- /src-tauri/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/icons/128x128.png -------------------------------------------------------------------------------- /src-tauri/icons/128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/icons/128x128@2x.png -------------------------------------------------------------------------------- /src-tauri/icons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/icons/32x32.png -------------------------------------------------------------------------------- /src-tauri/icons/Square107x107Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/icons/Square107x107Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square142x142Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/icons/Square142x142Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square150x150Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/icons/Square150x150Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square284x284Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/icons/Square284x284Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square30x30Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/icons/Square30x30Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square310x310Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/icons/Square310x310Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square44x44Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/icons/Square44x44Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square71x71Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/icons/Square71x71Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square89x89Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/icons/Square89x89Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/icons/StoreLogo.png -------------------------------------------------------------------------------- /src-tauri/icons/android/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/icons/android/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src-tauri/icons/android/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/icons/android/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /src-tauri/icons/android/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/icons/android/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src-tauri/icons/android/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/icons/android/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src-tauri/icons/android/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/icons/android/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /src-tauri/icons/android/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/icons/android/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src-tauri/icons/android/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/icons/android/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src-tauri/icons/android/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/icons/android/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /src-tauri/icons/android/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/icons/android/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src-tauri/icons/android/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src-tauri/icons/icon-inactive.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/icons/icon-inactive.ico -------------------------------------------------------------------------------- /src-tauri/icons/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/icons/icon.icns -------------------------------------------------------------------------------- /src-tauri/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/icons/icon.ico -------------------------------------------------------------------------------- /src-tauri/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/icons/icon.png -------------------------------------------------------------------------------- /src-tauri/icons/icon.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/icons/icon.rgba -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/icons/ios/AppIcon-20x20@1x.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-20x20@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/icons/ios/AppIcon-20x20@2x-1.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/icons/ios/AppIcon-20x20@2x.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/icons/ios/AppIcon-20x20@3x.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/icons/ios/AppIcon-29x29@1x.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-29x29@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/icons/ios/AppIcon-29x29@2x-1.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/icons/ios/AppIcon-29x29@2x.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/icons/ios/AppIcon-29x29@3x.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/icons/ios/AppIcon-40x40@1x.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-40x40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/icons/ios/AppIcon-40x40@2x-1.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/icons/ios/AppIcon-40x40@2x.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/icons/ios/AppIcon-40x40@3x.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/icons/ios/AppIcon-512@2x.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/icons/ios/AppIcon-60x60@2x.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/icons/ios/AppIcon-60x60@3x.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/icons/ios/AppIcon-76x76@1x.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/icons/ios/AppIcon-76x76@2x.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/icons/ios/AppIcon-83.5x83.5@2x.png -------------------------------------------------------------------------------- /src-tauri/resource/nssm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/resource/nssm.exe -------------------------------------------------------------------------------- /src-tauri/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/src/lib.rs -------------------------------------------------------------------------------- /src-tauri/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/src/main.rs -------------------------------------------------------------------------------- /src-tauri/tauri.conf.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/tauri.conf.json5 -------------------------------------------------------------------------------- /src-tauri/tauri.windows.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src-tauri/tauri.windows.conf.json -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/api/dashboard/analysis/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/api/dashboard/analysis/index.ts -------------------------------------------------------------------------------- /src/api/dashboard/analysis/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/api/dashboard/analysis/types.ts -------------------------------------------------------------------------------- /src/api/dashboard/workplace/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/api/dashboard/workplace/index.ts -------------------------------------------------------------------------------- /src/api/dashboard/workplace/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/api/dashboard/workplace/types.ts -------------------------------------------------------------------------------- /src/api/login/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/api/login/index.ts -------------------------------------------------------------------------------- /src/api/login/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/api/login/types.ts -------------------------------------------------------------------------------- /src/assets/imgs/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/assets/imgs/avatar.jpg -------------------------------------------------------------------------------- /src/assets/imgs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/assets/imgs/favicon.ico -------------------------------------------------------------------------------- /src/assets/imgs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/assets/imgs/logo.png -------------------------------------------------------------------------------- /src/assets/imgs/logo@512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/assets/imgs/logo@512.png -------------------------------------------------------------------------------- /src/assets/svgs/403.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/assets/svgs/403.svg -------------------------------------------------------------------------------- /src/assets/svgs/404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/assets/svgs/404.svg -------------------------------------------------------------------------------- /src/assets/svgs/500.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/assets/svgs/500.svg -------------------------------------------------------------------------------- /src/assets/svgs/Easy-Tier.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/assets/svgs/Easy-Tier.svg -------------------------------------------------------------------------------- /src/assets/svgs/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/assets/svgs/icon.svg -------------------------------------------------------------------------------- /src/assets/svgs/login-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/assets/svgs/login-bg.svg -------------------------------------------------------------------------------- /src/assets/svgs/login-box-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/assets/svgs/login-box-bg.svg -------------------------------------------------------------------------------- /src/assets/svgs/message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/assets/svgs/message.svg -------------------------------------------------------------------------------- /src/assets/svgs/money.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/assets/svgs/money.svg -------------------------------------------------------------------------------- /src/assets/svgs/peoples.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/assets/svgs/peoples.svg -------------------------------------------------------------------------------- /src/assets/svgs/shopping.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/assets/svgs/shopping.svg -------------------------------------------------------------------------------- /src/axios/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/axios/config.ts -------------------------------------------------------------------------------- /src/axios/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/axios/index.ts -------------------------------------------------------------------------------- /src/axios/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/axios/service.ts -------------------------------------------------------------------------------- /src/axios/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/axios/types/index.ts -------------------------------------------------------------------------------- /src/components/Avatars/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Avatars/index.ts -------------------------------------------------------------------------------- /src/components/Avatars/src/Avatars.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Avatars/src/Avatars.vue -------------------------------------------------------------------------------- /src/components/Avatars/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Avatars/src/types/index.ts -------------------------------------------------------------------------------- /src/components/Backtop/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Backtop/index.ts -------------------------------------------------------------------------------- /src/components/Backtop/src/Backtop.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Backtop/src/Backtop.vue -------------------------------------------------------------------------------- /src/components/Breadcrumb/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Breadcrumb/index.ts -------------------------------------------------------------------------------- /src/components/Breadcrumb/src/Breadcrumb.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Breadcrumb/src/Breadcrumb.vue -------------------------------------------------------------------------------- /src/components/Breadcrumb/src/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Breadcrumb/src/helper.ts -------------------------------------------------------------------------------- /src/components/Button/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Button/index.ts -------------------------------------------------------------------------------- /src/components/Button/src/Button.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Button/src/Button.vue -------------------------------------------------------------------------------- /src/components/CodeEditor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/CodeEditor/index.ts -------------------------------------------------------------------------------- /src/components/CodeEditor/src/CodeEditor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/CodeEditor/src/CodeEditor.vue -------------------------------------------------------------------------------- /src/components/CodeEditor/src/config/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/CodeEditor/src/config/config.ts -------------------------------------------------------------------------------- /src/components/Collapse/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Collapse/index.ts -------------------------------------------------------------------------------- /src/components/Collapse/src/Collapse.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Collapse/src/Collapse.vue -------------------------------------------------------------------------------- /src/components/ConfigGlobal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/ConfigGlobal/index.ts -------------------------------------------------------------------------------- /src/components/ConfigGlobal/src/ConfigGlobal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/ConfigGlobal/src/ConfigGlobal.vue -------------------------------------------------------------------------------- /src/components/ConfigGlobal/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/ConfigGlobal/src/types/index.ts -------------------------------------------------------------------------------- /src/components/ContentDetailWrap/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/ContentDetailWrap/index.ts -------------------------------------------------------------------------------- /src/components/ContentDetailWrap/src/ContentDetailWrap.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/ContentDetailWrap/src/ContentDetailWrap.vue -------------------------------------------------------------------------------- /src/components/ContentWrap/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/ContentWrap/index.ts -------------------------------------------------------------------------------- /src/components/ContentWrap/src/ContentWrap.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/ContentWrap/src/ContentWrap.vue -------------------------------------------------------------------------------- /src/components/ContextMenu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/ContextMenu/index.ts -------------------------------------------------------------------------------- /src/components/ContextMenu/src/ContextMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/ContextMenu/src/ContextMenu.vue -------------------------------------------------------------------------------- /src/components/ContextMenu/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/ContextMenu/src/types/index.ts -------------------------------------------------------------------------------- /src/components/CountTo/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/CountTo/index.ts -------------------------------------------------------------------------------- /src/components/CountTo/src/CountTo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/CountTo/src/CountTo.vue -------------------------------------------------------------------------------- /src/components/Descriptions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Descriptions/index.ts -------------------------------------------------------------------------------- /src/components/Descriptions/src/Descriptions.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Descriptions/src/Descriptions.vue -------------------------------------------------------------------------------- /src/components/Descriptions/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Descriptions/src/types/index.ts -------------------------------------------------------------------------------- /src/components/Dialog/hooks/useResize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Dialog/hooks/useResize.ts -------------------------------------------------------------------------------- /src/components/Dialog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Dialog/index.ts -------------------------------------------------------------------------------- /src/components/Dialog/src/Dialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Dialog/src/Dialog.vue -------------------------------------------------------------------------------- /src/components/Dialog/src/ResizeDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Dialog/src/ResizeDialog.vue -------------------------------------------------------------------------------- /src/components/Echart/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Echart/index.ts -------------------------------------------------------------------------------- /src/components/Echart/src/Echart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Echart/src/Echart.vue -------------------------------------------------------------------------------- /src/components/Error/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Error/index.ts -------------------------------------------------------------------------------- /src/components/Error/src/Error.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Error/src/Error.vue -------------------------------------------------------------------------------- /src/components/Footer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Footer/index.ts -------------------------------------------------------------------------------- /src/components/Footer/src/Footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Footer/src/Footer.vue -------------------------------------------------------------------------------- /src/components/Highlight/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Highlight/index.ts -------------------------------------------------------------------------------- /src/components/Highlight/src/Highlight.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Highlight/src/Highlight.vue -------------------------------------------------------------------------------- /src/components/IAgree/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/IAgree/index.ts -------------------------------------------------------------------------------- /src/components/IAgree/src/IAgree.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/IAgree/src/IAgree.vue -------------------------------------------------------------------------------- /src/components/IAgree/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/IAgree/src/types/index.ts -------------------------------------------------------------------------------- /src/components/Icon/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Icon/index.ts -------------------------------------------------------------------------------- /src/components/Icon/src/Icon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Icon/src/Icon.vue -------------------------------------------------------------------------------- /src/components/Icon/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Icon/src/types/index.ts -------------------------------------------------------------------------------- /src/components/IconPicker/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/IconPicker/index.ts -------------------------------------------------------------------------------- /src/components/IconPicker/src/IconPicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/IconPicker/src/IconPicker.vue -------------------------------------------------------------------------------- /src/components/IconPicker/src/data/icons.ant-design.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/IconPicker/src/data/icons.ant-design.ts -------------------------------------------------------------------------------- /src/components/IconPicker/src/data/icons.ep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/IconPicker/src/data/icons.ep.ts -------------------------------------------------------------------------------- /src/components/IconPicker/src/data/icons.tdesign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/IconPicker/src/data/icons.tdesign.ts -------------------------------------------------------------------------------- /src/components/ImageCropping/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/ImageCropping/index.ts -------------------------------------------------------------------------------- /src/components/ImageCropping/src/ImageCropping.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/ImageCropping/src/ImageCropping.vue -------------------------------------------------------------------------------- /src/components/ImageViewer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/ImageViewer/index.ts -------------------------------------------------------------------------------- /src/components/ImageViewer/src/ImageViewer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/ImageViewer/src/ImageViewer.vue -------------------------------------------------------------------------------- /src/components/ImageViewer/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/ImageViewer/src/types/index.ts -------------------------------------------------------------------------------- /src/components/Infotip/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Infotip/index.ts -------------------------------------------------------------------------------- /src/components/Infotip/src/Infotip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Infotip/src/Infotip.vue -------------------------------------------------------------------------------- /src/components/Infotip/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Infotip/src/types/index.ts -------------------------------------------------------------------------------- /src/components/InputPassword/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/InputPassword/index.ts -------------------------------------------------------------------------------- /src/components/InputPassword/src/InputPassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/InputPassword/src/InputPassword.vue -------------------------------------------------------------------------------- /src/components/JsonEditor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/JsonEditor/index.ts -------------------------------------------------------------------------------- /src/components/JsonEditor/src/JsonEditor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/JsonEditor/src/JsonEditor.vue -------------------------------------------------------------------------------- /src/components/JsonEditor/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/JsonEditor/src/types/index.ts -------------------------------------------------------------------------------- /src/components/LocaleDropdown/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/LocaleDropdown/index.ts -------------------------------------------------------------------------------- /src/components/LocaleDropdown/src/LocaleDropdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/LocaleDropdown/src/LocaleDropdown.vue -------------------------------------------------------------------------------- /src/components/LocaleDropdown/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/LocaleDropdown/src/types/index.ts -------------------------------------------------------------------------------- /src/components/Logo/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Logo/index.ts -------------------------------------------------------------------------------- /src/components/Logo/src/Logo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Logo/src/Logo.vue -------------------------------------------------------------------------------- /src/components/Menu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Menu/index.ts -------------------------------------------------------------------------------- /src/components/Menu/src/Menu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Menu/src/Menu.vue -------------------------------------------------------------------------------- /src/components/Menu/src/components/useRenderMenuItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Menu/src/components/useRenderMenuItem.tsx -------------------------------------------------------------------------------- /src/components/Menu/src/components/useRenderMenuTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Menu/src/components/useRenderMenuTitle.tsx -------------------------------------------------------------------------------- /src/components/Menu/src/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Menu/src/helper.ts -------------------------------------------------------------------------------- /src/components/Permission/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Permission/index.ts -------------------------------------------------------------------------------- /src/components/Permission/src/Permission.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Permission/src/Permission.vue -------------------------------------------------------------------------------- /src/components/Permission/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Permission/src/utils.ts -------------------------------------------------------------------------------- /src/components/Qrcode/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Qrcode/index.ts -------------------------------------------------------------------------------- /src/components/Qrcode/src/Qrcode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Qrcode/src/Qrcode.vue -------------------------------------------------------------------------------- /src/components/Qrcode/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Qrcode/src/types/index.ts -------------------------------------------------------------------------------- /src/components/Screenfull/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Screenfull/index.ts -------------------------------------------------------------------------------- /src/components/Screenfull/src/Screenfull.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Screenfull/src/Screenfull.vue -------------------------------------------------------------------------------- /src/components/Search/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Search/index.ts -------------------------------------------------------------------------------- /src/components/Search/src/Search.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Search/src/Search.vue -------------------------------------------------------------------------------- /src/components/Search/src/components/ActionButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Search/src/components/ActionButton.vue -------------------------------------------------------------------------------- /src/components/Search/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Search/src/types/index.ts -------------------------------------------------------------------------------- /src/components/Setting/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Setting/index.ts -------------------------------------------------------------------------------- /src/components/Setting/src/Setting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Setting/src/Setting.vue -------------------------------------------------------------------------------- /src/components/Setting/src/components/ColorRadioPicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Setting/src/components/ColorRadioPicker.vue -------------------------------------------------------------------------------- /src/components/Setting/src/components/InterfaceDisplay.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Setting/src/components/InterfaceDisplay.vue -------------------------------------------------------------------------------- /src/components/Setting/src/components/LayoutRadioPicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Setting/src/components/LayoutRadioPicker.vue -------------------------------------------------------------------------------- /src/components/SizeDropdown/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/SizeDropdown/index.ts -------------------------------------------------------------------------------- /src/components/SizeDropdown/src/SizeDropdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/SizeDropdown/src/SizeDropdown.vue -------------------------------------------------------------------------------- /src/components/TabMenu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/TabMenu/index.ts -------------------------------------------------------------------------------- /src/components/TabMenu/src/TabMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/TabMenu/src/TabMenu.vue -------------------------------------------------------------------------------- /src/components/TabMenu/src/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/TabMenu/src/helper.ts -------------------------------------------------------------------------------- /src/components/TagsView/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/TagsView/index.ts -------------------------------------------------------------------------------- /src/components/TagsView/src/TagsView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/TagsView/src/TagsView.vue -------------------------------------------------------------------------------- /src/components/TagsView/src/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/TagsView/src/helper.ts -------------------------------------------------------------------------------- /src/components/ThemeSwitch/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/ThemeSwitch/index.ts -------------------------------------------------------------------------------- /src/components/ThemeSwitch/src/ThemeSwitch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/ThemeSwitch/src/ThemeSwitch.vue -------------------------------------------------------------------------------- /src/components/VideoPlayer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/VideoPlayer/index.ts -------------------------------------------------------------------------------- /src/components/VideoPlayer/src/VideoPlayer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/VideoPlayer/src/VideoPlayer.vue -------------------------------------------------------------------------------- /src/components/VideoPlayerViewer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/VideoPlayerViewer/index.ts -------------------------------------------------------------------------------- /src/components/VideoPlayerViewer/src/VideoPlayerViewer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/VideoPlayerViewer/src/VideoPlayerViewer.vue -------------------------------------------------------------------------------- /src/components/Waterfall/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Waterfall/index.ts -------------------------------------------------------------------------------- /src/components/Waterfall/src/Waterfall.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/Waterfall/src/Waterfall.vue -------------------------------------------------------------------------------- /src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/components/index.ts -------------------------------------------------------------------------------- /src/constants/defaultData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/constants/defaultData.ts -------------------------------------------------------------------------------- /src/constants/easytier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/constants/easytier.ts -------------------------------------------------------------------------------- /src/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/constants/index.ts -------------------------------------------------------------------------------- /src/directives/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/directives/index.ts -------------------------------------------------------------------------------- /src/directives/permission/hasPermi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/directives/permission/hasPermi.ts -------------------------------------------------------------------------------- /src/hooks/event/useEventBus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/hooks/event/useEventBus.ts -------------------------------------------------------------------------------- /src/hooks/event/useScrollTo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/hooks/event/useScrollTo.ts -------------------------------------------------------------------------------- /src/hooks/web/useClipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/hooks/web/useClipboard.ts -------------------------------------------------------------------------------- /src/hooks/web/useConfigGlobal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/hooks/web/useConfigGlobal.ts -------------------------------------------------------------------------------- /src/hooks/web/useDesign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/hooks/web/useDesign.ts -------------------------------------------------------------------------------- /src/hooks/web/useForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/hooks/web/useForm.ts -------------------------------------------------------------------------------- /src/hooks/web/useGuide.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/hooks/web/useGuide.ts -------------------------------------------------------------------------------- /src/hooks/web/useI18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/hooks/web/useI18n.ts -------------------------------------------------------------------------------- /src/hooks/web/useIcon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/hooks/web/useIcon.ts -------------------------------------------------------------------------------- /src/hooks/web/useLocale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/hooks/web/useLocale.ts -------------------------------------------------------------------------------- /src/hooks/web/useMonacoEditor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/hooks/web/useMonacoEditor.ts -------------------------------------------------------------------------------- /src/hooks/web/useNProgress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/hooks/web/useNProgress.ts -------------------------------------------------------------------------------- /src/hooks/web/useNetwork.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/hooks/web/useNetwork.ts -------------------------------------------------------------------------------- /src/hooks/web/useNow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/hooks/web/useNow.ts -------------------------------------------------------------------------------- /src/hooks/web/usePageLoading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/hooks/web/usePageLoading.ts -------------------------------------------------------------------------------- /src/hooks/web/useSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/hooks/web/useSearch.ts -------------------------------------------------------------------------------- /src/hooks/web/useStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/hooks/web/useStorage.ts -------------------------------------------------------------------------------- /src/hooks/web/useTagsView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/hooks/web/useTagsView.ts -------------------------------------------------------------------------------- /src/hooks/web/useTimeAgo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/hooks/web/useTimeAgo.ts -------------------------------------------------------------------------------- /src/hooks/web/useTitle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/hooks/web/useTitle.ts -------------------------------------------------------------------------------- /src/hooks/web/useValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/hooks/web/useValidator.ts -------------------------------------------------------------------------------- /src/hooks/web/useWatermark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/hooks/web/useWatermark.ts -------------------------------------------------------------------------------- /src/layout/Layout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/layout/Layout.vue -------------------------------------------------------------------------------- /src/layout/components/AppView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/layout/components/AppView.vue -------------------------------------------------------------------------------- /src/layout/components/ToolHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/layout/components/ToolHeader.vue -------------------------------------------------------------------------------- /src/layout/components/useRenderLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/layout/components/useRenderLayout.tsx -------------------------------------------------------------------------------- /src/locales/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/locales/en.ts -------------------------------------------------------------------------------- /src/locales/zh-CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/locales/zh-CN.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/permission.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/permission.ts -------------------------------------------------------------------------------- /src/plugins/animate.css/index.ts: -------------------------------------------------------------------------------- 1 | import 'animate.css' 2 | -------------------------------------------------------------------------------- /src/plugins/echarts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/plugins/echarts/index.ts -------------------------------------------------------------------------------- /src/plugins/elementPlus/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/plugins/elementPlus/index.ts -------------------------------------------------------------------------------- /src/plugins/svgIcon/index.ts: -------------------------------------------------------------------------------- 1 | import 'virtual:svg-icons-register' 2 | -------------------------------------------------------------------------------- /src/plugins/unocss/index.ts: -------------------------------------------------------------------------------- 1 | import 'virtual:uno.css' 2 | -------------------------------------------------------------------------------- /src/plugins/vueI18n/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/plugins/vueI18n/helper.ts -------------------------------------------------------------------------------- /src/plugins/vueI18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/plugins/vueI18n/index.ts -------------------------------------------------------------------------------- /src/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/router/index.ts -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/store/modules/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/store/modules/app.ts -------------------------------------------------------------------------------- /src/store/modules/easytier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/store/modules/easytier.ts -------------------------------------------------------------------------------- /src/store/modules/locale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/store/modules/locale.ts -------------------------------------------------------------------------------- /src/store/modules/lock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/store/modules/lock.ts -------------------------------------------------------------------------------- /src/store/modules/permission.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/store/modules/permission.ts -------------------------------------------------------------------------------- /src/store/modules/tagsView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/store/modules/tagsView.ts -------------------------------------------------------------------------------- /src/store/modules/trayStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/store/modules/trayStore.ts -------------------------------------------------------------------------------- /src/store/modules/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/store/modules/user.ts -------------------------------------------------------------------------------- /src/styles/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/styles/index.less -------------------------------------------------------------------------------- /src/styles/var.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/styles/var.css -------------------------------------------------------------------------------- /src/styles/variables.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/styles/variables.module.less -------------------------------------------------------------------------------- /src/types/easyTier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/types/easyTier.ts -------------------------------------------------------------------------------- /src/types/formTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/types/formTypes.ts -------------------------------------------------------------------------------- /src/utils/color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/utils/color.ts -------------------------------------------------------------------------------- /src/utils/dateUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/utils/dateUtil.ts -------------------------------------------------------------------------------- /src/utils/domUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/utils/domUtils.ts -------------------------------------------------------------------------------- /src/utils/easyTierUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/utils/easyTierUtil.ts -------------------------------------------------------------------------------- /src/utils/fileUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/utils/fileUtil.ts -------------------------------------------------------------------------------- /src/utils/i18nUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/utils/i18nUtil.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/is.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/utils/is.ts -------------------------------------------------------------------------------- /src/utils/propTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/utils/propTypes.ts -------------------------------------------------------------------------------- /src/utils/routerHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/utils/routerHelper.ts -------------------------------------------------------------------------------- /src/utils/shellUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/utils/shellUtil.ts -------------------------------------------------------------------------------- /src/utils/sysUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/utils/sysUtil.ts -------------------------------------------------------------------------------- /src/utils/tree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/utils/tree.ts -------------------------------------------------------------------------------- /src/utils/tsxHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/utils/tsxHelper.ts -------------------------------------------------------------------------------- /src/views/Dashboard/Analysis.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/views/Dashboard/Analysis.vue -------------------------------------------------------------------------------- /src/views/Dashboard/Workplace.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/views/Dashboard/Workplace.vue -------------------------------------------------------------------------------- /src/views/Dashboard/components/PanelGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/views/Dashboard/components/PanelGroup.vue -------------------------------------------------------------------------------- /src/views/Dashboard/echarts-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/views/Dashboard/echarts-data.ts -------------------------------------------------------------------------------- /src/views/Error/403.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/views/Error/403.vue -------------------------------------------------------------------------------- /src/views/Error/404.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/views/Error/404.vue -------------------------------------------------------------------------------- /src/views/Error/500.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/views/Error/500.vue -------------------------------------------------------------------------------- /src/views/Redirect/Redirect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/views/Redirect/Redirect.vue -------------------------------------------------------------------------------- /src/views/config/Form.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/views/config/Form.vue -------------------------------------------------------------------------------- /src/views/config/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/views/config/index.vue -------------------------------------------------------------------------------- /src/views/configWeb/form-web.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/views/configWeb/form-web.vue -------------------------------------------------------------------------------- /src/views/configWeb/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/views/configWeb/index.vue -------------------------------------------------------------------------------- /src/views/index/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/views/index/index.vue -------------------------------------------------------------------------------- /src/views/setting/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/src/views/setting/index.vue -------------------------------------------------------------------------------- /stylelint.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/stylelint.config.cjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /types/components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/types/components.d.ts -------------------------------------------------------------------------------- /types/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/types/env.d.ts -------------------------------------------------------------------------------- /types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/types/global.d.ts -------------------------------------------------------------------------------- /types/router.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/types/router.d.ts -------------------------------------------------------------------------------- /uno.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/uno.config.ts -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyTier/easytier-manager/HEAD/vite.config.ts --------------------------------------------------------------------------------