├── .env ├── .env.development ├── .env.production ├── .gitignore ├── .prettierrc.cjs ├── LICENSE ├── README.md ├── docs ├── .vitepress │ ├── config.mts │ ├── plugins │ │ ├── api-table.ts │ │ ├── demo-container.ts │ │ ├── external-link-icon.ts │ │ ├── index.ts │ │ ├── link.ts │ │ ├── mermaid.ts │ │ ├── system.mts │ │ ├── table-wrapper.ts │ │ ├── tag.ts │ │ ├── tooltip.ts │ │ └── vite-plugin.ts │ └── theme │ │ ├── MyLayout.vue │ │ ├── app.scss │ │ ├── index.mts │ │ └── vp │ │ ├── VpApiTyping.vue │ │ ├── VpDemo.vue │ │ └── VpMermaid.vue ├── assets │ └── icon │ │ ├── logo-dark.svg │ │ └── logo-light.svg ├── docker │ ├── .env │ ├── docker-compose.yaml │ ├── mysql │ │ ├── docker-entrypoint-initdb.d │ │ │ ├── init_nacos_config.sql │ │ │ ├── init_xh_admin.sql │ │ │ └── init_xxl_job.sql │ │ └── my.cnf │ └── nginx │ │ └── nginx.conf ├── document │ ├── backend │ │ ├── datasource.md │ │ ├── index.md │ │ ├── persistence.md │ │ ├── specification.md │ │ └── swagger.md │ ├── frontend │ │ ├── components │ │ │ ├── excel-import.md │ │ │ ├── form.md │ │ │ ├── icon.md │ │ │ ├── single-date-picker.md │ │ │ ├── table.md │ │ │ └── upload.md │ │ ├── demo │ │ │ ├── components │ │ │ │ ├── excel-import │ │ │ │ │ ├── basic.vue │ │ │ │ │ ├── complex.vue │ │ │ │ │ ├── embedded.vue │ │ │ │ │ └── tip.vue │ │ │ │ ├── form │ │ │ │ │ ├── $param.vue │ │ │ │ │ ├── basic.vue │ │ │ │ │ ├── comment.vue │ │ │ │ │ ├── event.vue │ │ │ │ │ ├── native.vue │ │ │ │ │ ├── render.vue │ │ │ │ │ ├── skeleton.vue │ │ │ │ │ ├── slotName.vue │ │ │ │ │ ├── slots.vue │ │ │ │ │ └── span.vue │ │ │ │ ├── icon │ │ │ │ │ ├── icon-select.vue │ │ │ │ │ ├── icon.vue │ │ │ │ │ └── svg-icon.vue │ │ │ │ ├── single-date-picker │ │ │ │ │ ├── basic.vue │ │ │ │ │ └── format.vue │ │ │ │ ├── table │ │ │ │ │ ├── action-slot.vue │ │ │ │ │ ├── basic.vue │ │ │ │ │ ├── comment.vue │ │ │ │ │ ├── editable.vue │ │ │ │ │ ├── editable2.vue │ │ │ │ │ ├── fetch.vue │ │ │ │ │ ├── fetch2.vue │ │ │ │ │ ├── fixed.vue │ │ │ │ │ ├── multi-header.vue │ │ │ │ │ ├── not-page.vue │ │ │ │ │ ├── operation.vue │ │ │ │ │ ├── operation2.vue │ │ │ │ │ ├── pagination.vue │ │ │ │ │ ├── selection.vue │ │ │ │ │ ├── slot-name.vue │ │ │ │ │ ├── slots.vue │ │ │ │ │ └── summary.vue │ │ │ │ └── upload │ │ │ │ │ ├── basic.vue │ │ │ │ │ ├── cropper.vue │ │ │ │ │ ├── manual.vue │ │ │ │ │ └── single.vue │ │ │ └── utils │ │ │ │ ├── context-menu │ │ │ │ ├── basic.vue │ │ │ │ ├── disabled.vue │ │ │ │ └── icon.vue │ │ │ │ ├── dict │ │ │ │ ├── basic.vue │ │ │ │ └── type.vue │ │ │ │ ├── echart │ │ │ │ ├── basic.vue │ │ │ │ ├── basic2.vue │ │ │ │ └── on-init.vue │ │ │ │ ├── file-url │ │ │ │ ├── basic.vue │ │ │ │ ├── compress.vue │ │ │ │ └── download.vue │ │ │ │ ├── request │ │ │ │ ├── basic.vue │ │ │ │ ├── confirm.vue │ │ │ │ ├── loading-ref.vue │ │ │ │ ├── loading.vue │ │ │ │ └── show-success-msg.vue │ │ │ │ └── validate │ │ │ │ ├── fieldValid.vue │ │ │ │ └── formValid.vue │ │ ├── index.md │ │ ├── specification.md │ │ └── utils │ │ │ ├── context-menu.md │ │ │ ├── dict.md │ │ │ ├── echart.md │ │ │ ├── file-url.md │ │ │ ├── request.md │ │ │ └── validate.md │ ├── index.md │ └── permission │ │ └── data-permission.md ├── guide │ ├── deploy │ │ ├── index.md │ │ ├── install-docker.md │ │ ├── jenkinsfile │ │ │ ├── xh-admin-backend.jkf │ │ │ └── xh-admin-frontend.jkf │ │ ├── microservice.md │ │ └── middleware.md │ ├── faq.md │ ├── img.png │ ├── install │ │ ├── backend.md │ │ ├── frontend.md │ │ ├── index.md │ │ └── initialized-database │ │ │ ├── index.md │ │ │ ├── init_nacos_config.md │ │ │ ├── init_xh_admin.md │ │ │ └── init_xxl_job.md │ ├── introduction.md │ ├── join-group.md │ ├── quick-info.md │ ├── release.md │ ├── reward.md │ ├── special-thanks.md │ └── todo-list.md ├── index.md ├── public │ ├── icon │ │ ├── gitee.svg │ │ ├── logo-dark.svg │ │ └── logo-light.svg │ └── image │ │ ├── img.png │ │ ├── img_1.png │ │ ├── img_10.png │ │ ├── img_11.png │ │ ├── img_12.png │ │ ├── img_13.png │ │ ├── img_14.png │ │ ├── img_15.png │ │ ├── img_2.png │ │ ├── img_3.png │ │ ├── img_4.png │ │ ├── img_5.png │ │ ├── img_6.png │ │ ├── img_7.png │ │ ├── img_8.png │ │ ├── img_9.png │ │ ├── reward.png │ │ └── wechat.png └── reference │ └── index.md ├── eslint.config.js ├── index.html ├── interface ├── components │ ├── excelImport.ts │ ├── form.ts │ ├── index.ts │ ├── singleDatePicker.ts │ └── table.ts └── utils │ ├── dict.ts │ ├── excel.ts │ ├── index.ts │ ├── request.ts │ └── validate.ts ├── package.json ├── pnpm-lock.yaml ├── public ├── favicon.ico ├── favicon.svg └── icon │ ├── arrowRight.svg │ ├── clear.svg │ ├── detail.svg │ ├── enter.svg │ ├── right.svg │ └── search.svg ├── src ├── App.vue ├── api │ ├── file │ │ └── fileOperation.ts │ ├── generator.ts │ └── system │ │ ├── dataPermission.ts │ │ ├── dict.ts │ │ ├── log.ts │ │ ├── menu.ts │ │ ├── org.ts │ │ ├── role.ts │ │ └── user.ts ├── assets │ ├── bg-dark.jpg │ ├── bg.jpg │ ├── icon │ │ ├── 404.svg │ │ ├── border.svg │ │ ├── captcha.svg │ │ ├── checkedtag.svg │ │ ├── chinese.svg │ │ ├── chinesef.svg │ │ ├── dictionary.svg │ │ ├── english.svg │ │ ├── exitfullscreen.svg │ │ ├── file.svg │ │ ├── fold.svg │ │ ├── full-screen.svg │ │ ├── generator.svg │ │ ├── github.svg │ │ ├── heart.svg │ │ ├── japanese.svg │ │ ├── layoutSetting.svg │ │ ├── logo-black.svg │ │ ├── logo-white.svg │ │ ├── moon.svg │ │ ├── online-user.svg │ │ ├── organization.svg │ │ ├── pin-fill.svg │ │ ├── pin-line.svg │ │ ├── search-list.svg │ │ ├── sun.svg │ │ └── user-group.svg │ ├── image │ │ ├── 404.png │ │ ├── avatar-default.png │ │ └── jinghui.png │ └── logo.png ├── components │ ├── Comment.vue │ ├── ContextMenu.vue │ ├── ExcelImport.vue │ ├── Icon.vue │ ├── SvgIcon.vue │ ├── Tool.vue │ ├── TopFilter.vue │ ├── constants.ts │ ├── form │ │ ├── Cropper.vue │ │ ├── IconSelect.vue │ │ ├── Native.vue │ │ ├── SingleDatePicker.vue │ │ ├── Upload.vue │ │ └── index.vue │ ├── index.ts │ ├── mutils.ts │ └── table │ │ ├── ExportExcel.vue │ │ ├── OperationButton.vue │ │ ├── TableColumnSetting.vue │ │ ├── index.vue │ │ └── queryFilter │ │ ├── FilterRowComp.vue │ │ ├── Preview.vue │ │ ├── index.vue │ │ └── queryFilter.ts ├── directive │ └── index.ts ├── i18n │ ├── index.ts │ └── locale │ │ ├── en.ts │ │ ├── ja.ts │ │ ├── zh-cn.ts │ │ └── zh-tw.ts ├── layout │ ├── Action │ │ ├── FullScreenControl.vue │ │ ├── Github.vue │ │ ├── Search.vue │ │ ├── Setting.vue │ │ ├── SwitchLocale.vue │ │ ├── SwitchStyle.vue │ │ ├── UserAvatar.vue │ │ ├── action.scss │ │ └── index.vue │ ├── Breadcrumb.vue │ ├── DefaultLayout │ │ ├── LeftSide.vue │ │ ├── RightSide.vue │ │ └── index.vue │ ├── Footer.vue │ ├── Header.vue │ ├── Logo.vue │ ├── Main.vue │ ├── Menu.vue │ ├── NavTabs │ │ ├── LivelyNavTabs.vue │ │ ├── MellowNavTabs.vue │ │ ├── SquareNavTabs.vue │ │ └── index.vue │ ├── SettingDrawer.vue │ ├── SwitchRole.vue │ ├── ToggleMenu.vue │ └── index.vue ├── main.ts ├── router │ ├── index.ts │ └── static.ts ├── stores │ ├── system.ts │ └── theme.ts ├── styles │ ├── app.scss │ └── index.scss ├── utils │ ├── binary.ts │ ├── context-menu.ts │ ├── countup.ts │ ├── dict.ts │ ├── echarts.ts │ ├── excel.ts │ ├── index.ts │ ├── loading.ts │ ├── request.ts │ ├── string.ts │ ├── tree.ts │ └── validate.ts └── views │ ├── NotFond.vue │ ├── demo │ ├── form.vue │ ├── index.vue │ └── table.vue │ ├── generator │ ├── codeGenForm.vue │ ├── constant.ts │ ├── designColumn.vue │ └── index.vue │ ├── home │ ├── charts.vue │ ├── index.vue │ ├── statistic.vue │ ├── todoList.vue │ └── topPanel.vue │ ├── iframe │ └── index.vue │ ├── login │ └── index.vue │ ├── monitor │ └── online │ │ └── index.vue │ ├── personalCenter │ └── index.vue │ └── system │ ├── dataPermission │ ├── PermissionRow.vue │ ├── dataPermissionForm.vue │ └── index.vue │ ├── dict │ ├── dictForm.vue │ ├── index.vue │ ├── selectDictDetail.vue │ └── selectDictType.vue │ ├── file │ ├── constant.js │ ├── fileForm.vue │ ├── index.vue │ └── selectSysFile.vue │ ├── log │ ├── index.vue │ └── logDetail.vue │ ├── menu │ ├── constant.ts │ ├── index.vue │ └── menuForm.vue │ ├── org │ ├── index.vue │ ├── orgForm.vue │ └── selectOrg.vue │ ├── role │ ├── dataPermission.vue │ ├── index.vue │ ├── roleForm.vue │ └── selectRole.vue │ └── user │ ├── constant.js │ ├── index.vue │ ├── jobs.vue │ ├── resetPassword.vue │ ├── selectUser.vue │ ├── userForm.vue │ ├── userGroupForm.vue │ ├── userGroupIndex.vue │ ├── userImport.vue │ └── userJob.vue ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json ├── types ├── env.d.ts └── global.d.ts └── vite.config.ts /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/.env -------------------------------------------------------------------------------- /.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/.env.development -------------------------------------------------------------------------------- /.env.production: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/.prettierrc.cjs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/README.md -------------------------------------------------------------------------------- /docs/.vitepress/config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/.vitepress/config.mts -------------------------------------------------------------------------------- /docs/.vitepress/plugins/api-table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/.vitepress/plugins/api-table.ts -------------------------------------------------------------------------------- /docs/.vitepress/plugins/demo-container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/.vitepress/plugins/demo-container.ts -------------------------------------------------------------------------------- /docs/.vitepress/plugins/external-link-icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/.vitepress/plugins/external-link-icon.ts -------------------------------------------------------------------------------- /docs/.vitepress/plugins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/.vitepress/plugins/index.ts -------------------------------------------------------------------------------- /docs/.vitepress/plugins/link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/.vitepress/plugins/link.ts -------------------------------------------------------------------------------- /docs/.vitepress/plugins/mermaid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/.vitepress/plugins/mermaid.ts -------------------------------------------------------------------------------- /docs/.vitepress/plugins/system.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/.vitepress/plugins/system.mts -------------------------------------------------------------------------------- /docs/.vitepress/plugins/table-wrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/.vitepress/plugins/table-wrapper.ts -------------------------------------------------------------------------------- /docs/.vitepress/plugins/tag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/.vitepress/plugins/tag.ts -------------------------------------------------------------------------------- /docs/.vitepress/plugins/tooltip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/.vitepress/plugins/tooltip.ts -------------------------------------------------------------------------------- /docs/.vitepress/plugins/vite-plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/.vitepress/plugins/vite-plugin.ts -------------------------------------------------------------------------------- /docs/.vitepress/theme/MyLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/.vitepress/theme/MyLayout.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/.vitepress/theme/app.scss -------------------------------------------------------------------------------- /docs/.vitepress/theme/index.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/.vitepress/theme/index.mts -------------------------------------------------------------------------------- /docs/.vitepress/theme/vp/VpApiTyping.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/.vitepress/theme/vp/VpApiTyping.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/vp/VpDemo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/.vitepress/theme/vp/VpDemo.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/vp/VpMermaid.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/.vitepress/theme/vp/VpMermaid.vue -------------------------------------------------------------------------------- /docs/assets/icon/logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/assets/icon/logo-dark.svg -------------------------------------------------------------------------------- /docs/assets/icon/logo-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/assets/icon/logo-light.svg -------------------------------------------------------------------------------- /docs/docker/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/docker/.env -------------------------------------------------------------------------------- /docs/docker/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/docker/docker-compose.yaml -------------------------------------------------------------------------------- /docs/docker/mysql/docker-entrypoint-initdb.d/init_nacos_config.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/docker/mysql/docker-entrypoint-initdb.d/init_nacos_config.sql -------------------------------------------------------------------------------- /docs/docker/mysql/docker-entrypoint-initdb.d/init_xh_admin.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/docker/mysql/docker-entrypoint-initdb.d/init_xh_admin.sql -------------------------------------------------------------------------------- /docs/docker/mysql/docker-entrypoint-initdb.d/init_xxl_job.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/docker/mysql/docker-entrypoint-initdb.d/init_xxl_job.sql -------------------------------------------------------------------------------- /docs/docker/mysql/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/docker/mysql/my.cnf -------------------------------------------------------------------------------- /docs/docker/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/docker/nginx/nginx.conf -------------------------------------------------------------------------------- /docs/document/backend/datasource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/backend/datasource.md -------------------------------------------------------------------------------- /docs/document/backend/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/backend/index.md -------------------------------------------------------------------------------- /docs/document/backend/persistence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/backend/persistence.md -------------------------------------------------------------------------------- /docs/document/backend/specification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/backend/specification.md -------------------------------------------------------------------------------- /docs/document/backend/swagger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/backend/swagger.md -------------------------------------------------------------------------------- /docs/document/frontend/components/excel-import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/components/excel-import.md -------------------------------------------------------------------------------- /docs/document/frontend/components/form.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/components/form.md -------------------------------------------------------------------------------- /docs/document/frontend/components/icon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/components/icon.md -------------------------------------------------------------------------------- /docs/document/frontend/components/single-date-picker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/components/single-date-picker.md -------------------------------------------------------------------------------- /docs/document/frontend/components/table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/components/table.md -------------------------------------------------------------------------------- /docs/document/frontend/components/upload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/components/upload.md -------------------------------------------------------------------------------- /docs/document/frontend/demo/components/excel-import/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/components/excel-import/basic.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/components/excel-import/complex.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/components/excel-import/complex.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/components/excel-import/embedded.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/components/excel-import/embedded.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/components/excel-import/tip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/components/excel-import/tip.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/components/form/$param.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/components/form/$param.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/components/form/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/components/form/basic.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/components/form/comment.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/components/form/comment.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/components/form/event.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/components/form/event.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/components/form/native.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/components/form/native.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/components/form/render.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/components/form/render.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/components/form/skeleton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/components/form/skeleton.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/components/form/slotName.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/components/form/slotName.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/components/form/slots.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/components/form/slots.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/components/form/span.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/components/form/span.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/components/icon/icon-select.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/components/icon/icon-select.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/components/icon/icon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/components/icon/icon.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/components/icon/svg-icon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/components/icon/svg-icon.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/components/single-date-picker/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/components/single-date-picker/basic.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/components/single-date-picker/format.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/components/single-date-picker/format.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/components/table/action-slot.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/components/table/action-slot.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/components/table/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/components/table/basic.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/components/table/comment.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/components/table/comment.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/components/table/editable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/components/table/editable.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/components/table/editable2.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/components/table/editable2.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/components/table/fetch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/components/table/fetch.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/components/table/fetch2.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/components/table/fetch2.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/components/table/fixed.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/components/table/fixed.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/components/table/multi-header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/components/table/multi-header.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/components/table/not-page.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/components/table/not-page.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/components/table/operation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/components/table/operation.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/components/table/operation2.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/components/table/operation2.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/components/table/pagination.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/components/table/pagination.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/components/table/selection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/components/table/selection.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/components/table/slot-name.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/components/table/slot-name.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/components/table/slots.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/components/table/slots.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/components/table/summary.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/components/table/summary.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/components/upload/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/components/upload/basic.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/components/upload/cropper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/components/upload/cropper.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/components/upload/manual.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/components/upload/manual.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/components/upload/single.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/components/upload/single.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/utils/context-menu/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/utils/context-menu/basic.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/utils/context-menu/disabled.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/utils/context-menu/disabled.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/utils/context-menu/icon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/utils/context-menu/icon.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/utils/dict/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/utils/dict/basic.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/utils/dict/type.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/utils/dict/type.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/utils/echart/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/utils/echart/basic.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/utils/echart/basic2.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/utils/echart/basic2.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/utils/echart/on-init.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/utils/echart/on-init.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/utils/file-url/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/utils/file-url/basic.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/utils/file-url/compress.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/utils/file-url/compress.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/utils/file-url/download.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/utils/file-url/download.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/utils/request/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/utils/request/basic.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/utils/request/confirm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/utils/request/confirm.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/utils/request/loading-ref.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/utils/request/loading-ref.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/utils/request/loading.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/utils/request/loading.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/utils/request/show-success-msg.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/utils/request/show-success-msg.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/utils/validate/fieldValid.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/utils/validate/fieldValid.vue -------------------------------------------------------------------------------- /docs/document/frontend/demo/utils/validate/formValid.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/demo/utils/validate/formValid.vue -------------------------------------------------------------------------------- /docs/document/frontend/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/index.md -------------------------------------------------------------------------------- /docs/document/frontend/specification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/specification.md -------------------------------------------------------------------------------- /docs/document/frontend/utils/context-menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/utils/context-menu.md -------------------------------------------------------------------------------- /docs/document/frontend/utils/dict.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/utils/dict.md -------------------------------------------------------------------------------- /docs/document/frontend/utils/echart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/utils/echart.md -------------------------------------------------------------------------------- /docs/document/frontend/utils/file-url.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/utils/file-url.md -------------------------------------------------------------------------------- /docs/document/frontend/utils/request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/utils/request.md -------------------------------------------------------------------------------- /docs/document/frontend/utils/validate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/frontend/utils/validate.md -------------------------------------------------------------------------------- /docs/document/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/index.md -------------------------------------------------------------------------------- /docs/document/permission/data-permission.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/document/permission/data-permission.md -------------------------------------------------------------------------------- /docs/guide/deploy/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/guide/deploy/index.md -------------------------------------------------------------------------------- /docs/guide/deploy/install-docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/guide/deploy/install-docker.md -------------------------------------------------------------------------------- /docs/guide/deploy/jenkinsfile/xh-admin-backend.jkf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/guide/deploy/jenkinsfile/xh-admin-backend.jkf -------------------------------------------------------------------------------- /docs/guide/deploy/jenkinsfile/xh-admin-frontend.jkf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/guide/deploy/jenkinsfile/xh-admin-frontend.jkf -------------------------------------------------------------------------------- /docs/guide/deploy/microservice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/guide/deploy/microservice.md -------------------------------------------------------------------------------- /docs/guide/deploy/middleware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/guide/deploy/middleware.md -------------------------------------------------------------------------------- /docs/guide/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/guide/faq.md -------------------------------------------------------------------------------- /docs/guide/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/guide/img.png -------------------------------------------------------------------------------- /docs/guide/install/backend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/guide/install/backend.md -------------------------------------------------------------------------------- /docs/guide/install/frontend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/guide/install/frontend.md -------------------------------------------------------------------------------- /docs/guide/install/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/guide/install/index.md -------------------------------------------------------------------------------- /docs/guide/install/initialized-database/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/guide/install/initialized-database/index.md -------------------------------------------------------------------------------- /docs/guide/install/initialized-database/init_nacos_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/guide/install/initialized-database/init_nacos_config.md -------------------------------------------------------------------------------- /docs/guide/install/initialized-database/init_xh_admin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/guide/install/initialized-database/init_xh_admin.md -------------------------------------------------------------------------------- /docs/guide/install/initialized-database/init_xxl_job.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/guide/install/initialized-database/init_xxl_job.md -------------------------------------------------------------------------------- /docs/guide/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/guide/introduction.md -------------------------------------------------------------------------------- /docs/guide/join-group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/guide/join-group.md -------------------------------------------------------------------------------- /docs/guide/quick-info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/guide/quick-info.md -------------------------------------------------------------------------------- /docs/guide/release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/guide/release.md -------------------------------------------------------------------------------- /docs/guide/reward.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/guide/reward.md -------------------------------------------------------------------------------- /docs/guide/special-thanks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/guide/special-thanks.md -------------------------------------------------------------------------------- /docs/guide/todo-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/guide/todo-list.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/public/icon/gitee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/public/icon/gitee.svg -------------------------------------------------------------------------------- /docs/public/icon/logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/public/icon/logo-dark.svg -------------------------------------------------------------------------------- /docs/public/icon/logo-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/public/icon/logo-light.svg -------------------------------------------------------------------------------- /docs/public/image/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/public/image/img.png -------------------------------------------------------------------------------- /docs/public/image/img_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/public/image/img_1.png -------------------------------------------------------------------------------- /docs/public/image/img_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/public/image/img_10.png -------------------------------------------------------------------------------- /docs/public/image/img_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/public/image/img_11.png -------------------------------------------------------------------------------- /docs/public/image/img_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/public/image/img_12.png -------------------------------------------------------------------------------- /docs/public/image/img_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/public/image/img_13.png -------------------------------------------------------------------------------- /docs/public/image/img_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/public/image/img_14.png -------------------------------------------------------------------------------- /docs/public/image/img_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/public/image/img_15.png -------------------------------------------------------------------------------- /docs/public/image/img_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/public/image/img_2.png -------------------------------------------------------------------------------- /docs/public/image/img_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/public/image/img_3.png -------------------------------------------------------------------------------- /docs/public/image/img_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/public/image/img_4.png -------------------------------------------------------------------------------- /docs/public/image/img_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/public/image/img_5.png -------------------------------------------------------------------------------- /docs/public/image/img_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/public/image/img_6.png -------------------------------------------------------------------------------- /docs/public/image/img_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/public/image/img_7.png -------------------------------------------------------------------------------- /docs/public/image/img_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/public/image/img_8.png -------------------------------------------------------------------------------- /docs/public/image/img_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/public/image/img_9.png -------------------------------------------------------------------------------- /docs/public/image/reward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/public/image/reward.png -------------------------------------------------------------------------------- /docs/public/image/wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/docs/public/image/wechat.png -------------------------------------------------------------------------------- /docs/reference/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/index.html -------------------------------------------------------------------------------- /interface/components/excelImport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/interface/components/excelImport.ts -------------------------------------------------------------------------------- /interface/components/form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/interface/components/form.ts -------------------------------------------------------------------------------- /interface/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/interface/components/index.ts -------------------------------------------------------------------------------- /interface/components/singleDatePicker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/interface/components/singleDatePicker.ts -------------------------------------------------------------------------------- /interface/components/table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/interface/components/table.ts -------------------------------------------------------------------------------- /interface/utils/dict.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/interface/utils/dict.ts -------------------------------------------------------------------------------- /interface/utils/excel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/interface/utils/excel.ts -------------------------------------------------------------------------------- /interface/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/interface/utils/index.ts -------------------------------------------------------------------------------- /interface/utils/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/interface/utils/request.ts -------------------------------------------------------------------------------- /interface/utils/validate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/interface/utils/validate.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/icon/arrowRight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/public/icon/arrowRight.svg -------------------------------------------------------------------------------- /public/icon/clear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/public/icon/clear.svg -------------------------------------------------------------------------------- /public/icon/detail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/public/icon/detail.svg -------------------------------------------------------------------------------- /public/icon/enter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/public/icon/enter.svg -------------------------------------------------------------------------------- /public/icon/right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/public/icon/right.svg -------------------------------------------------------------------------------- /public/icon/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/public/icon/search.svg -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/api/file/fileOperation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/api/file/fileOperation.ts -------------------------------------------------------------------------------- /src/api/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/api/generator.ts -------------------------------------------------------------------------------- /src/api/system/dataPermission.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/api/system/dataPermission.ts -------------------------------------------------------------------------------- /src/api/system/dict.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/api/system/dict.ts -------------------------------------------------------------------------------- /src/api/system/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/api/system/log.ts -------------------------------------------------------------------------------- /src/api/system/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/api/system/menu.ts -------------------------------------------------------------------------------- /src/api/system/org.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/api/system/org.ts -------------------------------------------------------------------------------- /src/api/system/role.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/api/system/role.ts -------------------------------------------------------------------------------- /src/api/system/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/api/system/user.ts -------------------------------------------------------------------------------- /src/assets/bg-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/assets/bg-dark.jpg -------------------------------------------------------------------------------- /src/assets/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/assets/bg.jpg -------------------------------------------------------------------------------- /src/assets/icon/404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/assets/icon/404.svg -------------------------------------------------------------------------------- /src/assets/icon/border.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/assets/icon/border.svg -------------------------------------------------------------------------------- /src/assets/icon/captcha.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/assets/icon/captcha.svg -------------------------------------------------------------------------------- /src/assets/icon/checkedtag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/assets/icon/checkedtag.svg -------------------------------------------------------------------------------- /src/assets/icon/chinese.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/assets/icon/chinese.svg -------------------------------------------------------------------------------- /src/assets/icon/chinesef.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/assets/icon/chinesef.svg -------------------------------------------------------------------------------- /src/assets/icon/dictionary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/assets/icon/dictionary.svg -------------------------------------------------------------------------------- /src/assets/icon/english.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/assets/icon/english.svg -------------------------------------------------------------------------------- /src/assets/icon/exitfullscreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/assets/icon/exitfullscreen.svg -------------------------------------------------------------------------------- /src/assets/icon/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/assets/icon/file.svg -------------------------------------------------------------------------------- /src/assets/icon/fold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/assets/icon/fold.svg -------------------------------------------------------------------------------- /src/assets/icon/full-screen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/assets/icon/full-screen.svg -------------------------------------------------------------------------------- /src/assets/icon/generator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/assets/icon/generator.svg -------------------------------------------------------------------------------- /src/assets/icon/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/assets/icon/github.svg -------------------------------------------------------------------------------- /src/assets/icon/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/assets/icon/heart.svg -------------------------------------------------------------------------------- /src/assets/icon/japanese.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/assets/icon/japanese.svg -------------------------------------------------------------------------------- /src/assets/icon/layoutSetting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/assets/icon/layoutSetting.svg -------------------------------------------------------------------------------- /src/assets/icon/logo-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/assets/icon/logo-black.svg -------------------------------------------------------------------------------- /src/assets/icon/logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/assets/icon/logo-white.svg -------------------------------------------------------------------------------- /src/assets/icon/moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/assets/icon/moon.svg -------------------------------------------------------------------------------- /src/assets/icon/online-user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/assets/icon/online-user.svg -------------------------------------------------------------------------------- /src/assets/icon/organization.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/assets/icon/organization.svg -------------------------------------------------------------------------------- /src/assets/icon/pin-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/assets/icon/pin-fill.svg -------------------------------------------------------------------------------- /src/assets/icon/pin-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/assets/icon/pin-line.svg -------------------------------------------------------------------------------- /src/assets/icon/search-list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/assets/icon/search-list.svg -------------------------------------------------------------------------------- /src/assets/icon/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/assets/icon/sun.svg -------------------------------------------------------------------------------- /src/assets/icon/user-group.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/assets/icon/user-group.svg -------------------------------------------------------------------------------- /src/assets/image/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/assets/image/404.png -------------------------------------------------------------------------------- /src/assets/image/avatar-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/assets/image/avatar-default.png -------------------------------------------------------------------------------- /src/assets/image/jinghui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/assets/image/jinghui.png -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/components/Comment.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/components/Comment.vue -------------------------------------------------------------------------------- /src/components/ContextMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/components/ContextMenu.vue -------------------------------------------------------------------------------- /src/components/ExcelImport.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/components/ExcelImport.vue -------------------------------------------------------------------------------- /src/components/Icon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/components/Icon.vue -------------------------------------------------------------------------------- /src/components/SvgIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/components/SvgIcon.vue -------------------------------------------------------------------------------- /src/components/Tool.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/components/Tool.vue -------------------------------------------------------------------------------- /src/components/TopFilter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/components/TopFilter.vue -------------------------------------------------------------------------------- /src/components/constants.ts: -------------------------------------------------------------------------------- 1 | //收纳按钮组件默认数量 2 | export const DefaultMaxCount = 2 3 | -------------------------------------------------------------------------------- /src/components/form/Cropper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/components/form/Cropper.vue -------------------------------------------------------------------------------- /src/components/form/IconSelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/components/form/IconSelect.vue -------------------------------------------------------------------------------- /src/components/form/Native.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/components/form/Native.vue -------------------------------------------------------------------------------- /src/components/form/SingleDatePicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/components/form/SingleDatePicker.vue -------------------------------------------------------------------------------- /src/components/form/Upload.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/components/form/Upload.vue -------------------------------------------------------------------------------- /src/components/form/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/components/form/index.vue -------------------------------------------------------------------------------- /src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/components/index.ts -------------------------------------------------------------------------------- /src/components/mutils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/components/mutils.ts -------------------------------------------------------------------------------- /src/components/table/ExportExcel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/components/table/ExportExcel.vue -------------------------------------------------------------------------------- /src/components/table/OperationButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/components/table/OperationButton.vue -------------------------------------------------------------------------------- /src/components/table/TableColumnSetting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/components/table/TableColumnSetting.vue -------------------------------------------------------------------------------- /src/components/table/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/components/table/index.vue -------------------------------------------------------------------------------- /src/components/table/queryFilter/FilterRowComp.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/components/table/queryFilter/FilterRowComp.vue -------------------------------------------------------------------------------- /src/components/table/queryFilter/Preview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/components/table/queryFilter/Preview.vue -------------------------------------------------------------------------------- /src/components/table/queryFilter/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/components/table/queryFilter/index.vue -------------------------------------------------------------------------------- /src/components/table/queryFilter/queryFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/components/table/queryFilter/queryFilter.ts -------------------------------------------------------------------------------- /src/directive/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/directive/index.ts -------------------------------------------------------------------------------- /src/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/i18n/index.ts -------------------------------------------------------------------------------- /src/i18n/locale/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/i18n/locale/en.ts -------------------------------------------------------------------------------- /src/i18n/locale/ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/i18n/locale/ja.ts -------------------------------------------------------------------------------- /src/i18n/locale/zh-cn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/i18n/locale/zh-cn.ts -------------------------------------------------------------------------------- /src/i18n/locale/zh-tw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/i18n/locale/zh-tw.ts -------------------------------------------------------------------------------- /src/layout/Action/FullScreenControl.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/layout/Action/FullScreenControl.vue -------------------------------------------------------------------------------- /src/layout/Action/Github.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/layout/Action/Github.vue -------------------------------------------------------------------------------- /src/layout/Action/Search.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/layout/Action/Search.vue -------------------------------------------------------------------------------- /src/layout/Action/Setting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/layout/Action/Setting.vue -------------------------------------------------------------------------------- /src/layout/Action/SwitchLocale.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/layout/Action/SwitchLocale.vue -------------------------------------------------------------------------------- /src/layout/Action/SwitchStyle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/layout/Action/SwitchStyle.vue -------------------------------------------------------------------------------- /src/layout/Action/UserAvatar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/layout/Action/UserAvatar.vue -------------------------------------------------------------------------------- /src/layout/Action/action.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/layout/Action/action.scss -------------------------------------------------------------------------------- /src/layout/Action/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/layout/Action/index.vue -------------------------------------------------------------------------------- /src/layout/Breadcrumb.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/layout/Breadcrumb.vue -------------------------------------------------------------------------------- /src/layout/DefaultLayout/LeftSide.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/layout/DefaultLayout/LeftSide.vue -------------------------------------------------------------------------------- /src/layout/DefaultLayout/RightSide.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/layout/DefaultLayout/RightSide.vue -------------------------------------------------------------------------------- /src/layout/DefaultLayout/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/layout/DefaultLayout/index.vue -------------------------------------------------------------------------------- /src/layout/Footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/layout/Footer.vue -------------------------------------------------------------------------------- /src/layout/Header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/layout/Header.vue -------------------------------------------------------------------------------- /src/layout/Logo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/layout/Logo.vue -------------------------------------------------------------------------------- /src/layout/Main.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/layout/Main.vue -------------------------------------------------------------------------------- /src/layout/Menu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/layout/Menu.vue -------------------------------------------------------------------------------- /src/layout/NavTabs/LivelyNavTabs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/layout/NavTabs/LivelyNavTabs.vue -------------------------------------------------------------------------------- /src/layout/NavTabs/MellowNavTabs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/layout/NavTabs/MellowNavTabs.vue -------------------------------------------------------------------------------- /src/layout/NavTabs/SquareNavTabs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/layout/NavTabs/SquareNavTabs.vue -------------------------------------------------------------------------------- /src/layout/NavTabs/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/layout/NavTabs/index.vue -------------------------------------------------------------------------------- /src/layout/SettingDrawer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/layout/SettingDrawer.vue -------------------------------------------------------------------------------- /src/layout/SwitchRole.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/layout/SwitchRole.vue -------------------------------------------------------------------------------- /src/layout/ToggleMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/layout/ToggleMenu.vue -------------------------------------------------------------------------------- /src/layout/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/layout/index.vue -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/router/index.ts -------------------------------------------------------------------------------- /src/router/static.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/router/static.ts -------------------------------------------------------------------------------- /src/stores/system.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/stores/system.ts -------------------------------------------------------------------------------- /src/stores/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/stores/theme.ts -------------------------------------------------------------------------------- /src/styles/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/styles/app.scss -------------------------------------------------------------------------------- /src/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/styles/index.scss -------------------------------------------------------------------------------- /src/utils/binary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/utils/binary.ts -------------------------------------------------------------------------------- /src/utils/context-menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/utils/context-menu.ts -------------------------------------------------------------------------------- /src/utils/countup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/utils/countup.ts -------------------------------------------------------------------------------- /src/utils/dict.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/utils/dict.ts -------------------------------------------------------------------------------- /src/utils/echarts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/utils/echarts.ts -------------------------------------------------------------------------------- /src/utils/excel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/utils/excel.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/loading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/utils/loading.ts -------------------------------------------------------------------------------- /src/utils/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/utils/request.ts -------------------------------------------------------------------------------- /src/utils/string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/utils/string.ts -------------------------------------------------------------------------------- /src/utils/tree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/utils/tree.ts -------------------------------------------------------------------------------- /src/utils/validate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/utils/validate.ts -------------------------------------------------------------------------------- /src/views/NotFond.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/views/NotFond.vue -------------------------------------------------------------------------------- /src/views/demo/form.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/views/demo/form.vue -------------------------------------------------------------------------------- /src/views/demo/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/views/demo/index.vue -------------------------------------------------------------------------------- /src/views/demo/table.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/views/demo/table.vue -------------------------------------------------------------------------------- /src/views/generator/codeGenForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/views/generator/codeGenForm.vue -------------------------------------------------------------------------------- /src/views/generator/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/views/generator/constant.ts -------------------------------------------------------------------------------- /src/views/generator/designColumn.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/views/generator/designColumn.vue -------------------------------------------------------------------------------- /src/views/generator/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/views/generator/index.vue -------------------------------------------------------------------------------- /src/views/home/charts.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/views/home/charts.vue -------------------------------------------------------------------------------- /src/views/home/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/views/home/index.vue -------------------------------------------------------------------------------- /src/views/home/statistic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/views/home/statistic.vue -------------------------------------------------------------------------------- /src/views/home/todoList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/views/home/todoList.vue -------------------------------------------------------------------------------- /src/views/home/topPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/views/home/topPanel.vue -------------------------------------------------------------------------------- /src/views/iframe/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/views/iframe/index.vue -------------------------------------------------------------------------------- /src/views/login/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/views/login/index.vue -------------------------------------------------------------------------------- /src/views/monitor/online/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/views/monitor/online/index.vue -------------------------------------------------------------------------------- /src/views/personalCenter/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/views/personalCenter/index.vue -------------------------------------------------------------------------------- /src/views/system/dataPermission/PermissionRow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/views/system/dataPermission/PermissionRow.vue -------------------------------------------------------------------------------- /src/views/system/dataPermission/dataPermissionForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/views/system/dataPermission/dataPermissionForm.vue -------------------------------------------------------------------------------- /src/views/system/dataPermission/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/views/system/dataPermission/index.vue -------------------------------------------------------------------------------- /src/views/system/dict/dictForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/views/system/dict/dictForm.vue -------------------------------------------------------------------------------- /src/views/system/dict/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/views/system/dict/index.vue -------------------------------------------------------------------------------- /src/views/system/dict/selectDictDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/views/system/dict/selectDictDetail.vue -------------------------------------------------------------------------------- /src/views/system/dict/selectDictType.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/views/system/dict/selectDictType.vue -------------------------------------------------------------------------------- /src/views/system/file/constant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/views/system/file/constant.js -------------------------------------------------------------------------------- /src/views/system/file/fileForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/views/system/file/fileForm.vue -------------------------------------------------------------------------------- /src/views/system/file/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/views/system/file/index.vue -------------------------------------------------------------------------------- /src/views/system/file/selectSysFile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/views/system/file/selectSysFile.vue -------------------------------------------------------------------------------- /src/views/system/log/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/views/system/log/index.vue -------------------------------------------------------------------------------- /src/views/system/log/logDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/views/system/log/logDetail.vue -------------------------------------------------------------------------------- /src/views/system/menu/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/views/system/menu/constant.ts -------------------------------------------------------------------------------- /src/views/system/menu/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/views/system/menu/index.vue -------------------------------------------------------------------------------- /src/views/system/menu/menuForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/views/system/menu/menuForm.vue -------------------------------------------------------------------------------- /src/views/system/org/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/views/system/org/index.vue -------------------------------------------------------------------------------- /src/views/system/org/orgForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/views/system/org/orgForm.vue -------------------------------------------------------------------------------- /src/views/system/org/selectOrg.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/views/system/org/selectOrg.vue -------------------------------------------------------------------------------- /src/views/system/role/dataPermission.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/views/system/role/dataPermission.vue -------------------------------------------------------------------------------- /src/views/system/role/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/views/system/role/index.vue -------------------------------------------------------------------------------- /src/views/system/role/roleForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/views/system/role/roleForm.vue -------------------------------------------------------------------------------- /src/views/system/role/selectRole.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/views/system/role/selectRole.vue -------------------------------------------------------------------------------- /src/views/system/user/constant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/views/system/user/constant.js -------------------------------------------------------------------------------- /src/views/system/user/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/views/system/user/index.vue -------------------------------------------------------------------------------- /src/views/system/user/jobs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/views/system/user/jobs.vue -------------------------------------------------------------------------------- /src/views/system/user/resetPassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/views/system/user/resetPassword.vue -------------------------------------------------------------------------------- /src/views/system/user/selectUser.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/views/system/user/selectUser.vue -------------------------------------------------------------------------------- /src/views/system/user/userForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/views/system/user/userForm.vue -------------------------------------------------------------------------------- /src/views/system/user/userGroupForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/views/system/user/userGroupForm.vue -------------------------------------------------------------------------------- /src/views/system/user/userGroupIndex.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/views/system/user/userGroupIndex.vue -------------------------------------------------------------------------------- /src/views/system/user/userImport.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/views/system/user/userImport.vue -------------------------------------------------------------------------------- /src/views/system/user/userJob.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/src/views/system/user/userJob.vue -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /types/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/types/env.d.ts -------------------------------------------------------------------------------- /types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/types/global.d.ts -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alixhan/xh-admin-frontend/HEAD/vite.config.ts --------------------------------------------------------------------------------