├── .editorconfig ├── .env ├── .env.development ├── .env.production ├── .env.test ├── .eslintignore ├── .eslintrc.cjs ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .prettierignore ├── .prettierrc.cjs ├── .stylelintignore ├── .stylelintrc.cjs ├── .vscode ├── extensions.json └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── commitlint.config.cjs ├── index.html ├── lint-staged.config.cjs ├── package.json ├── pnpm-lock.yaml ├── postcss.config.cjs ├── public ├── logo.png └── vue.svg ├── src ├── App.vue ├── api │ ├── config │ │ └── servicePort.ts │ ├── helper │ │ ├── axiosCancel.ts │ │ └── checkStatus.ts │ ├── index.ts │ ├── interface │ │ └── index.ts │ └── modules │ │ ├── login.ts │ │ ├── upload.ts │ │ └── user.ts ├── assets │ ├── fonts │ │ ├── DIN.otf │ │ ├── MetroDF.ttf │ │ ├── YouSheBiaoTiHei.ttf │ │ └── font.scss │ ├── iconfont │ │ ├── iconfont.scss │ │ └── iconfont.ttf │ ├── icons │ │ ├── xianxingdaoyu.svg │ │ ├── xianxingdiqiu.svg │ │ ├── xianxingditu.svg │ │ ├── xianxingfanchuan.svg │ │ ├── xianxingfeiji.svg │ │ ├── xianxinglvhangriji.svg │ │ ├── xianxingtianqiyubao.svg │ │ ├── xianxingxiangjipaizhao.svg │ │ ├── xianxingxiarilengyin.svg │ │ ├── xianxingyoulun.svg │ │ └── xianxingzijiayou.svg │ ├── images │ │ ├── 403.png │ │ ├── 404.png │ │ ├── 500.png │ │ ├── avatar.gif │ │ ├── login_bg.svg │ │ ├── login_left.png │ │ ├── login_left1.png │ │ ├── login_left2.png │ │ ├── login_left3.png │ │ ├── login_left4.png │ │ ├── login_left5.png │ │ ├── logo.svg │ │ ├── msg01.png │ │ ├── msg02.png │ │ ├── msg03.png │ │ ├── msg04.png │ │ ├── msg05.png │ │ ├── notData.png │ │ └── welcome.png │ ├── json │ │ ├── authButtonList.json │ │ └── authMenuList.json │ └── mock │ │ └── Easy-Mock-API.zip ├── components │ ├── ECharts │ │ ├── config │ │ │ └── index.ts │ │ └── index.vue │ ├── ErrorMessage │ │ ├── 403.vue │ │ ├── 404.vue │ │ ├── 500.vue │ │ └── index.scss │ ├── Grid │ │ ├── components │ │ │ └── GridItem.vue │ │ ├── index.vue │ │ └── interface │ │ │ └── index.ts │ ├── ImportExcel │ │ ├── index.scss │ │ └── index.vue │ ├── Loading │ │ ├── fullScreen.ts │ │ ├── index.scss │ │ └── index.vue │ ├── ProTable │ │ ├── components │ │ │ ├── ColSetting.vue │ │ │ ├── Pagination.vue │ │ │ └── TableColumn.vue │ │ ├── index.vue │ │ └── interface │ │ │ └── index.ts │ ├── SearchForm │ │ ├── components │ │ │ └── SearchFormItem.vue │ │ └── index.vue │ ├── SelectFilter │ │ ├── index.scss │ │ └── index.vue │ ├── SelectIcon │ │ ├── index.scss │ │ └── index.vue │ ├── SvgIcon │ │ └── index.vue │ ├── SwitchDark │ │ └── index.vue │ ├── TreeFilter │ │ ├── index.scss │ │ └── index.vue │ ├── Upload │ │ ├── Img.vue │ │ └── Imgs.vue │ └── WangEditor │ │ ├── index.scss │ │ └── index.vue ├── config │ ├── index.ts │ └── nprogress.ts ├── directives │ ├── index.ts │ └── modules │ │ ├── auth.ts │ │ ├── copy.ts │ │ ├── debounce.ts │ │ ├── draggable.ts │ │ ├── longpress.ts │ │ ├── throttle.ts │ │ └── waterMarker.ts ├── enums │ └── httpEnum.ts ├── hooks │ ├── interface │ │ └── index.ts │ ├── useAuthButtons.ts │ ├── useDownload.ts │ ├── useHandleData.ts │ ├── useOnline.ts │ ├── useSelection.ts │ ├── useTable.ts │ ├── useTheme.ts │ └── useTime.ts ├── languages │ ├── index.ts │ └── modules │ │ ├── en.ts │ │ └── zh.ts ├── layouts │ ├── LayoutClassic │ │ ├── index.scss │ │ └── index.vue │ ├── LayoutColumns │ │ ├── index.scss │ │ └── index.vue │ ├── LayoutTransverse │ │ ├── index.scss │ │ └── index.vue │ ├── LayoutVertical │ │ ├── index.scss │ │ └── index.vue │ ├── components │ │ ├── Footer │ │ │ ├── index.scss │ │ │ └── index.vue │ │ ├── Header │ │ │ ├── ToolBarLeft.vue │ │ │ ├── ToolBarRight.vue │ │ │ └── components │ │ │ │ ├── AssemblySize.vue │ │ │ │ ├── Avatar.vue │ │ │ │ ├── Breadcrumb.vue │ │ │ │ ├── CollapseIcon.vue │ │ │ │ ├── Fullscreen.vue │ │ │ │ ├── InfoDialog.vue │ │ │ │ ├── Language.vue │ │ │ │ ├── Message.vue │ │ │ │ ├── PasswordDialog.vue │ │ │ │ ├── SearchMenu.vue │ │ │ │ └── ThemeSetting.vue │ │ ├── Main │ │ │ ├── components │ │ │ │ └── Maximize.vue │ │ │ ├── index.scss │ │ │ └── index.vue │ │ ├── Menu │ │ │ └── SubMenu.vue │ │ ├── Tabs │ │ │ ├── components │ │ │ │ └── MoreButton.vue │ │ │ ├── index.scss │ │ │ └── index.vue │ │ └── ThemeDrawer │ │ │ ├── index.scss │ │ │ └── index.vue │ ├── index.vue │ └── indexAsync.vue ├── main.ts ├── routers │ ├── index.ts │ └── modules │ │ ├── dynamicRouter.ts │ │ └── staticRouter.ts ├── stores │ ├── helper │ │ └── persist.ts │ ├── index.ts │ ├── interface │ │ └── index.ts │ └── modules │ │ ├── auth.ts │ │ ├── global.ts │ │ ├── keepAlive.ts │ │ ├── tabs.ts │ │ └── user.ts ├── styles │ ├── common.scss │ ├── element-dark.scss │ ├── element.scss │ ├── reset.scss │ ├── theme │ │ ├── aside.ts │ │ ├── header.ts │ │ └── menu.ts │ └── var.scss ├── typings │ ├── global.d.ts │ ├── utils.d.ts │ └── window.d.ts ├── utils │ ├── color.ts │ ├── dict.ts │ ├── eleValidate.ts │ ├── errorHandler.ts │ ├── index.ts │ ├── is │ │ └── index.ts │ ├── mittBus.ts │ └── svg.ts ├── views │ ├── about │ │ └── index.vue │ ├── assembly │ │ ├── batchImport │ │ │ ├── index.scss │ │ │ └── index.vue │ │ ├── draggable │ │ │ ├── index.scss │ │ │ └── index.vue │ │ ├── guide │ │ │ ├── index.scss │ │ │ └── index.vue │ │ ├── selectFilter │ │ │ ├── index.scss │ │ │ └── index.vue │ │ ├── selectIcon │ │ │ ├── index.scss │ │ │ └── index.vue │ │ ├── svgIcon │ │ │ ├── index.scss │ │ │ └── index.vue │ │ ├── tabs │ │ │ ├── detail.vue │ │ │ └── index.vue │ │ ├── treeFilter │ │ │ ├── index.scss │ │ │ └── index.vue │ │ ├── uploadFile │ │ │ ├── index.scss │ │ │ └── index.vue │ │ └── wangEditor │ │ │ ├── index.scss │ │ │ └── index.vue │ ├── auth │ │ ├── button │ │ │ ├── index.scss │ │ │ └── index.vue │ │ └── menu │ │ │ ├── index.scss │ │ │ └── index.vue │ ├── dashboard │ │ └── dataVisualize │ │ │ ├── components │ │ │ ├── curve.vue │ │ │ └── pie.vue │ │ │ ├── images │ │ │ ├── 1-bg.png │ │ │ ├── 2-bg.png │ │ │ ├── 3-bg.png │ │ │ ├── 4-bg.png │ │ │ ├── add_person.png │ │ │ ├── add_team.png │ │ │ ├── book-bg.png │ │ │ ├── book-sum.png │ │ │ ├── book_sum.png │ │ │ └── today.png │ │ │ ├── index.scss │ │ │ └── index.vue │ ├── dataScreen │ │ ├── assets │ │ │ ├── alarmList.Json │ │ │ ├── china.json │ │ │ └── ranking-icon.ts │ │ ├── components │ │ │ ├── AgeRatioChart.vue │ │ │ ├── AnnualUseChart.vue │ │ │ ├── ChinaMapChart.vue │ │ │ ├── HotPlateChart.vue │ │ │ ├── MaleFemaleRatioChart.vue │ │ │ ├── OverNext30Chart.vue │ │ │ ├── PlatformSourceChart.vue │ │ │ └── RealTimeAccessChart.vue │ │ ├── images │ │ │ ├── bg.png │ │ │ ├── contrast-bg.png │ │ │ ├── dataScreen-alarm.png │ │ │ ├── dataScreen-header-btn-bg-l.png │ │ │ ├── dataScreen-header-btn-bg-r.png │ │ │ ├── dataScreen-header-center-bg.png │ │ │ ├── dataScreen-header-left-bg.png │ │ │ ├── dataScreen-header-right-bg.png │ │ │ ├── dataScreen-header-warn-bg.png │ │ │ ├── dataScreen-main-cb.png │ │ │ ├── dataScreen-main-lb.png │ │ │ ├── dataScreen-main-lc.png │ │ │ ├── dataScreen-main-lt.png │ │ │ ├── dataScreen-main-rb.png │ │ │ ├── dataScreen-main-rc.png │ │ │ ├── dataScreen-main-rt.png │ │ │ ├── dataScreen-title.png │ │ │ ├── dataScreen-warn-bg.png │ │ │ ├── line-bg.png │ │ │ ├── man-bg.png │ │ │ ├── man.png │ │ │ ├── map-title-bg.png │ │ │ ├── rankingChart-bg.png │ │ │ ├── total.png │ │ │ ├── woman-bg.png │ │ │ └── woman.png │ │ ├── index.scss │ │ └── index.vue │ ├── directives │ │ ├── copyDirect │ │ │ ├── index.scss │ │ │ └── index.vue │ │ ├── debounceDirect │ │ │ ├── index.scss │ │ │ └── index.vue │ │ ├── dragDirect │ │ │ ├── index.scss │ │ │ └── index.vue │ │ ├── longpressDirect │ │ │ ├── index.scss │ │ │ └── index.vue │ │ ├── throttleDirect │ │ │ ├── index.scss │ │ │ └── index.vue │ │ └── watermarkDirect │ │ │ ├── index.scss │ │ │ └── index.vue │ ├── echarts │ │ ├── columnChart │ │ │ ├── index.scss │ │ │ └── index.vue │ │ ├── lineChart │ │ │ ├── index.scss │ │ │ └── index.vue │ │ ├── nestedChart │ │ │ ├── index.scss │ │ │ └── index.vue │ │ ├── pieChart │ │ │ ├── index.scss │ │ │ └── index.vue │ │ ├── radarChart │ │ │ ├── index.scss │ │ │ └── index.vue │ │ └── waterChart │ │ │ ├── index.scss │ │ │ └── index.vue │ ├── form │ │ ├── basicForm │ │ │ ├── index.scss │ │ │ └── index.vue │ │ ├── dynamicForm │ │ │ ├── index.scss │ │ │ └── index.vue │ │ ├── proForm │ │ │ ├── index.scss │ │ │ └── index.vue │ │ └── validateForm │ │ │ ├── index.scss │ │ │ └── index.vue │ ├── home │ │ ├── index.scss │ │ └── index.vue │ ├── link │ │ ├── bing │ │ │ ├── index.scss │ │ │ └── index.vue │ │ ├── docs │ │ │ ├── index.scss │ │ │ └── index.vue │ │ ├── gitee │ │ │ ├── index.scss │ │ │ └── index.vue │ │ ├── github │ │ │ ├── index.scss │ │ │ └── index.vue │ │ └── juejin │ │ │ ├── index.scss │ │ │ └── index.vue │ ├── login │ │ ├── components │ │ │ └── LoginForm.vue │ │ ├── index.scss │ │ └── index.vue │ ├── menu │ │ ├── menu1 │ │ │ ├── index.scss │ │ │ └── index.vue │ │ ├── menu2 │ │ │ ├── menu21 │ │ │ │ ├── index.scss │ │ │ │ └── index.vue │ │ │ ├── menu22 │ │ │ │ ├── menu221 │ │ │ │ │ ├── index.scss │ │ │ │ │ └── index.vue │ │ │ │ └── menu222 │ │ │ │ │ ├── index.scss │ │ │ │ │ └── index.vue │ │ │ └── menu23 │ │ │ │ ├── index.scss │ │ │ │ └── index.vue │ │ └── menu3 │ │ │ ├── index.scss │ │ │ └── index.vue │ ├── proTable │ │ ├── complexProTable │ │ │ └── index.vue │ │ ├── components │ │ │ └── UserDrawer.vue │ │ ├── document │ │ │ └── index.vue │ │ ├── treeProTable │ │ │ └── index.vue │ │ ├── useProTable │ │ │ ├── detail.vue │ │ │ └── index.vue │ │ ├── useSelectFilter │ │ │ └── index.vue │ │ └── useTreeFilter │ │ │ ├── detail.vue │ │ │ └── index.vue │ └── system │ │ ├── accountManage │ │ └── index.vue │ │ ├── departmentManage │ │ └── index.vue │ │ ├── dictManage │ │ └── index.vue │ │ ├── menuMange │ │ └── index.vue │ │ ├── roleManage │ │ └── index.vue │ │ ├── systemLog │ │ └── index.vue │ │ └── timingTask │ │ └── index.vue └── vite-env.d.ts ├── tsconfig.json └── vite.config.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/.env -------------------------------------------------------------------------------- /.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/.env.development -------------------------------------------------------------------------------- /.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/.env.production -------------------------------------------------------------------------------- /.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/.env.test -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/.prettierrc.cjs -------------------------------------------------------------------------------- /.stylelintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/.stylelintignore -------------------------------------------------------------------------------- /.stylelintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/.stylelintrc.cjs -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/README.md -------------------------------------------------------------------------------- /commitlint.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/commitlint.config.cjs -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/index.html -------------------------------------------------------------------------------- /lint-staged.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/lint-staged.config.cjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/vue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/public/vue.svg -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/api/config/servicePort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/api/config/servicePort.ts -------------------------------------------------------------------------------- /src/api/helper/axiosCancel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/api/helper/axiosCancel.ts -------------------------------------------------------------------------------- /src/api/helper/checkStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/api/helper/checkStatus.ts -------------------------------------------------------------------------------- /src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/api/index.ts -------------------------------------------------------------------------------- /src/api/interface/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/api/interface/index.ts -------------------------------------------------------------------------------- /src/api/modules/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/api/modules/login.ts -------------------------------------------------------------------------------- /src/api/modules/upload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/api/modules/upload.ts -------------------------------------------------------------------------------- /src/api/modules/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/api/modules/user.ts -------------------------------------------------------------------------------- /src/assets/fonts/DIN.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/assets/fonts/DIN.otf -------------------------------------------------------------------------------- /src/assets/fonts/MetroDF.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/assets/fonts/MetroDF.ttf -------------------------------------------------------------------------------- /src/assets/fonts/YouSheBiaoTiHei.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/assets/fonts/YouSheBiaoTiHei.ttf -------------------------------------------------------------------------------- /src/assets/fonts/font.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/assets/fonts/font.scss -------------------------------------------------------------------------------- /src/assets/iconfont/iconfont.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/assets/iconfont/iconfont.scss -------------------------------------------------------------------------------- /src/assets/iconfont/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/assets/iconfont/iconfont.ttf -------------------------------------------------------------------------------- /src/assets/icons/xianxingdaoyu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/assets/icons/xianxingdaoyu.svg -------------------------------------------------------------------------------- /src/assets/icons/xianxingdiqiu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/assets/icons/xianxingdiqiu.svg -------------------------------------------------------------------------------- /src/assets/icons/xianxingditu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/assets/icons/xianxingditu.svg -------------------------------------------------------------------------------- /src/assets/icons/xianxingfanchuan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/assets/icons/xianxingfanchuan.svg -------------------------------------------------------------------------------- /src/assets/icons/xianxingfeiji.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/assets/icons/xianxingfeiji.svg -------------------------------------------------------------------------------- /src/assets/icons/xianxinglvhangriji.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/assets/icons/xianxinglvhangriji.svg -------------------------------------------------------------------------------- /src/assets/icons/xianxingtianqiyubao.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/assets/icons/xianxingtianqiyubao.svg -------------------------------------------------------------------------------- /src/assets/icons/xianxingxiangjipaizhao.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/assets/icons/xianxingxiangjipaizhao.svg -------------------------------------------------------------------------------- /src/assets/icons/xianxingxiarilengyin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/assets/icons/xianxingxiarilengyin.svg -------------------------------------------------------------------------------- /src/assets/icons/xianxingyoulun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/assets/icons/xianxingyoulun.svg -------------------------------------------------------------------------------- /src/assets/icons/xianxingzijiayou.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/assets/icons/xianxingzijiayou.svg -------------------------------------------------------------------------------- /src/assets/images/403.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/assets/images/403.png -------------------------------------------------------------------------------- /src/assets/images/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/assets/images/404.png -------------------------------------------------------------------------------- /src/assets/images/500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/assets/images/500.png -------------------------------------------------------------------------------- /src/assets/images/avatar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/assets/images/avatar.gif -------------------------------------------------------------------------------- /src/assets/images/login_bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/assets/images/login_bg.svg -------------------------------------------------------------------------------- /src/assets/images/login_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/assets/images/login_left.png -------------------------------------------------------------------------------- /src/assets/images/login_left1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/assets/images/login_left1.png -------------------------------------------------------------------------------- /src/assets/images/login_left2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/assets/images/login_left2.png -------------------------------------------------------------------------------- /src/assets/images/login_left3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/assets/images/login_left3.png -------------------------------------------------------------------------------- /src/assets/images/login_left4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/assets/images/login_left4.png -------------------------------------------------------------------------------- /src/assets/images/login_left5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/assets/images/login_left5.png -------------------------------------------------------------------------------- /src/assets/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/assets/images/logo.svg -------------------------------------------------------------------------------- /src/assets/images/msg01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/assets/images/msg01.png -------------------------------------------------------------------------------- /src/assets/images/msg02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/assets/images/msg02.png -------------------------------------------------------------------------------- /src/assets/images/msg03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/assets/images/msg03.png -------------------------------------------------------------------------------- /src/assets/images/msg04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/assets/images/msg04.png -------------------------------------------------------------------------------- /src/assets/images/msg05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/assets/images/msg05.png -------------------------------------------------------------------------------- /src/assets/images/notData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/assets/images/notData.png -------------------------------------------------------------------------------- /src/assets/images/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/assets/images/welcome.png -------------------------------------------------------------------------------- /src/assets/json/authButtonList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/assets/json/authButtonList.json -------------------------------------------------------------------------------- /src/assets/json/authMenuList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/assets/json/authMenuList.json -------------------------------------------------------------------------------- /src/assets/mock/Easy-Mock-API.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/assets/mock/Easy-Mock-API.zip -------------------------------------------------------------------------------- /src/components/ECharts/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/components/ECharts/config/index.ts -------------------------------------------------------------------------------- /src/components/ECharts/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/components/ECharts/index.vue -------------------------------------------------------------------------------- /src/components/ErrorMessage/403.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/components/ErrorMessage/403.vue -------------------------------------------------------------------------------- /src/components/ErrorMessage/404.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/components/ErrorMessage/404.vue -------------------------------------------------------------------------------- /src/components/ErrorMessage/500.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/components/ErrorMessage/500.vue -------------------------------------------------------------------------------- /src/components/ErrorMessage/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/components/ErrorMessage/index.scss -------------------------------------------------------------------------------- /src/components/Grid/components/GridItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/components/Grid/components/GridItem.vue -------------------------------------------------------------------------------- /src/components/Grid/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/components/Grid/index.vue -------------------------------------------------------------------------------- /src/components/Grid/interface/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/components/Grid/interface/index.ts -------------------------------------------------------------------------------- /src/components/ImportExcel/index.scss: -------------------------------------------------------------------------------- 1 | .upload { 2 | width: 80%; 3 | } 4 | -------------------------------------------------------------------------------- /src/components/ImportExcel/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/components/ImportExcel/index.vue -------------------------------------------------------------------------------- /src/components/Loading/fullScreen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/components/Loading/fullScreen.ts -------------------------------------------------------------------------------- /src/components/Loading/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/components/Loading/index.scss -------------------------------------------------------------------------------- /src/components/Loading/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/components/Loading/index.vue -------------------------------------------------------------------------------- /src/components/ProTable/components/ColSetting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/components/ProTable/components/ColSetting.vue -------------------------------------------------------------------------------- /src/components/ProTable/components/Pagination.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/components/ProTable/components/Pagination.vue -------------------------------------------------------------------------------- /src/components/ProTable/components/TableColumn.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/components/ProTable/components/TableColumn.vue -------------------------------------------------------------------------------- /src/components/ProTable/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/components/ProTable/index.vue -------------------------------------------------------------------------------- /src/components/ProTable/interface/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/components/ProTable/interface/index.ts -------------------------------------------------------------------------------- /src/components/SearchForm/components/SearchFormItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/components/SearchForm/components/SearchFormItem.vue -------------------------------------------------------------------------------- /src/components/SearchForm/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/components/SearchForm/index.vue -------------------------------------------------------------------------------- /src/components/SelectFilter/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/components/SelectFilter/index.scss -------------------------------------------------------------------------------- /src/components/SelectFilter/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/components/SelectFilter/index.vue -------------------------------------------------------------------------------- /src/components/SelectIcon/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/components/SelectIcon/index.scss -------------------------------------------------------------------------------- /src/components/SelectIcon/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/components/SelectIcon/index.vue -------------------------------------------------------------------------------- /src/components/SvgIcon/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/components/SvgIcon/index.vue -------------------------------------------------------------------------------- /src/components/SwitchDark/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/components/SwitchDark/index.vue -------------------------------------------------------------------------------- /src/components/TreeFilter/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/components/TreeFilter/index.scss -------------------------------------------------------------------------------- /src/components/TreeFilter/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/components/TreeFilter/index.vue -------------------------------------------------------------------------------- /src/components/Upload/Img.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/components/Upload/Img.vue -------------------------------------------------------------------------------- /src/components/Upload/Imgs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/components/Upload/Imgs.vue -------------------------------------------------------------------------------- /src/components/WangEditor/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/components/WangEditor/index.scss -------------------------------------------------------------------------------- /src/components/WangEditor/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/components/WangEditor/index.vue -------------------------------------------------------------------------------- /src/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/config/index.ts -------------------------------------------------------------------------------- /src/config/nprogress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/config/nprogress.ts -------------------------------------------------------------------------------- /src/directives/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/directives/index.ts -------------------------------------------------------------------------------- /src/directives/modules/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/directives/modules/auth.ts -------------------------------------------------------------------------------- /src/directives/modules/copy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/directives/modules/copy.ts -------------------------------------------------------------------------------- /src/directives/modules/debounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/directives/modules/debounce.ts -------------------------------------------------------------------------------- /src/directives/modules/draggable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/directives/modules/draggable.ts -------------------------------------------------------------------------------- /src/directives/modules/longpress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/directives/modules/longpress.ts -------------------------------------------------------------------------------- /src/directives/modules/throttle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/directives/modules/throttle.ts -------------------------------------------------------------------------------- /src/directives/modules/waterMarker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/directives/modules/waterMarker.ts -------------------------------------------------------------------------------- /src/enums/httpEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/enums/httpEnum.ts -------------------------------------------------------------------------------- /src/hooks/interface/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/hooks/interface/index.ts -------------------------------------------------------------------------------- /src/hooks/useAuthButtons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/hooks/useAuthButtons.ts -------------------------------------------------------------------------------- /src/hooks/useDownload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/hooks/useDownload.ts -------------------------------------------------------------------------------- /src/hooks/useHandleData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/hooks/useHandleData.ts -------------------------------------------------------------------------------- /src/hooks/useOnline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/hooks/useOnline.ts -------------------------------------------------------------------------------- /src/hooks/useSelection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/hooks/useSelection.ts -------------------------------------------------------------------------------- /src/hooks/useTable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/hooks/useTable.ts -------------------------------------------------------------------------------- /src/hooks/useTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/hooks/useTheme.ts -------------------------------------------------------------------------------- /src/hooks/useTime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/hooks/useTime.ts -------------------------------------------------------------------------------- /src/languages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/languages/index.ts -------------------------------------------------------------------------------- /src/languages/modules/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/languages/modules/en.ts -------------------------------------------------------------------------------- /src/languages/modules/zh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/languages/modules/zh.ts -------------------------------------------------------------------------------- /src/layouts/LayoutClassic/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/layouts/LayoutClassic/index.scss -------------------------------------------------------------------------------- /src/layouts/LayoutClassic/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/layouts/LayoutClassic/index.vue -------------------------------------------------------------------------------- /src/layouts/LayoutColumns/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/layouts/LayoutColumns/index.scss -------------------------------------------------------------------------------- /src/layouts/LayoutColumns/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/layouts/LayoutColumns/index.vue -------------------------------------------------------------------------------- /src/layouts/LayoutTransverse/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/layouts/LayoutTransverse/index.scss -------------------------------------------------------------------------------- /src/layouts/LayoutTransverse/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/layouts/LayoutTransverse/index.vue -------------------------------------------------------------------------------- /src/layouts/LayoutVertical/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/layouts/LayoutVertical/index.scss -------------------------------------------------------------------------------- /src/layouts/LayoutVertical/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/layouts/LayoutVertical/index.vue -------------------------------------------------------------------------------- /src/layouts/components/Footer/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/layouts/components/Footer/index.scss -------------------------------------------------------------------------------- /src/layouts/components/Footer/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/layouts/components/Footer/index.vue -------------------------------------------------------------------------------- /src/layouts/components/Header/ToolBarLeft.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/layouts/components/Header/ToolBarLeft.vue -------------------------------------------------------------------------------- /src/layouts/components/Header/ToolBarRight.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/layouts/components/Header/ToolBarRight.vue -------------------------------------------------------------------------------- /src/layouts/components/Header/components/AssemblySize.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/layouts/components/Header/components/AssemblySize.vue -------------------------------------------------------------------------------- /src/layouts/components/Header/components/Avatar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/layouts/components/Header/components/Avatar.vue -------------------------------------------------------------------------------- /src/layouts/components/Header/components/Breadcrumb.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/layouts/components/Header/components/Breadcrumb.vue -------------------------------------------------------------------------------- /src/layouts/components/Header/components/CollapseIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/layouts/components/Header/components/CollapseIcon.vue -------------------------------------------------------------------------------- /src/layouts/components/Header/components/Fullscreen.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/layouts/components/Header/components/Fullscreen.vue -------------------------------------------------------------------------------- /src/layouts/components/Header/components/InfoDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/layouts/components/Header/components/InfoDialog.vue -------------------------------------------------------------------------------- /src/layouts/components/Header/components/Language.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/layouts/components/Header/components/Language.vue -------------------------------------------------------------------------------- /src/layouts/components/Header/components/Message.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/layouts/components/Header/components/Message.vue -------------------------------------------------------------------------------- /src/layouts/components/Header/components/PasswordDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/layouts/components/Header/components/PasswordDialog.vue -------------------------------------------------------------------------------- /src/layouts/components/Header/components/SearchMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/layouts/components/Header/components/SearchMenu.vue -------------------------------------------------------------------------------- /src/layouts/components/Header/components/ThemeSetting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/layouts/components/Header/components/ThemeSetting.vue -------------------------------------------------------------------------------- /src/layouts/components/Main/components/Maximize.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/layouts/components/Main/components/Maximize.vue -------------------------------------------------------------------------------- /src/layouts/components/Main/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/layouts/components/Main/index.scss -------------------------------------------------------------------------------- /src/layouts/components/Main/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/layouts/components/Main/index.vue -------------------------------------------------------------------------------- /src/layouts/components/Menu/SubMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/layouts/components/Menu/SubMenu.vue -------------------------------------------------------------------------------- /src/layouts/components/Tabs/components/MoreButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/layouts/components/Tabs/components/MoreButton.vue -------------------------------------------------------------------------------- /src/layouts/components/Tabs/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/layouts/components/Tabs/index.scss -------------------------------------------------------------------------------- /src/layouts/components/Tabs/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/layouts/components/Tabs/index.vue -------------------------------------------------------------------------------- /src/layouts/components/ThemeDrawer/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/layouts/components/ThemeDrawer/index.scss -------------------------------------------------------------------------------- /src/layouts/components/ThemeDrawer/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/layouts/components/ThemeDrawer/index.vue -------------------------------------------------------------------------------- /src/layouts/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/layouts/index.vue -------------------------------------------------------------------------------- /src/layouts/indexAsync.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/layouts/indexAsync.vue -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/routers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/routers/index.ts -------------------------------------------------------------------------------- /src/routers/modules/dynamicRouter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/routers/modules/dynamicRouter.ts -------------------------------------------------------------------------------- /src/routers/modules/staticRouter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/routers/modules/staticRouter.ts -------------------------------------------------------------------------------- /src/stores/helper/persist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/stores/helper/persist.ts -------------------------------------------------------------------------------- /src/stores/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/stores/index.ts -------------------------------------------------------------------------------- /src/stores/interface/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/stores/interface/index.ts -------------------------------------------------------------------------------- /src/stores/modules/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/stores/modules/auth.ts -------------------------------------------------------------------------------- /src/stores/modules/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/stores/modules/global.ts -------------------------------------------------------------------------------- /src/stores/modules/keepAlive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/stores/modules/keepAlive.ts -------------------------------------------------------------------------------- /src/stores/modules/tabs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/stores/modules/tabs.ts -------------------------------------------------------------------------------- /src/stores/modules/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/stores/modules/user.ts -------------------------------------------------------------------------------- /src/styles/common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/styles/common.scss -------------------------------------------------------------------------------- /src/styles/element-dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/styles/element-dark.scss -------------------------------------------------------------------------------- /src/styles/element.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/styles/element.scss -------------------------------------------------------------------------------- /src/styles/reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/styles/reset.scss -------------------------------------------------------------------------------- /src/styles/theme/aside.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/styles/theme/aside.ts -------------------------------------------------------------------------------- /src/styles/theme/header.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/styles/theme/header.ts -------------------------------------------------------------------------------- /src/styles/theme/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/styles/theme/menu.ts -------------------------------------------------------------------------------- /src/styles/var.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/styles/var.scss -------------------------------------------------------------------------------- /src/typings/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/typings/global.d.ts -------------------------------------------------------------------------------- /src/typings/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/typings/utils.d.ts -------------------------------------------------------------------------------- /src/typings/window.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/typings/window.d.ts -------------------------------------------------------------------------------- /src/utils/color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/utils/color.ts -------------------------------------------------------------------------------- /src/utils/dict.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/utils/dict.ts -------------------------------------------------------------------------------- /src/utils/eleValidate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/utils/eleValidate.ts -------------------------------------------------------------------------------- /src/utils/errorHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/utils/errorHandler.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/is/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/utils/is/index.ts -------------------------------------------------------------------------------- /src/utils/mittBus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/utils/mittBus.ts -------------------------------------------------------------------------------- /src/utils/svg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/utils/svg.ts -------------------------------------------------------------------------------- /src/views/about/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/about/index.vue -------------------------------------------------------------------------------- /src/views/assembly/batchImport/index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/views/assembly/batchImport/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/assembly/batchImport/index.vue -------------------------------------------------------------------------------- /src/views/assembly/draggable/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/assembly/draggable/index.scss -------------------------------------------------------------------------------- /src/views/assembly/draggable/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/assembly/draggable/index.vue -------------------------------------------------------------------------------- /src/views/assembly/guide/index.scss: -------------------------------------------------------------------------------- 1 | .el-button { 2 | margin-top: 20px; 3 | } 4 | -------------------------------------------------------------------------------- /src/views/assembly/guide/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/assembly/guide/index.vue -------------------------------------------------------------------------------- /src/views/assembly/selectFilter/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/assembly/selectFilter/index.scss -------------------------------------------------------------------------------- /src/views/assembly/selectFilter/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/assembly/selectFilter/index.vue -------------------------------------------------------------------------------- /src/views/assembly/selectIcon/index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/views/assembly/selectIcon/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/assembly/selectIcon/index.vue -------------------------------------------------------------------------------- /src/views/assembly/svgIcon/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/assembly/svgIcon/index.scss -------------------------------------------------------------------------------- /src/views/assembly/svgIcon/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/assembly/svgIcon/index.vue -------------------------------------------------------------------------------- /src/views/assembly/tabs/detail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/assembly/tabs/detail.vue -------------------------------------------------------------------------------- /src/views/assembly/tabs/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/assembly/tabs/index.vue -------------------------------------------------------------------------------- /src/views/assembly/treeFilter/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/assembly/treeFilter/index.scss -------------------------------------------------------------------------------- /src/views/assembly/treeFilter/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/assembly/treeFilter/index.vue -------------------------------------------------------------------------------- /src/views/assembly/uploadFile/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/assembly/uploadFile/index.scss -------------------------------------------------------------------------------- /src/views/assembly/uploadFile/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/assembly/uploadFile/index.vue -------------------------------------------------------------------------------- /src/views/assembly/wangEditor/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/assembly/wangEditor/index.scss -------------------------------------------------------------------------------- /src/views/assembly/wangEditor/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/assembly/wangEditor/index.vue -------------------------------------------------------------------------------- /src/views/auth/button/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/auth/button/index.scss -------------------------------------------------------------------------------- /src/views/auth/button/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/auth/button/index.vue -------------------------------------------------------------------------------- /src/views/auth/menu/index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/views/auth/menu/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/auth/menu/index.vue -------------------------------------------------------------------------------- /src/views/dashboard/dataVisualize/components/curve.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dashboard/dataVisualize/components/curve.vue -------------------------------------------------------------------------------- /src/views/dashboard/dataVisualize/components/pie.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dashboard/dataVisualize/components/pie.vue -------------------------------------------------------------------------------- /src/views/dashboard/dataVisualize/images/1-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dashboard/dataVisualize/images/1-bg.png -------------------------------------------------------------------------------- /src/views/dashboard/dataVisualize/images/2-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dashboard/dataVisualize/images/2-bg.png -------------------------------------------------------------------------------- /src/views/dashboard/dataVisualize/images/3-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dashboard/dataVisualize/images/3-bg.png -------------------------------------------------------------------------------- /src/views/dashboard/dataVisualize/images/4-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dashboard/dataVisualize/images/4-bg.png -------------------------------------------------------------------------------- /src/views/dashboard/dataVisualize/images/add_person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dashboard/dataVisualize/images/add_person.png -------------------------------------------------------------------------------- /src/views/dashboard/dataVisualize/images/add_team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dashboard/dataVisualize/images/add_team.png -------------------------------------------------------------------------------- /src/views/dashboard/dataVisualize/images/book-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dashboard/dataVisualize/images/book-bg.png -------------------------------------------------------------------------------- /src/views/dashboard/dataVisualize/images/book-sum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dashboard/dataVisualize/images/book-sum.png -------------------------------------------------------------------------------- /src/views/dashboard/dataVisualize/images/book_sum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dashboard/dataVisualize/images/book_sum.png -------------------------------------------------------------------------------- /src/views/dashboard/dataVisualize/images/today.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dashboard/dataVisualize/images/today.png -------------------------------------------------------------------------------- /src/views/dashboard/dataVisualize/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dashboard/dataVisualize/index.scss -------------------------------------------------------------------------------- /src/views/dashboard/dataVisualize/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dashboard/dataVisualize/index.vue -------------------------------------------------------------------------------- /src/views/dataScreen/assets/alarmList.Json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dataScreen/assets/alarmList.Json -------------------------------------------------------------------------------- /src/views/dataScreen/assets/china.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dataScreen/assets/china.json -------------------------------------------------------------------------------- /src/views/dataScreen/assets/ranking-icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dataScreen/assets/ranking-icon.ts -------------------------------------------------------------------------------- /src/views/dataScreen/components/AgeRatioChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dataScreen/components/AgeRatioChart.vue -------------------------------------------------------------------------------- /src/views/dataScreen/components/AnnualUseChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dataScreen/components/AnnualUseChart.vue -------------------------------------------------------------------------------- /src/views/dataScreen/components/ChinaMapChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dataScreen/components/ChinaMapChart.vue -------------------------------------------------------------------------------- /src/views/dataScreen/components/HotPlateChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dataScreen/components/HotPlateChart.vue -------------------------------------------------------------------------------- /src/views/dataScreen/components/MaleFemaleRatioChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dataScreen/components/MaleFemaleRatioChart.vue -------------------------------------------------------------------------------- /src/views/dataScreen/components/OverNext30Chart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dataScreen/components/OverNext30Chart.vue -------------------------------------------------------------------------------- /src/views/dataScreen/components/PlatformSourceChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dataScreen/components/PlatformSourceChart.vue -------------------------------------------------------------------------------- /src/views/dataScreen/components/RealTimeAccessChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dataScreen/components/RealTimeAccessChart.vue -------------------------------------------------------------------------------- /src/views/dataScreen/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dataScreen/images/bg.png -------------------------------------------------------------------------------- /src/views/dataScreen/images/contrast-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dataScreen/images/contrast-bg.png -------------------------------------------------------------------------------- /src/views/dataScreen/images/dataScreen-alarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dataScreen/images/dataScreen-alarm.png -------------------------------------------------------------------------------- /src/views/dataScreen/images/dataScreen-header-btn-bg-l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dataScreen/images/dataScreen-header-btn-bg-l.png -------------------------------------------------------------------------------- /src/views/dataScreen/images/dataScreen-header-btn-bg-r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dataScreen/images/dataScreen-header-btn-bg-r.png -------------------------------------------------------------------------------- /src/views/dataScreen/images/dataScreen-header-center-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dataScreen/images/dataScreen-header-center-bg.png -------------------------------------------------------------------------------- /src/views/dataScreen/images/dataScreen-header-left-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dataScreen/images/dataScreen-header-left-bg.png -------------------------------------------------------------------------------- /src/views/dataScreen/images/dataScreen-header-right-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dataScreen/images/dataScreen-header-right-bg.png -------------------------------------------------------------------------------- /src/views/dataScreen/images/dataScreen-header-warn-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dataScreen/images/dataScreen-header-warn-bg.png -------------------------------------------------------------------------------- /src/views/dataScreen/images/dataScreen-main-cb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dataScreen/images/dataScreen-main-cb.png -------------------------------------------------------------------------------- /src/views/dataScreen/images/dataScreen-main-lb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dataScreen/images/dataScreen-main-lb.png -------------------------------------------------------------------------------- /src/views/dataScreen/images/dataScreen-main-lc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dataScreen/images/dataScreen-main-lc.png -------------------------------------------------------------------------------- /src/views/dataScreen/images/dataScreen-main-lt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dataScreen/images/dataScreen-main-lt.png -------------------------------------------------------------------------------- /src/views/dataScreen/images/dataScreen-main-rb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dataScreen/images/dataScreen-main-rb.png -------------------------------------------------------------------------------- /src/views/dataScreen/images/dataScreen-main-rc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dataScreen/images/dataScreen-main-rc.png -------------------------------------------------------------------------------- /src/views/dataScreen/images/dataScreen-main-rt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dataScreen/images/dataScreen-main-rt.png -------------------------------------------------------------------------------- /src/views/dataScreen/images/dataScreen-title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dataScreen/images/dataScreen-title.png -------------------------------------------------------------------------------- /src/views/dataScreen/images/dataScreen-warn-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dataScreen/images/dataScreen-warn-bg.png -------------------------------------------------------------------------------- /src/views/dataScreen/images/line-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dataScreen/images/line-bg.png -------------------------------------------------------------------------------- /src/views/dataScreen/images/man-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dataScreen/images/man-bg.png -------------------------------------------------------------------------------- /src/views/dataScreen/images/man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dataScreen/images/man.png -------------------------------------------------------------------------------- /src/views/dataScreen/images/map-title-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dataScreen/images/map-title-bg.png -------------------------------------------------------------------------------- /src/views/dataScreen/images/rankingChart-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dataScreen/images/rankingChart-bg.png -------------------------------------------------------------------------------- /src/views/dataScreen/images/total.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dataScreen/images/total.png -------------------------------------------------------------------------------- /src/views/dataScreen/images/woman-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dataScreen/images/woman-bg.png -------------------------------------------------------------------------------- /src/views/dataScreen/images/woman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dataScreen/images/woman.png -------------------------------------------------------------------------------- /src/views/dataScreen/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dataScreen/index.scss -------------------------------------------------------------------------------- /src/views/dataScreen/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/dataScreen/index.vue -------------------------------------------------------------------------------- /src/views/directives/copyDirect/index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/views/directives/copyDirect/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/directives/copyDirect/index.vue -------------------------------------------------------------------------------- /src/views/directives/debounceDirect/index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/views/directives/debounceDirect/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/directives/debounceDirect/index.vue -------------------------------------------------------------------------------- /src/views/directives/dragDirect/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/directives/dragDirect/index.scss -------------------------------------------------------------------------------- /src/views/directives/dragDirect/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/directives/dragDirect/index.vue -------------------------------------------------------------------------------- /src/views/directives/longpressDirect/index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/views/directives/longpressDirect/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/directives/longpressDirect/index.vue -------------------------------------------------------------------------------- /src/views/directives/throttleDirect/index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/views/directives/throttleDirect/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/directives/throttleDirect/index.vue -------------------------------------------------------------------------------- /src/views/directives/watermarkDirect/index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/views/directives/watermarkDirect/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/directives/watermarkDirect/index.vue -------------------------------------------------------------------------------- /src/views/echarts/columnChart/index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/views/echarts/columnChart/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/echarts/columnChart/index.vue -------------------------------------------------------------------------------- /src/views/echarts/lineChart/index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/views/echarts/lineChart/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/echarts/lineChart/index.vue -------------------------------------------------------------------------------- /src/views/echarts/nestedChart/index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/views/echarts/nestedChart/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/echarts/nestedChart/index.vue -------------------------------------------------------------------------------- /src/views/echarts/pieChart/index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/views/echarts/pieChart/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/echarts/pieChart/index.vue -------------------------------------------------------------------------------- /src/views/echarts/radarChart/index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/views/echarts/radarChart/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/echarts/radarChart/index.vue -------------------------------------------------------------------------------- /src/views/echarts/waterChart/index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/views/echarts/waterChart/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/echarts/waterChart/index.vue -------------------------------------------------------------------------------- /src/views/form/basicForm/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/form/basicForm/index.scss -------------------------------------------------------------------------------- /src/views/form/basicForm/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/form/basicForm/index.vue -------------------------------------------------------------------------------- /src/views/form/dynamicForm/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/form/dynamicForm/index.scss -------------------------------------------------------------------------------- /src/views/form/dynamicForm/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/form/dynamicForm/index.vue -------------------------------------------------------------------------------- /src/views/form/proForm/index.scss: -------------------------------------------------------------------------------- 1 | .el-form { 2 | width: 100%; 3 | margin-top: 20px; 4 | } 5 | -------------------------------------------------------------------------------- /src/views/form/proForm/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/form/proForm/index.vue -------------------------------------------------------------------------------- /src/views/form/validateForm/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/form/validateForm/index.scss -------------------------------------------------------------------------------- /src/views/form/validateForm/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/form/validateForm/index.vue -------------------------------------------------------------------------------- /src/views/home/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/home/index.scss -------------------------------------------------------------------------------- /src/views/home/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/home/index.vue -------------------------------------------------------------------------------- /src/views/link/bing/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/link/bing/index.scss -------------------------------------------------------------------------------- /src/views/link/bing/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/link/bing/index.vue -------------------------------------------------------------------------------- /src/views/link/docs/index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/views/link/docs/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/link/docs/index.vue -------------------------------------------------------------------------------- /src/views/link/gitee/index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/views/link/gitee/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/link/gitee/index.vue -------------------------------------------------------------------------------- /src/views/link/github/index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/views/link/github/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/link/github/index.vue -------------------------------------------------------------------------------- /src/views/link/juejin/index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/views/link/juejin/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/link/juejin/index.vue -------------------------------------------------------------------------------- /src/views/login/components/LoginForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/login/components/LoginForm.vue -------------------------------------------------------------------------------- /src/views/login/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/login/index.scss -------------------------------------------------------------------------------- /src/views/login/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/login/index.vue -------------------------------------------------------------------------------- /src/views/menu/menu1/index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/views/menu/menu1/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/menu/menu1/index.vue -------------------------------------------------------------------------------- /src/views/menu/menu2/menu21/index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/views/menu/menu2/menu21/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/menu/menu2/menu21/index.vue -------------------------------------------------------------------------------- /src/views/menu/menu2/menu22/menu221/index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/views/menu/menu2/menu22/menu221/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/menu/menu2/menu22/menu221/index.vue -------------------------------------------------------------------------------- /src/views/menu/menu2/menu22/menu222/index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/views/menu/menu2/menu22/menu222/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/menu/menu2/menu22/menu222/index.vue -------------------------------------------------------------------------------- /src/views/menu/menu2/menu23/index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/views/menu/menu2/menu23/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/menu/menu2/menu23/index.vue -------------------------------------------------------------------------------- /src/views/menu/menu3/index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/views/menu/menu3/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/menu/menu3/index.vue -------------------------------------------------------------------------------- /src/views/proTable/complexProTable/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/proTable/complexProTable/index.vue -------------------------------------------------------------------------------- /src/views/proTable/components/UserDrawer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/proTable/components/UserDrawer.vue -------------------------------------------------------------------------------- /src/views/proTable/document/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/proTable/document/index.vue -------------------------------------------------------------------------------- /src/views/proTable/treeProTable/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/proTable/treeProTable/index.vue -------------------------------------------------------------------------------- /src/views/proTable/useProTable/detail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/proTable/useProTable/detail.vue -------------------------------------------------------------------------------- /src/views/proTable/useProTable/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/proTable/useProTable/index.vue -------------------------------------------------------------------------------- /src/views/proTable/useSelectFilter/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/proTable/useSelectFilter/index.vue -------------------------------------------------------------------------------- /src/views/proTable/useTreeFilter/detail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/proTable/useTreeFilter/detail.vue -------------------------------------------------------------------------------- /src/views/proTable/useTreeFilter/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/proTable/useTreeFilter/index.vue -------------------------------------------------------------------------------- /src/views/system/accountManage/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/system/accountManage/index.vue -------------------------------------------------------------------------------- /src/views/system/departmentManage/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/system/departmentManage/index.vue -------------------------------------------------------------------------------- /src/views/system/dictManage/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/system/dictManage/index.vue -------------------------------------------------------------------------------- /src/views/system/menuMange/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/system/menuMange/index.vue -------------------------------------------------------------------------------- /src/views/system/roleManage/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/system/roleManage/index.vue -------------------------------------------------------------------------------- /src/views/system/systemLog/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/system/systemLog/index.vue -------------------------------------------------------------------------------- /src/views/system/timingTask/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/src/views/system/timingTask/index.vue -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalseySpicy/Geeker-Admin/HEAD/vite.config.ts --------------------------------------------------------------------------------