├── README.md ├── backend ├── .env ├── Dockerfile ├── README.md ├── custom-go │ ├── authentication │ │ └── mutatingPostAuthentication.go │ ├── build.sh │ ├── custom-go │ ├── customize │ │ ├── statistics.go │ │ └── statistics.json │ ├── generated │ │ ├── fireboom.config.json │ │ ├── fireboom.operations.json │ │ ├── fireboom_hooks.go │ │ └── models.go │ ├── global │ │ ├── beforeOriginRequest.go │ │ └── onOriginResponse.go │ ├── go.mod │ ├── go.sum │ ├── helix.html │ ├── main.go │ ├── operation │ │ └── System │ │ │ └── Role │ │ │ ├── AddOne │ │ │ └── mutatingPostResolve.go │ │ │ ├── DeleteMany │ │ │ └── mutatingPostResolve.go │ │ │ └── DeleteOne │ │ │ └── mutatingPostResolve.go │ ├── pkg │ │ ├── base │ │ │ ├── client.go │ │ │ ├── operation.go │ │ │ ├── request.go │ │ │ ├── upload.go │ │ │ └── user.go │ │ ├── consts │ │ │ ├── env.go │ │ │ └── file.go │ │ ├── embeds │ │ │ ├── code.go │ │ │ └── introspect.json │ │ ├── plugins │ │ │ ├── auth_hooks.go │ │ │ ├── functions.go │ │ │ ├── global_hooks.go │ │ │ ├── graphqls.go │ │ │ ├── hook_request.go │ │ │ ├── internal_request.go │ │ │ ├── operation_hooks.go │ │ │ ├── proxy_hooks.go │ │ │ └── upload_hooks.go │ │ ├── types │ │ │ ├── configure.go │ │ │ └── server.go │ │ ├── utils │ │ │ ├── config.go │ │ │ ├── file.go │ │ │ ├── http.go │ │ │ ├── jwks.go │ │ │ ├── jwt.go │ │ │ ├── random.go │ │ │ └── strings.go │ │ └── wgpb │ │ │ └── wundernode_config.pb.go │ ├── proxy │ │ ├── bindmenu.go │ │ ├── bindmenu.json │ │ ├── login.go │ │ ├── login.json │ │ ├── menuTree.go │ │ ├── menuTree.json │ │ ├── perm.go │ │ ├── perm.json │ │ ├── unBindMenu.go │ │ └── unBindMenu.json │ ├── scripts │ │ ├── install.sh │ │ ├── run-build.sh │ │ ├── run-dev.sh │ │ └── run-prod.sh │ └── server │ │ ├── fireboom_server.go │ │ └── start.go ├── docker-compose.yml ├── exported │ ├── generated │ │ ├── fireboom.app.schema.graphql │ │ ├── fireboom.config.json │ │ ├── fireboom.operations.json │ │ └── swagger.json │ └── introspection │ │ ├── casdoor │ │ └── schema.graphql │ │ ├── main │ │ ├── dmmf.json │ │ ├── schema.graphql │ │ └── schema.prisma │ │ ├── statistics │ │ └── schema.graphql │ │ └── system │ │ └── schema.graphql ├── mysql │ └── init │ │ └── main.sql ├── oidc │ ├── api │ │ ├── auth.go │ │ ├── loginMiniProgram.go │ │ ├── loginPwd.go │ │ ├── loginSms.go │ │ ├── oidc.go │ │ ├── provider.go │ │ ├── user.go │ │ └── verification.go │ ├── build.sh │ ├── casdoor_service │ ├── conf │ │ └── config.yaml │ ├── docs │ │ ├── docs.go │ │ ├── swagger.json │ │ └── swagger.yaml │ ├── go.mod │ ├── main.go │ ├── object │ │ ├── adapter.go │ │ ├── check.go │ │ ├── jwks.go │ │ ├── jwt.go │ │ ├── oidc.go │ │ ├── provider.go │ │ ├── response.go │ │ ├── setting.go │ │ ├── sms.go │ │ ├── user.go │ │ └── verification.go │ ├── routers.go │ ├── token_jwt_key.key │ ├── token_jwt_key.pem │ └── util │ │ ├── file.go │ │ ├── md5.go │ │ ├── string.go │ │ ├── time.go │ │ └── validation.go ├── run.sh ├── store │ ├── authentication │ │ └── casdoor.json │ ├── config │ │ ├── global.operation.json │ │ └── global.setting.json │ ├── datasource │ │ ├── casdoor.json │ │ ├── main.json │ │ ├── statistics.json │ │ └── system.json │ ├── operation │ │ ├── Casdoor │ │ │ ├── GetRolesById.graphql │ │ │ ├── GetRolesById.json │ │ │ ├── GetSMSProvider.graphql │ │ │ ├── GetSMSProvider.json │ │ │ ├── Login.graphql │ │ │ ├── Login.json │ │ │ ├── RefreshToken.graphql │ │ │ ├── RefreshToken.json │ │ │ ├── SendCode.graphql │ │ │ ├── SendCode.json │ │ │ ├── UpdateSMSProvider.graphql │ │ │ └── UpdateSMSProvider.json │ │ ├── Post │ │ │ ├── CreateCategory.graphql │ │ │ ├── CreateCategory.json │ │ │ ├── CreateOne.graphql │ │ │ ├── CreateOne.json │ │ │ ├── DeleteCategory.graphql │ │ │ ├── DeleteCategory.json │ │ │ ├── DeleteMany.graphql │ │ │ ├── DeleteMany.json │ │ │ ├── DeleteOne.graphql │ │ │ ├── DeleteOne.json │ │ │ ├── GetCategory.graphql │ │ │ ├── GetCategory.json │ │ │ ├── GetLikeList.graphql │ │ │ ├── GetLikeList.json │ │ │ ├── GetList.graphql │ │ │ ├── GetList.json │ │ │ ├── GetOne.graphql │ │ │ ├── GetOne.json │ │ │ ├── GetPostByAuthor.graphql │ │ │ ├── GetPostByAuthor.json │ │ │ ├── GetPostByCate.graphql │ │ │ ├── GetPostByCate.json │ │ │ ├── UpdateCategory.graphql │ │ │ ├── UpdateCategory.json │ │ │ ├── UpdateOne.graphql │ │ │ └── UpdateOne.json │ │ ├── Statistics │ │ │ ├── MonthlySales.graphql │ │ │ ├── MonthlySales.json │ │ │ ├── QueryRaw.graphql │ │ │ ├── QueryRaw.json │ │ │ ├── SaleTypePercent.graphql │ │ │ ├── SaleTypePercent.json │ │ │ ├── SalesTop10.graphql │ │ │ ├── SalesTop10.json │ │ │ ├── VisitTrending.graphql │ │ │ └── VisitTrending.json │ │ ├── System │ │ │ ├── GetMenus.graphql │ │ │ ├── GetMenus.json │ │ │ ├── Jwt │ │ │ │ ├── AddOne.graphql │ │ │ │ ├── AddOne.json │ │ │ │ ├── CheckBanned.graphql │ │ │ │ ├── CheckBanned.json │ │ │ │ ├── DeleteOne.graphql │ │ │ │ ├── DeleteOne.json │ │ │ │ ├── GetMany.graphql │ │ │ │ ├── GetMany.json │ │ │ │ ├── UpdateOne.graphql │ │ │ │ └── UpdateOne.json │ │ │ ├── Log │ │ │ │ ├── ChangeOpen.graphql │ │ │ │ ├── ChangeOpen.json │ │ │ │ ├── CreateLog.graphql │ │ │ │ ├── CreateLog.json │ │ │ │ ├── DeleteLog.graphql │ │ │ │ ├── DeleteLog.json │ │ │ │ ├── DeleteOne.graphql │ │ │ │ ├── DeleteOne.json │ │ │ │ ├── GetAllLog.graphql │ │ │ │ ├── GetAllLog.json │ │ │ │ ├── GetIsOpen.graphql │ │ │ │ ├── GetIsOpen.json │ │ │ │ ├── GetLikeLog.graphql │ │ │ │ ├── GetLikeLog.json │ │ │ │ ├── GetLog.graphql │ │ │ │ └── GetLog.json │ │ │ ├── Menu │ │ │ │ ├── CreateOne.graphql │ │ │ │ ├── CreateOne.json │ │ │ │ ├── DeleteMany.graphql │ │ │ │ ├── DeleteMany.json │ │ │ │ ├── DeleteOne.graphql │ │ │ │ ├── DeleteOne.json │ │ │ │ ├── GetApiList.graphql │ │ │ │ ├── GetApiList.json │ │ │ │ ├── GetApisByMenus.graphql │ │ │ │ ├── GetApisByMenus.json │ │ │ │ ├── GetChildrenMenus.graphql │ │ │ │ ├── GetChildrenMenus.json │ │ │ │ ├── GetList.graphql │ │ │ │ ├── GetList.json │ │ │ │ ├── GetMany.graphql │ │ │ │ ├── GetMany.json │ │ │ │ ├── GetMenuByLevelOrPid.graphql │ │ │ │ ├── GetMenuByLevelOrPid.json │ │ │ │ ├── GetOne.graphql │ │ │ │ ├── GetOne.json │ │ │ │ ├── UpdateOne.graphql │ │ │ │ └── UpdateOne.json │ │ │ ├── Operation │ │ │ │ ├── GetMany.graphql │ │ │ │ └── GetMany.json │ │ │ ├── Perm │ │ │ │ ├── CreateMany.graphql │ │ │ │ ├── CreateMany.json │ │ │ │ ├── GetBindPerms.graphql │ │ │ │ ├── GetBindPerms.json │ │ │ │ ├── GetRolePerms.graphql │ │ │ │ └── GetRolePerms.json │ │ │ ├── Role │ │ │ │ ├── AddOne.graphql │ │ │ │ ├── AddOne.json │ │ │ │ ├── BindMenus.graphql │ │ │ │ ├── BindMenus.json │ │ │ │ ├── BindRoleApis.graphql │ │ │ │ ├── BindRoleApis.json │ │ │ │ ├── DeleteMany.graphql │ │ │ │ ├── DeleteMany.json │ │ │ │ ├── DeleteOne.graphql │ │ │ │ ├── DeleteOne.json │ │ │ │ ├── GetList.graphql │ │ │ │ ├── GetList.json │ │ │ │ ├── GetMany.graphql │ │ │ │ ├── GetMany.json │ │ │ │ ├── GetOne.graphql │ │ │ │ ├── GetOne.json │ │ │ │ ├── GetRoleById.graphql │ │ │ │ ├── GetRoleById.json │ │ │ │ ├── GetRoleMenuId.graphql │ │ │ │ ├── GetRoleMenuId.json │ │ │ │ ├── SyncDeleteRole.graphql │ │ │ │ ├── SyncDeleteRole.json │ │ │ │ ├── SyncRole.graphql │ │ │ │ ├── SyncRole.json │ │ │ │ ├── SystemUnbindMenu.json │ │ │ │ ├── UnBindMenus.graphql │ │ │ │ ├── UnBindMenus.json │ │ │ │ ├── UnBindRoleApis.json │ │ │ │ ├── UpdateOne.graphql │ │ │ │ └── UpdateOne.json │ │ │ ├── Sub │ │ │ │ ├── CreateSub.graphql │ │ │ │ ├── CreateSub.json │ │ │ │ ├── SSE.graphql │ │ │ │ └── SSE.json │ │ │ └── User │ │ │ │ ├── ConnectRole.graphql │ │ │ │ ├── ConnectRole.json │ │ │ │ ├── CountUsers.graphql │ │ │ │ ├── CountUsers.json │ │ │ │ ├── CreateOne.graphql │ │ │ │ ├── CreateOne.json │ │ │ │ ├── DeleteOne.graphql │ │ │ │ ├── DeleteOne.json │ │ │ │ ├── DisconnectRole.graphql │ │ │ │ ├── DisconnectRole.json │ │ │ │ ├── GetAllList.graphql │ │ │ │ ├── GetAllList.json │ │ │ │ ├── GetLikeUser.graphql │ │ │ │ ├── GetLikeUser.json │ │ │ │ ├── GetList.graphql │ │ │ │ ├── GetList.json │ │ │ │ ├── GetOne.graphql │ │ │ │ ├── GetOne.json │ │ │ │ ├── GetRoleUsers.graphql │ │ │ │ ├── GetRoleUsers.json │ │ │ │ ├── GetUserByUserId.graphql │ │ │ │ ├── GetUserByUserId.json │ │ │ │ ├── GetUserInfo.graphql │ │ │ │ ├── GetUserInfo.json │ │ │ │ ├── GetUserRole.graphql │ │ │ │ ├── GetUserRole.json │ │ │ │ ├── UpdateOne.graphql │ │ │ │ └── UpdateOne.json │ │ └── proxy │ │ │ ├── bindmenu.json │ │ │ ├── login.json │ │ │ ├── menuTree.json │ │ │ ├── perm.json │ │ │ └── unBindMenu.json │ ├── role │ │ ├── a.json │ │ ├── a231.json │ │ ├── aa.json │ │ ├── aaaa.json │ │ ├── abc.json │ │ ├── abc1.json │ │ ├── abc123.json │ │ ├── abc32.json │ │ ├── ac.json │ │ ├── admin.json │ │ ├── admin1.json │ │ ├── b1a23.json │ │ ├── dqdw.json │ │ ├── editer.json │ │ ├── eeee.json │ │ └── user.json │ ├── sdk │ │ └── golang-server.json │ └── storage │ │ └── tengxunyun.json ├── template │ └── golang-server │ │ ├── README.md │ │ ├── files │ │ ├── generated │ │ │ ├── fireboom_hooks.go.hbs │ │ │ └── models.go.hbs │ │ ├── go.mod │ │ ├── helix.html │ │ ├── main.go │ │ ├── pkg │ │ │ ├── base │ │ │ │ ├── client.go │ │ │ │ ├── operation.go │ │ │ │ ├── request.go │ │ │ │ ├── upload.go │ │ │ │ └── user.go │ │ │ ├── consts │ │ │ │ └── env.go │ │ │ ├── plugins │ │ │ │ ├── auth_hooks.go │ │ │ │ ├── global_hooks.go │ │ │ │ ├── graphqls.go │ │ │ │ ├── internal_request.go │ │ │ │ ├── operation_hooks.go │ │ │ │ ├── proxy_hooks.go │ │ │ │ └── upload_hooks.go │ │ │ ├── types │ │ │ │ ├── configure.go │ │ │ │ └── server.go │ │ │ ├── utils │ │ │ │ ├── config.go │ │ │ │ ├── file.go │ │ │ │ ├── http.go │ │ │ │ ├── random.go │ │ │ │ └── strings.go │ │ │ └── wgpb │ │ │ │ └── wundernode_config.pb.go │ │ ├── scripts │ │ │ ├── install.sh │ │ │ ├── run-build.sh │ │ │ ├── run-dev.sh │ │ │ └── run-prod.sh │ │ └── server │ │ │ ├── fireboom_server.go.hbs │ │ │ └── start.go │ │ └── manifest.json ├── update.sh └── upload │ └── oas │ ├── casdoor.json │ └── system.json ├── front ├── .dockerignore ├── .editorconfig ├── .env ├── .env.development ├── .env.production ├── .env.staging ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .husky │ ├── commit-msg │ ├── common.sh │ ├── lintstagedrc.js │ └── pre-commit ├── .markdownlint.json ├── .npmrc ├── .prettierrc.js ├── .stylelintignore ├── .vscode │ ├── extensions.json │ ├── settings.json │ ├── vue3.0.code-snippets │ ├── vue3.2.code-snippets │ └── vue3.3.code-snippets ├── Dockerfile ├── LICENSE ├── README.md ├── build │ ├── cdn.ts │ ├── compress.ts │ ├── index.ts │ ├── info.ts │ ├── optimize.ts │ └── plugins.ts ├── commitlint.config.js ├── index.html ├── locales │ ├── en.yaml │ └── zh-CN.yaml ├── nginx.conf.template ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── public │ ├── favicon.ico │ ├── icons │ │ ├── advert.svg │ │ ├── api.svg │ │ ├── brand.svg │ │ ├── bug.svg │ │ ├── cascader.svg │ │ ├── chart.svg │ │ ├── client.svg │ │ ├── close.svg │ │ ├── close_all.svg │ │ ├── close_left.svg │ │ ├── close_other.svg │ │ ├── close_right.svg │ │ ├── coupon.svg │ │ ├── dashboard.svg │ │ ├── dict.svg │ │ ├── dict_item.svg │ │ ├── document.svg │ │ ├── download.svg │ │ ├── drag.svg │ │ ├── edit.svg │ │ ├── exit-fullscreen.svg │ │ ├── eye-open.svg │ │ ├── eye.svg │ │ ├── fullscreen.svg │ │ ├── github.svg │ │ ├── goods-list.svg │ │ ├── goods.svg │ │ ├── guide.svg │ │ ├── homepage.svg │ │ ├── lab.svg │ │ ├── language.svg │ │ ├── link.svg │ │ ├── menu.svg │ │ ├── message.svg │ │ ├── money.svg │ │ ├── monitor.svg │ │ ├── multi_level.svg │ │ ├── nested.svg │ │ ├── number.svg │ │ ├── order.svg │ │ ├── password.svg │ │ ├── peoples.svg │ │ ├── perm.svg │ │ ├── publish.svg │ │ ├── rabbitmq.svg │ │ ├── rate.svg │ │ ├── redis.svg │ │ ├── refresh.svg │ │ ├── role.svg │ │ ├── security.svg │ │ ├── shopping.svg │ │ ├── size.svg │ │ ├── skill.svg │ │ ├── system.svg │ │ ├── theme.svg │ │ ├── tree.svg │ │ ├── user.svg │ │ ├── uv.svg │ │ ├── valid_code.svg │ │ └── verify_code.svg │ ├── logo.svg │ └── serverConfig.json ├── src │ ├── App.vue │ ├── api │ │ ├── claims.ts │ │ ├── client.ts │ │ ├── index.ts │ │ ├── models.ts │ │ ├── post.ts │ │ ├── routes.ts │ │ ├── system.ts │ │ └── user.ts │ ├── assets │ │ ├── iconfont │ │ │ ├── iconfont.css │ │ │ ├── iconfont.js │ │ │ ├── iconfont.json │ │ │ ├── iconfont.ttf │ │ │ ├── iconfont.woff │ │ │ └── iconfont.woff2 │ │ ├── login │ │ │ ├── Github.png │ │ │ ├── Logo.png │ │ │ ├── SDK.png │ │ │ ├── VSCODE.png │ │ │ ├── avatar.svg │ │ │ ├── bg.png │ │ │ ├── database.png │ │ │ └── illustration.svg │ │ ├── status │ │ │ ├── 403.svg │ │ │ ├── 404.svg │ │ │ └── 500.svg │ │ ├── svg │ │ │ ├── back_top.svg │ │ │ ├── dark.svg │ │ │ ├── day.svg │ │ │ ├── enter_outlined.svg │ │ │ ├── exit_screen.svg │ │ │ ├── full_screen.svg │ │ │ ├── globalization.svg │ │ │ └── keyboard_esc.svg │ │ └── user.jpg │ ├── components │ │ ├── IconSelect │ │ │ └── index.vue │ │ ├── ReAuth │ │ │ ├── index.ts │ │ │ └── src │ │ │ │ └── auth.tsx │ │ ├── ReCol │ │ │ └── index.ts │ │ ├── ReDialog │ │ │ ├── index.ts │ │ │ ├── index.vue │ │ │ └── type.ts │ │ ├── ReIcon │ │ │ ├── index.ts │ │ │ └── src │ │ │ │ ├── hooks.ts │ │ │ │ ├── iconfont.ts │ │ │ │ ├── iconifyIconOffline.ts │ │ │ │ ├── iconifyIconOnline.ts │ │ │ │ ├── offlineIcon.ts │ │ │ │ └── types.ts │ │ ├── RePureTableBar │ │ │ ├── index.ts │ │ │ └── src │ │ │ │ ├── bar.tsx │ │ │ │ └── svg │ │ │ │ ├── collapse.svg │ │ │ │ ├── drag.svg │ │ │ │ ├── expand.svg │ │ │ │ ├── refresh.svg │ │ │ │ └── settings.svg │ │ ├── SvgIcon │ │ │ └── index.vue │ │ └── WangEditor │ │ │ └── index.vue │ ├── config │ │ └── index.ts │ ├── directives │ │ ├── auth │ │ │ └── index.ts │ │ ├── copy │ │ │ └── index.ts │ │ ├── index.ts │ │ └── optimize │ │ │ └── index.ts │ ├── layout │ │ ├── components │ │ │ ├── appMain.vue │ │ │ ├── navbar.vue │ │ │ ├── notice │ │ │ │ ├── data.ts │ │ │ │ ├── index.vue │ │ │ │ ├── noticeItem.vue │ │ │ │ ├── noticeList.vue │ │ │ │ └── util.ts │ │ │ ├── panel │ │ │ │ └── index.vue │ │ │ ├── search │ │ │ │ ├── components │ │ │ │ │ ├── SearchFooter.vue │ │ │ │ │ ├── SearchModal.vue │ │ │ │ │ ├── SearchResult.vue │ │ │ │ │ └── index.ts │ │ │ │ └── index.vue │ │ │ ├── setting │ │ │ │ └── index.vue │ │ │ ├── sidebar │ │ │ │ ├── breadCrumb.vue │ │ │ │ ├── extraIcon.vue │ │ │ │ ├── horizontal.vue │ │ │ │ ├── leftCollapse.vue │ │ │ │ ├── logo.vue │ │ │ │ ├── mixNav.vue │ │ │ │ ├── sidebarItem.vue │ │ │ │ ├── topCollapse.vue │ │ │ │ └── vertical.vue │ │ │ └── tag │ │ │ │ ├── index.scss │ │ │ │ └── index.vue │ │ ├── frameView.vue │ │ ├── hooks │ │ │ ├── useBoolean.ts │ │ │ ├── useDataThemeChange.ts │ │ │ ├── useLayout.ts │ │ │ ├── useNav.ts │ │ │ ├── useTag.ts │ │ │ └── useTranslationLang.ts │ │ ├── index.vue │ │ ├── redirect.vue │ │ ├── theme │ │ │ └── index.ts │ │ └── types.ts │ ├── main.ts │ ├── mockProdServer.ts │ ├── plugins │ │ ├── echarts │ │ │ └── index.ts │ │ ├── element-plus │ │ │ └── index.ts │ │ └── i18n.ts │ ├── router │ │ ├── index.ts │ │ ├── modules │ │ │ ├── dashboard.ts │ │ │ ├── error.ts │ │ │ ├── home.ts │ │ │ ├── post.ts │ │ │ ├── remaining.ts │ │ │ ├── system.ts │ │ │ └── update.ts │ │ └── utils.ts │ ├── store │ │ ├── index.ts │ │ └── modules │ │ │ ├── app.ts │ │ │ ├── epTheme.ts │ │ │ ├── multiTags.ts │ │ │ ├── permission.ts │ │ │ ├── settings.ts │ │ │ ├── types.ts │ │ │ └── user.ts │ ├── style │ │ ├── dark.scss │ │ ├── element-plus.scss │ │ ├── index.scss │ │ ├── login.css │ │ ├── reset.scss │ │ ├── sidebar.scss │ │ ├── tailwind.css │ │ └── transition.scss │ ├── utils │ │ ├── auth.ts │ │ ├── date.ts │ │ ├── globalPolyfills.ts │ │ ├── http │ │ │ ├── index.ts │ │ │ └── types.d.ts │ │ ├── index.ts │ │ ├── message.ts │ │ ├── mitt.ts │ │ ├── print.ts │ │ ├── progress │ │ │ └── index.ts │ │ ├── propTypes.ts │ │ ├── responsive.ts │ │ ├── sso.ts │ │ └── tree.ts │ └── views │ │ ├── dashboard │ │ ├── components │ │ │ ├── MonthlySales.vue │ │ │ ├── SaleTypePercent.vue │ │ │ ├── SalesTop10.vue │ │ │ └── VisitTrending.vue │ │ └── index.vue │ │ ├── error │ │ ├── 403.vue │ │ ├── 404.vue │ │ └── 500.vue │ │ ├── login │ │ ├── index.vue │ │ ├── phone.vue │ │ └── utils │ │ │ ├── cos.ts │ │ │ ├── motion.ts │ │ │ ├── rule.ts │ │ │ ├── static.ts │ │ │ └── verifyCode.ts │ │ ├── post │ │ ├── index.vue │ │ └── updatePost │ │ │ └── index.vue │ │ ├── system │ │ ├── log │ │ │ └── index.vue │ │ ├── menu │ │ │ └── index.vue │ │ ├── permission │ │ │ └── index.vue │ │ ├── role │ │ │ ├── api.bind.vue │ │ │ ├── index.vue │ │ │ └── menu.bind.vue │ │ ├── types.ts │ │ └── user │ │ │ ├── index.vue │ │ │ ├── role.bind.vue │ │ │ ├── updateUser │ │ │ └── index.vue │ │ │ └── utils │ │ │ └── country.ts │ │ └── welcome │ │ └── index.vue ├── stylelint.config.js ├── tailwind.config.js ├── tsconfig.json ├── types │ ├── global-components.d.ts │ ├── global.d.ts │ ├── index.d.ts │ ├── router.d.ts │ ├── shims-tsx.d.ts │ └── shims-vue.d.ts └── vite.config.ts └── start.sh /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/README.md -------------------------------------------------------------------------------- /backend/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/.env -------------------------------------------------------------------------------- /backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/Dockerfile -------------------------------------------------------------------------------- /backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/README.md -------------------------------------------------------------------------------- /backend/custom-go/authentication/mutatingPostAuthentication.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/authentication/mutatingPostAuthentication.go -------------------------------------------------------------------------------- /backend/custom-go/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/build.sh -------------------------------------------------------------------------------- /backend/custom-go/custom-go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/custom-go -------------------------------------------------------------------------------- /backend/custom-go/customize/statistics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/customize/statistics.go -------------------------------------------------------------------------------- /backend/custom-go/customize/statistics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/customize/statistics.json -------------------------------------------------------------------------------- /backend/custom-go/generated/fireboom.config.json: -------------------------------------------------------------------------------- 1 | ../../exported/generated/fireboom.config.json -------------------------------------------------------------------------------- /backend/custom-go/generated/fireboom.operations.json: -------------------------------------------------------------------------------- 1 | ../../exported/generated/fireboom.operations.json -------------------------------------------------------------------------------- /backend/custom-go/generated/fireboom_hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/generated/fireboom_hooks.go -------------------------------------------------------------------------------- /backend/custom-go/generated/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/generated/models.go -------------------------------------------------------------------------------- /backend/custom-go/global/beforeOriginRequest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/global/beforeOriginRequest.go -------------------------------------------------------------------------------- /backend/custom-go/global/onOriginResponse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/global/onOriginResponse.go -------------------------------------------------------------------------------- /backend/custom-go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/go.mod -------------------------------------------------------------------------------- /backend/custom-go/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/go.sum -------------------------------------------------------------------------------- /backend/custom-go/helix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/helix.html -------------------------------------------------------------------------------- /backend/custom-go/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/main.go -------------------------------------------------------------------------------- /backend/custom-go/operation/System/Role/AddOne/mutatingPostResolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/operation/System/Role/AddOne/mutatingPostResolve.go -------------------------------------------------------------------------------- /backend/custom-go/operation/System/Role/DeleteMany/mutatingPostResolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/operation/System/Role/DeleteMany/mutatingPostResolve.go -------------------------------------------------------------------------------- /backend/custom-go/operation/System/Role/DeleteOne/mutatingPostResolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/operation/System/Role/DeleteOne/mutatingPostResolve.go -------------------------------------------------------------------------------- /backend/custom-go/pkg/base/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/pkg/base/client.go -------------------------------------------------------------------------------- /backend/custom-go/pkg/base/operation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/pkg/base/operation.go -------------------------------------------------------------------------------- /backend/custom-go/pkg/base/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/pkg/base/request.go -------------------------------------------------------------------------------- /backend/custom-go/pkg/base/upload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/pkg/base/upload.go -------------------------------------------------------------------------------- /backend/custom-go/pkg/base/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/pkg/base/user.go -------------------------------------------------------------------------------- /backend/custom-go/pkg/consts/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/pkg/consts/env.go -------------------------------------------------------------------------------- /backend/custom-go/pkg/consts/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/pkg/consts/file.go -------------------------------------------------------------------------------- /backend/custom-go/pkg/embeds/code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/pkg/embeds/code.go -------------------------------------------------------------------------------- /backend/custom-go/pkg/embeds/introspect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/pkg/embeds/introspect.json -------------------------------------------------------------------------------- /backend/custom-go/pkg/plugins/auth_hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/pkg/plugins/auth_hooks.go -------------------------------------------------------------------------------- /backend/custom-go/pkg/plugins/functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/pkg/plugins/functions.go -------------------------------------------------------------------------------- /backend/custom-go/pkg/plugins/global_hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/pkg/plugins/global_hooks.go -------------------------------------------------------------------------------- /backend/custom-go/pkg/plugins/graphqls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/pkg/plugins/graphqls.go -------------------------------------------------------------------------------- /backend/custom-go/pkg/plugins/hook_request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/pkg/plugins/hook_request.go -------------------------------------------------------------------------------- /backend/custom-go/pkg/plugins/internal_request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/pkg/plugins/internal_request.go -------------------------------------------------------------------------------- /backend/custom-go/pkg/plugins/operation_hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/pkg/plugins/operation_hooks.go -------------------------------------------------------------------------------- /backend/custom-go/pkg/plugins/proxy_hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/pkg/plugins/proxy_hooks.go -------------------------------------------------------------------------------- /backend/custom-go/pkg/plugins/upload_hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/pkg/plugins/upload_hooks.go -------------------------------------------------------------------------------- /backend/custom-go/pkg/types/configure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/pkg/types/configure.go -------------------------------------------------------------------------------- /backend/custom-go/pkg/types/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/pkg/types/server.go -------------------------------------------------------------------------------- /backend/custom-go/pkg/utils/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/pkg/utils/config.go -------------------------------------------------------------------------------- /backend/custom-go/pkg/utils/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/pkg/utils/file.go -------------------------------------------------------------------------------- /backend/custom-go/pkg/utils/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/pkg/utils/http.go -------------------------------------------------------------------------------- /backend/custom-go/pkg/utils/jwks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/pkg/utils/jwks.go -------------------------------------------------------------------------------- /backend/custom-go/pkg/utils/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/pkg/utils/jwt.go -------------------------------------------------------------------------------- /backend/custom-go/pkg/utils/random.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/pkg/utils/random.go -------------------------------------------------------------------------------- /backend/custom-go/pkg/utils/strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/pkg/utils/strings.go -------------------------------------------------------------------------------- /backend/custom-go/pkg/wgpb/wundernode_config.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/pkg/wgpb/wundernode_config.pb.go -------------------------------------------------------------------------------- /backend/custom-go/proxy/bindmenu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/proxy/bindmenu.go -------------------------------------------------------------------------------- /backend/custom-go/proxy/bindmenu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/proxy/bindmenu.json -------------------------------------------------------------------------------- /backend/custom-go/proxy/login.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/proxy/login.go -------------------------------------------------------------------------------- /backend/custom-go/proxy/login.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/proxy/login.json -------------------------------------------------------------------------------- /backend/custom-go/proxy/menuTree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/proxy/menuTree.go -------------------------------------------------------------------------------- /backend/custom-go/proxy/menuTree.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/proxy/menuTree.json -------------------------------------------------------------------------------- /backend/custom-go/proxy/perm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/proxy/perm.go -------------------------------------------------------------------------------- /backend/custom-go/proxy/perm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/proxy/perm.json -------------------------------------------------------------------------------- /backend/custom-go/proxy/unBindMenu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/proxy/unBindMenu.go -------------------------------------------------------------------------------- /backend/custom-go/proxy/unBindMenu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/proxy/unBindMenu.json -------------------------------------------------------------------------------- /backend/custom-go/scripts/install.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | cd ../ && go mod tidy -------------------------------------------------------------------------------- /backend/custom-go/scripts/run-build.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | cd ../ && go build -------------------------------------------------------------------------------- /backend/custom-go/scripts/run-dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/scripts/run-dev.sh -------------------------------------------------------------------------------- /backend/custom-go/scripts/run-prod.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | ./run-build && go run ./custom-go -------------------------------------------------------------------------------- /backend/custom-go/server/fireboom_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/server/fireboom_server.go -------------------------------------------------------------------------------- /backend/custom-go/server/start.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/custom-go/server/start.go -------------------------------------------------------------------------------- /backend/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/docker-compose.yml -------------------------------------------------------------------------------- /backend/exported/generated/fireboom.app.schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/exported/generated/fireboom.app.schema.graphql -------------------------------------------------------------------------------- /backend/exported/generated/fireboom.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/exported/generated/fireboom.config.json -------------------------------------------------------------------------------- /backend/exported/generated/fireboom.operations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/exported/generated/fireboom.operations.json -------------------------------------------------------------------------------- /backend/exported/generated/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/exported/generated/swagger.json -------------------------------------------------------------------------------- /backend/exported/introspection/casdoor/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/exported/introspection/casdoor/schema.graphql -------------------------------------------------------------------------------- /backend/exported/introspection/main/dmmf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/exported/introspection/main/dmmf.json -------------------------------------------------------------------------------- /backend/exported/introspection/main/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/exported/introspection/main/schema.graphql -------------------------------------------------------------------------------- /backend/exported/introspection/main/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/exported/introspection/main/schema.prisma -------------------------------------------------------------------------------- /backend/exported/introspection/statistics/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/exported/introspection/statistics/schema.graphql -------------------------------------------------------------------------------- /backend/exported/introspection/system/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/exported/introspection/system/schema.graphql -------------------------------------------------------------------------------- /backend/mysql/init/main.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/mysql/init/main.sql -------------------------------------------------------------------------------- /backend/oidc/api/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/oidc/api/auth.go -------------------------------------------------------------------------------- /backend/oidc/api/loginMiniProgram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/oidc/api/loginMiniProgram.go -------------------------------------------------------------------------------- /backend/oidc/api/loginPwd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/oidc/api/loginPwd.go -------------------------------------------------------------------------------- /backend/oidc/api/loginSms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/oidc/api/loginSms.go -------------------------------------------------------------------------------- /backend/oidc/api/oidc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/oidc/api/oidc.go -------------------------------------------------------------------------------- /backend/oidc/api/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/oidc/api/provider.go -------------------------------------------------------------------------------- /backend/oidc/api/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/oidc/api/user.go -------------------------------------------------------------------------------- /backend/oidc/api/verification.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/oidc/api/verification.go -------------------------------------------------------------------------------- /backend/oidc/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/oidc/build.sh -------------------------------------------------------------------------------- /backend/oidc/casdoor_service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/oidc/casdoor_service -------------------------------------------------------------------------------- /backend/oidc/conf/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/oidc/conf/config.yaml -------------------------------------------------------------------------------- /backend/oidc/docs/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/oidc/docs/docs.go -------------------------------------------------------------------------------- /backend/oidc/docs/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/oidc/docs/swagger.json -------------------------------------------------------------------------------- /backend/oidc/docs/swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/oidc/docs/swagger.yaml -------------------------------------------------------------------------------- /backend/oidc/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/oidc/go.mod -------------------------------------------------------------------------------- /backend/oidc/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/oidc/main.go -------------------------------------------------------------------------------- /backend/oidc/object/adapter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/oidc/object/adapter.go -------------------------------------------------------------------------------- /backend/oidc/object/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/oidc/object/check.go -------------------------------------------------------------------------------- /backend/oidc/object/jwks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/oidc/object/jwks.go -------------------------------------------------------------------------------- /backend/oidc/object/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/oidc/object/jwt.go -------------------------------------------------------------------------------- /backend/oidc/object/oidc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/oidc/object/oidc.go -------------------------------------------------------------------------------- /backend/oidc/object/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/oidc/object/provider.go -------------------------------------------------------------------------------- /backend/oidc/object/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/oidc/object/response.go -------------------------------------------------------------------------------- /backend/oidc/object/setting.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/oidc/object/setting.go -------------------------------------------------------------------------------- /backend/oidc/object/sms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/oidc/object/sms.go -------------------------------------------------------------------------------- /backend/oidc/object/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/oidc/object/user.go -------------------------------------------------------------------------------- /backend/oidc/object/verification.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/oidc/object/verification.go -------------------------------------------------------------------------------- /backend/oidc/routers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/oidc/routers.go -------------------------------------------------------------------------------- /backend/oidc/token_jwt_key.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/oidc/token_jwt_key.key -------------------------------------------------------------------------------- /backend/oidc/token_jwt_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/oidc/token_jwt_key.pem -------------------------------------------------------------------------------- /backend/oidc/util/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/oidc/util/file.go -------------------------------------------------------------------------------- /backend/oidc/util/md5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/oidc/util/md5.go -------------------------------------------------------------------------------- /backend/oidc/util/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/oidc/util/string.go -------------------------------------------------------------------------------- /backend/oidc/util/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/oidc/util/time.go -------------------------------------------------------------------------------- /backend/oidc/util/validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/oidc/util/validation.go -------------------------------------------------------------------------------- /backend/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/run.sh -------------------------------------------------------------------------------- /backend/store/authentication/casdoor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/authentication/casdoor.json -------------------------------------------------------------------------------- /backend/store/config/global.operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/config/global.operation.json -------------------------------------------------------------------------------- /backend/store/config/global.setting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/config/global.setting.json -------------------------------------------------------------------------------- /backend/store/datasource/casdoor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/datasource/casdoor.json -------------------------------------------------------------------------------- /backend/store/datasource/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/datasource/main.json -------------------------------------------------------------------------------- /backend/store/datasource/statistics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/datasource/statistics.json -------------------------------------------------------------------------------- /backend/store/datasource/system.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/datasource/system.json -------------------------------------------------------------------------------- /backend/store/operation/Casdoor/GetRolesById.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/Casdoor/GetRolesById.graphql -------------------------------------------------------------------------------- /backend/store/operation/Casdoor/GetRolesById.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/Casdoor/GetRolesById.json -------------------------------------------------------------------------------- /backend/store/operation/Casdoor/GetSMSProvider.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/Casdoor/GetSMSProvider.graphql -------------------------------------------------------------------------------- /backend/store/operation/Casdoor/GetSMSProvider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/Casdoor/GetSMSProvider.json -------------------------------------------------------------------------------- /backend/store/operation/Casdoor/Login.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/Casdoor/Login.graphql -------------------------------------------------------------------------------- /backend/store/operation/Casdoor/Login.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/Casdoor/Login.json -------------------------------------------------------------------------------- /backend/store/operation/Casdoor/RefreshToken.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/Casdoor/RefreshToken.graphql -------------------------------------------------------------------------------- /backend/store/operation/Casdoor/RefreshToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/Casdoor/RefreshToken.json -------------------------------------------------------------------------------- /backend/store/operation/Casdoor/SendCode.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/Casdoor/SendCode.graphql -------------------------------------------------------------------------------- /backend/store/operation/Casdoor/SendCode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/Casdoor/SendCode.json -------------------------------------------------------------------------------- /backend/store/operation/Casdoor/UpdateSMSProvider.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/Casdoor/UpdateSMSProvider.graphql -------------------------------------------------------------------------------- /backend/store/operation/Casdoor/UpdateSMSProvider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/Casdoor/UpdateSMSProvider.json -------------------------------------------------------------------------------- /backend/store/operation/Post/CreateCategory.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/Post/CreateCategory.graphql -------------------------------------------------------------------------------- /backend/store/operation/Post/CreateCategory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/Post/CreateCategory.json -------------------------------------------------------------------------------- /backend/store/operation/Post/CreateOne.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/Post/CreateOne.graphql -------------------------------------------------------------------------------- /backend/store/operation/Post/CreateOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/Post/CreateOne.json -------------------------------------------------------------------------------- /backend/store/operation/Post/DeleteCategory.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/Post/DeleteCategory.graphql -------------------------------------------------------------------------------- /backend/store/operation/Post/DeleteCategory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/Post/DeleteCategory.json -------------------------------------------------------------------------------- /backend/store/operation/Post/DeleteMany.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/Post/DeleteMany.graphql -------------------------------------------------------------------------------- /backend/store/operation/Post/DeleteMany.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/Post/DeleteMany.json -------------------------------------------------------------------------------- /backend/store/operation/Post/DeleteOne.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/Post/DeleteOne.graphql -------------------------------------------------------------------------------- /backend/store/operation/Post/DeleteOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/Post/DeleteOne.json -------------------------------------------------------------------------------- /backend/store/operation/Post/GetCategory.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/Post/GetCategory.graphql -------------------------------------------------------------------------------- /backend/store/operation/Post/GetCategory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/Post/GetCategory.json -------------------------------------------------------------------------------- /backend/store/operation/Post/GetLikeList.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/Post/GetLikeList.graphql -------------------------------------------------------------------------------- /backend/store/operation/Post/GetLikeList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/Post/GetLikeList.json -------------------------------------------------------------------------------- /backend/store/operation/Post/GetList.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/Post/GetList.graphql -------------------------------------------------------------------------------- /backend/store/operation/Post/GetList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/Post/GetList.json -------------------------------------------------------------------------------- /backend/store/operation/Post/GetOne.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/Post/GetOne.graphql -------------------------------------------------------------------------------- /backend/store/operation/Post/GetOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/Post/GetOne.json -------------------------------------------------------------------------------- /backend/store/operation/Post/GetPostByAuthor.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/Post/GetPostByAuthor.graphql -------------------------------------------------------------------------------- /backend/store/operation/Post/GetPostByAuthor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/Post/GetPostByAuthor.json -------------------------------------------------------------------------------- /backend/store/operation/Post/GetPostByCate.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/Post/GetPostByCate.graphql -------------------------------------------------------------------------------- /backend/store/operation/Post/GetPostByCate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/Post/GetPostByCate.json -------------------------------------------------------------------------------- /backend/store/operation/Post/UpdateCategory.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/Post/UpdateCategory.graphql -------------------------------------------------------------------------------- /backend/store/operation/Post/UpdateCategory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/Post/UpdateCategory.json -------------------------------------------------------------------------------- /backend/store/operation/Post/UpdateOne.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/Post/UpdateOne.graphql -------------------------------------------------------------------------------- /backend/store/operation/Post/UpdateOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/Post/UpdateOne.json -------------------------------------------------------------------------------- /backend/store/operation/Statistics/MonthlySales.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/Statistics/MonthlySales.graphql -------------------------------------------------------------------------------- /backend/store/operation/Statistics/MonthlySales.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/Statistics/MonthlySales.json -------------------------------------------------------------------------------- /backend/store/operation/Statistics/QueryRaw.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/Statistics/QueryRaw.graphql -------------------------------------------------------------------------------- /backend/store/operation/Statistics/QueryRaw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/Statistics/QueryRaw.json -------------------------------------------------------------------------------- /backend/store/operation/Statistics/SaleTypePercent.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/Statistics/SaleTypePercent.graphql -------------------------------------------------------------------------------- /backend/store/operation/Statistics/SaleTypePercent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/Statistics/SaleTypePercent.json -------------------------------------------------------------------------------- /backend/store/operation/Statistics/SalesTop10.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/Statistics/SalesTop10.graphql -------------------------------------------------------------------------------- /backend/store/operation/Statistics/SalesTop10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/Statistics/SalesTop10.json -------------------------------------------------------------------------------- /backend/store/operation/Statistics/VisitTrending.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/Statistics/VisitTrending.graphql -------------------------------------------------------------------------------- /backend/store/operation/Statistics/VisitTrending.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/Statistics/VisitTrending.json -------------------------------------------------------------------------------- /backend/store/operation/System/GetMenus.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/GetMenus.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/GetMenus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/GetMenus.json -------------------------------------------------------------------------------- /backend/store/operation/System/Jwt/AddOne.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Jwt/AddOne.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/Jwt/AddOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Jwt/AddOne.json -------------------------------------------------------------------------------- /backend/store/operation/System/Jwt/CheckBanned.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Jwt/CheckBanned.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/Jwt/CheckBanned.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Jwt/CheckBanned.json -------------------------------------------------------------------------------- /backend/store/operation/System/Jwt/DeleteOne.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Jwt/DeleteOne.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/Jwt/DeleteOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Jwt/DeleteOne.json -------------------------------------------------------------------------------- /backend/store/operation/System/Jwt/GetMany.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Jwt/GetMany.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/Jwt/GetMany.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Jwt/GetMany.json -------------------------------------------------------------------------------- /backend/store/operation/System/Jwt/UpdateOne.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Jwt/UpdateOne.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/Jwt/UpdateOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Jwt/UpdateOne.json -------------------------------------------------------------------------------- /backend/store/operation/System/Log/ChangeOpen.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Log/ChangeOpen.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/Log/ChangeOpen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Log/ChangeOpen.json -------------------------------------------------------------------------------- /backend/store/operation/System/Log/CreateLog.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Log/CreateLog.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/Log/CreateLog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Log/CreateLog.json -------------------------------------------------------------------------------- /backend/store/operation/System/Log/DeleteLog.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Log/DeleteLog.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/Log/DeleteLog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Log/DeleteLog.json -------------------------------------------------------------------------------- /backend/store/operation/System/Log/DeleteOne.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Log/DeleteOne.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/Log/DeleteOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Log/DeleteOne.json -------------------------------------------------------------------------------- /backend/store/operation/System/Log/GetAllLog.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Log/GetAllLog.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/Log/GetAllLog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Log/GetAllLog.json -------------------------------------------------------------------------------- /backend/store/operation/System/Log/GetIsOpen.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Log/GetIsOpen.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/Log/GetIsOpen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Log/GetIsOpen.json -------------------------------------------------------------------------------- /backend/store/operation/System/Log/GetLikeLog.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Log/GetLikeLog.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/Log/GetLikeLog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Log/GetLikeLog.json -------------------------------------------------------------------------------- /backend/store/operation/System/Log/GetLog.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Log/GetLog.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/Log/GetLog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Log/GetLog.json -------------------------------------------------------------------------------- /backend/store/operation/System/Menu/CreateOne.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Menu/CreateOne.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/Menu/CreateOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Menu/CreateOne.json -------------------------------------------------------------------------------- /backend/store/operation/System/Menu/DeleteMany.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Menu/DeleteMany.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/Menu/DeleteMany.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Menu/DeleteMany.json -------------------------------------------------------------------------------- /backend/store/operation/System/Menu/DeleteOne.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Menu/DeleteOne.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/Menu/DeleteOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Menu/DeleteOne.json -------------------------------------------------------------------------------- /backend/store/operation/System/Menu/GetApiList.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Menu/GetApiList.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/Menu/GetApiList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Menu/GetApiList.json -------------------------------------------------------------------------------- /backend/store/operation/System/Menu/GetApisByMenus.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Menu/GetApisByMenus.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/Menu/GetApisByMenus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Menu/GetApisByMenus.json -------------------------------------------------------------------------------- /backend/store/operation/System/Menu/GetChildrenMenus.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Menu/GetChildrenMenus.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/Menu/GetChildrenMenus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Menu/GetChildrenMenus.json -------------------------------------------------------------------------------- /backend/store/operation/System/Menu/GetList.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Menu/GetList.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/Menu/GetList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Menu/GetList.json -------------------------------------------------------------------------------- /backend/store/operation/System/Menu/GetMany.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Menu/GetMany.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/Menu/GetMany.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Menu/GetMany.json -------------------------------------------------------------------------------- /backend/store/operation/System/Menu/GetMenuByLevelOrPid.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Menu/GetMenuByLevelOrPid.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/Menu/GetMenuByLevelOrPid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Menu/GetMenuByLevelOrPid.json -------------------------------------------------------------------------------- /backend/store/operation/System/Menu/GetOne.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Menu/GetOne.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/Menu/GetOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Menu/GetOne.json -------------------------------------------------------------------------------- /backend/store/operation/System/Menu/UpdateOne.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Menu/UpdateOne.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/Menu/UpdateOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Menu/UpdateOne.json -------------------------------------------------------------------------------- /backend/store/operation/System/Operation/GetMany.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Operation/GetMany.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/Operation/GetMany.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Operation/GetMany.json -------------------------------------------------------------------------------- /backend/store/operation/System/Perm/CreateMany.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Perm/CreateMany.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/Perm/CreateMany.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Perm/CreateMany.json -------------------------------------------------------------------------------- /backend/store/operation/System/Perm/GetBindPerms.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Perm/GetBindPerms.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/Perm/GetBindPerms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Perm/GetBindPerms.json -------------------------------------------------------------------------------- /backend/store/operation/System/Perm/GetRolePerms.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Perm/GetRolePerms.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/Perm/GetRolePerms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Perm/GetRolePerms.json -------------------------------------------------------------------------------- /backend/store/operation/System/Role/AddOne.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Role/AddOne.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/Role/AddOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Role/AddOne.json -------------------------------------------------------------------------------- /backend/store/operation/System/Role/BindMenus.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Role/BindMenus.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/Role/BindMenus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Role/BindMenus.json -------------------------------------------------------------------------------- /backend/store/operation/System/Role/BindRoleApis.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Role/BindRoleApis.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/Role/BindRoleApis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Role/BindRoleApis.json -------------------------------------------------------------------------------- /backend/store/operation/System/Role/DeleteMany.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Role/DeleteMany.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/Role/DeleteMany.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Role/DeleteMany.json -------------------------------------------------------------------------------- /backend/store/operation/System/Role/DeleteOne.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Role/DeleteOne.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/Role/DeleteOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Role/DeleteOne.json -------------------------------------------------------------------------------- /backend/store/operation/System/Role/GetList.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Role/GetList.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/Role/GetList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Role/GetList.json -------------------------------------------------------------------------------- /backend/store/operation/System/Role/GetMany.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Role/GetMany.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/Role/GetMany.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Role/GetMany.json -------------------------------------------------------------------------------- /backend/store/operation/System/Role/GetOne.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Role/GetOne.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/Role/GetOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Role/GetOne.json -------------------------------------------------------------------------------- /backend/store/operation/System/Role/GetRoleById.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Role/GetRoleById.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/Role/GetRoleById.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Role/GetRoleById.json -------------------------------------------------------------------------------- /backend/store/operation/System/Role/GetRoleMenuId.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Role/GetRoleMenuId.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/Role/GetRoleMenuId.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Role/GetRoleMenuId.json -------------------------------------------------------------------------------- /backend/store/operation/System/Role/SyncDeleteRole.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Role/SyncDeleteRole.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/Role/SyncDeleteRole.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Role/SyncDeleteRole.json -------------------------------------------------------------------------------- /backend/store/operation/System/Role/SyncRole.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Role/SyncRole.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/Role/SyncRole.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Role/SyncRole.json -------------------------------------------------------------------------------- /backend/store/operation/System/Role/SystemUnbindMenu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Role/SystemUnbindMenu.json -------------------------------------------------------------------------------- /backend/store/operation/System/Role/UnBindMenus.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Role/UnBindMenus.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/Role/UnBindMenus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Role/UnBindMenus.json -------------------------------------------------------------------------------- /backend/store/operation/System/Role/UnBindRoleApis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Role/UnBindRoleApis.json -------------------------------------------------------------------------------- /backend/store/operation/System/Role/UpdateOne.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Role/UpdateOne.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/Role/UpdateOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Role/UpdateOne.json -------------------------------------------------------------------------------- /backend/store/operation/System/Sub/CreateSub.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Sub/CreateSub.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/Sub/CreateSub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Sub/CreateSub.json -------------------------------------------------------------------------------- /backend/store/operation/System/Sub/SSE.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Sub/SSE.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/Sub/SSE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/Sub/SSE.json -------------------------------------------------------------------------------- /backend/store/operation/System/User/ConnectRole.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/User/ConnectRole.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/User/ConnectRole.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/User/ConnectRole.json -------------------------------------------------------------------------------- /backend/store/operation/System/User/CountUsers.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/User/CountUsers.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/User/CountUsers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/User/CountUsers.json -------------------------------------------------------------------------------- /backend/store/operation/System/User/CreateOne.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/User/CreateOne.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/User/CreateOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/User/CreateOne.json -------------------------------------------------------------------------------- /backend/store/operation/System/User/DeleteOne.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/User/DeleteOne.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/User/DeleteOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/User/DeleteOne.json -------------------------------------------------------------------------------- /backend/store/operation/System/User/DisconnectRole.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/User/DisconnectRole.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/User/DisconnectRole.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/User/DisconnectRole.json -------------------------------------------------------------------------------- /backend/store/operation/System/User/GetAllList.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/User/GetAllList.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/User/GetAllList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/User/GetAllList.json -------------------------------------------------------------------------------- /backend/store/operation/System/User/GetLikeUser.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/User/GetLikeUser.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/User/GetLikeUser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/User/GetLikeUser.json -------------------------------------------------------------------------------- /backend/store/operation/System/User/GetList.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/User/GetList.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/User/GetList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/User/GetList.json -------------------------------------------------------------------------------- /backend/store/operation/System/User/GetOne.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/User/GetOne.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/User/GetOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/User/GetOne.json -------------------------------------------------------------------------------- /backend/store/operation/System/User/GetRoleUsers.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/User/GetRoleUsers.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/User/GetRoleUsers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/User/GetRoleUsers.json -------------------------------------------------------------------------------- /backend/store/operation/System/User/GetUserByUserId.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/User/GetUserByUserId.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/User/GetUserByUserId.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/User/GetUserByUserId.json -------------------------------------------------------------------------------- /backend/store/operation/System/User/GetUserInfo.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/User/GetUserInfo.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/User/GetUserInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/User/GetUserInfo.json -------------------------------------------------------------------------------- /backend/store/operation/System/User/GetUserRole.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/User/GetUserRole.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/User/GetUserRole.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/User/GetUserRole.json -------------------------------------------------------------------------------- /backend/store/operation/System/User/UpdateOne.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/User/UpdateOne.graphql -------------------------------------------------------------------------------- /backend/store/operation/System/User/UpdateOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/System/User/UpdateOne.json -------------------------------------------------------------------------------- /backend/store/operation/proxy/bindmenu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/proxy/bindmenu.json -------------------------------------------------------------------------------- /backend/store/operation/proxy/login.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/proxy/login.json -------------------------------------------------------------------------------- /backend/store/operation/proxy/menuTree.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/proxy/menuTree.json -------------------------------------------------------------------------------- /backend/store/operation/proxy/perm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/proxy/perm.json -------------------------------------------------------------------------------- /backend/store/operation/proxy/unBindMenu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/operation/proxy/unBindMenu.json -------------------------------------------------------------------------------- /backend/store/role/a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/role/a.json -------------------------------------------------------------------------------- /backend/store/role/a231.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/role/a231.json -------------------------------------------------------------------------------- /backend/store/role/aa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/role/aa.json -------------------------------------------------------------------------------- /backend/store/role/aaaa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/role/aaaa.json -------------------------------------------------------------------------------- /backend/store/role/abc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/role/abc.json -------------------------------------------------------------------------------- /backend/store/role/abc1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/role/abc1.json -------------------------------------------------------------------------------- /backend/store/role/abc123.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/role/abc123.json -------------------------------------------------------------------------------- /backend/store/role/abc32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/role/abc32.json -------------------------------------------------------------------------------- /backend/store/role/ac.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/role/ac.json -------------------------------------------------------------------------------- /backend/store/role/admin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/role/admin.json -------------------------------------------------------------------------------- /backend/store/role/admin1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/role/admin1.json -------------------------------------------------------------------------------- /backend/store/role/b1a23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/role/b1a23.json -------------------------------------------------------------------------------- /backend/store/role/dqdw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/role/dqdw.json -------------------------------------------------------------------------------- /backend/store/role/editer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/role/editer.json -------------------------------------------------------------------------------- /backend/store/role/eeee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/role/eeee.json -------------------------------------------------------------------------------- /backend/store/role/user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/role/user.json -------------------------------------------------------------------------------- /backend/store/sdk/golang-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/sdk/golang-server.json -------------------------------------------------------------------------------- /backend/store/storage/tengxunyun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/store/storage/tengxunyun.json -------------------------------------------------------------------------------- /backend/template/golang-server/README.md: -------------------------------------------------------------------------------- 1 | # NodeJs hook server SDK template for fireboom -------------------------------------------------------------------------------- /backend/template/golang-server/files/generated/fireboom_hooks.go.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/template/golang-server/files/generated/fireboom_hooks.go.hbs -------------------------------------------------------------------------------- /backend/template/golang-server/files/generated/models.go.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/template/golang-server/files/generated/models.go.hbs -------------------------------------------------------------------------------- /backend/template/golang-server/files/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/template/golang-server/files/go.mod -------------------------------------------------------------------------------- /backend/template/golang-server/files/helix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/template/golang-server/files/helix.html -------------------------------------------------------------------------------- /backend/template/golang-server/files/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/template/golang-server/files/main.go -------------------------------------------------------------------------------- /backend/template/golang-server/files/pkg/base/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/template/golang-server/files/pkg/base/client.go -------------------------------------------------------------------------------- /backend/template/golang-server/files/pkg/base/operation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/template/golang-server/files/pkg/base/operation.go -------------------------------------------------------------------------------- /backend/template/golang-server/files/pkg/base/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/template/golang-server/files/pkg/base/request.go -------------------------------------------------------------------------------- /backend/template/golang-server/files/pkg/base/upload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/template/golang-server/files/pkg/base/upload.go -------------------------------------------------------------------------------- /backend/template/golang-server/files/pkg/base/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/template/golang-server/files/pkg/base/user.go -------------------------------------------------------------------------------- /backend/template/golang-server/files/pkg/consts/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/template/golang-server/files/pkg/consts/env.go -------------------------------------------------------------------------------- /backend/template/golang-server/files/pkg/plugins/auth_hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/template/golang-server/files/pkg/plugins/auth_hooks.go -------------------------------------------------------------------------------- /backend/template/golang-server/files/pkg/plugins/global_hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/template/golang-server/files/pkg/plugins/global_hooks.go -------------------------------------------------------------------------------- /backend/template/golang-server/files/pkg/plugins/graphqls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/template/golang-server/files/pkg/plugins/graphqls.go -------------------------------------------------------------------------------- /backend/template/golang-server/files/pkg/plugins/internal_request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/template/golang-server/files/pkg/plugins/internal_request.go -------------------------------------------------------------------------------- /backend/template/golang-server/files/pkg/plugins/operation_hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/template/golang-server/files/pkg/plugins/operation_hooks.go -------------------------------------------------------------------------------- /backend/template/golang-server/files/pkg/plugins/proxy_hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/template/golang-server/files/pkg/plugins/proxy_hooks.go -------------------------------------------------------------------------------- /backend/template/golang-server/files/pkg/plugins/upload_hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/template/golang-server/files/pkg/plugins/upload_hooks.go -------------------------------------------------------------------------------- /backend/template/golang-server/files/pkg/types/configure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/template/golang-server/files/pkg/types/configure.go -------------------------------------------------------------------------------- /backend/template/golang-server/files/pkg/types/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/template/golang-server/files/pkg/types/server.go -------------------------------------------------------------------------------- /backend/template/golang-server/files/pkg/utils/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/template/golang-server/files/pkg/utils/config.go -------------------------------------------------------------------------------- /backend/template/golang-server/files/pkg/utils/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/template/golang-server/files/pkg/utils/file.go -------------------------------------------------------------------------------- /backend/template/golang-server/files/pkg/utils/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/template/golang-server/files/pkg/utils/http.go -------------------------------------------------------------------------------- /backend/template/golang-server/files/pkg/utils/random.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/template/golang-server/files/pkg/utils/random.go -------------------------------------------------------------------------------- /backend/template/golang-server/files/pkg/utils/strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/template/golang-server/files/pkg/utils/strings.go -------------------------------------------------------------------------------- /backend/template/golang-server/files/pkg/wgpb/wundernode_config.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/template/golang-server/files/pkg/wgpb/wundernode_config.pb.go -------------------------------------------------------------------------------- /backend/template/golang-server/files/scripts/install.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | cd ../ && go mod tidy -------------------------------------------------------------------------------- /backend/template/golang-server/files/scripts/run-build.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | cd ../ && go build -------------------------------------------------------------------------------- /backend/template/golang-server/files/scripts/run-dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/template/golang-server/files/scripts/run-dev.sh -------------------------------------------------------------------------------- /backend/template/golang-server/files/scripts/run-prod.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | ./run-build && go run ./custom-go -------------------------------------------------------------------------------- /backend/template/golang-server/files/server/fireboom_server.go.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/template/golang-server/files/server/fireboom_server.go.hbs -------------------------------------------------------------------------------- /backend/template/golang-server/files/server/start.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/template/golang-server/files/server/start.go -------------------------------------------------------------------------------- /backend/template/golang-server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/template/golang-server/manifest.json -------------------------------------------------------------------------------- /backend/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/update.sh -------------------------------------------------------------------------------- /backend/upload/oas/casdoor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/upload/oas/casdoor.json -------------------------------------------------------------------------------- /backend/upload/oas/system.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/backend/upload/oas/system.json -------------------------------------------------------------------------------- /front/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/.dockerignore -------------------------------------------------------------------------------- /front/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/.editorconfig -------------------------------------------------------------------------------- /front/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/.env -------------------------------------------------------------------------------- /front/.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/.env.development -------------------------------------------------------------------------------- /front/.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/.env.production -------------------------------------------------------------------------------- /front/.env.staging: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/.env.staging -------------------------------------------------------------------------------- /front/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/.eslintignore -------------------------------------------------------------------------------- /front/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/.eslintrc.js -------------------------------------------------------------------------------- /front/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/.gitignore -------------------------------------------------------------------------------- /front/.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/.husky/commit-msg -------------------------------------------------------------------------------- /front/.husky/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/.husky/common.sh -------------------------------------------------------------------------------- /front/.husky/lintstagedrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/.husky/lintstagedrc.js -------------------------------------------------------------------------------- /front/.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/.husky/pre-commit -------------------------------------------------------------------------------- /front/.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/.markdownlint.json -------------------------------------------------------------------------------- /front/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/.npmrc -------------------------------------------------------------------------------- /front/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/.prettierrc.js -------------------------------------------------------------------------------- /front/.stylelintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/.stylelintignore -------------------------------------------------------------------------------- /front/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/.vscode/extensions.json -------------------------------------------------------------------------------- /front/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/.vscode/settings.json -------------------------------------------------------------------------------- /front/.vscode/vue3.0.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/.vscode/vue3.0.code-snippets -------------------------------------------------------------------------------- /front/.vscode/vue3.2.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/.vscode/vue3.2.code-snippets -------------------------------------------------------------------------------- /front/.vscode/vue3.3.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/.vscode/vue3.3.code-snippets -------------------------------------------------------------------------------- /front/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/Dockerfile -------------------------------------------------------------------------------- /front/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/LICENSE -------------------------------------------------------------------------------- /front/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/README.md -------------------------------------------------------------------------------- /front/build/cdn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/build/cdn.ts -------------------------------------------------------------------------------- /front/build/compress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/build/compress.ts -------------------------------------------------------------------------------- /front/build/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/build/index.ts -------------------------------------------------------------------------------- /front/build/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/build/info.ts -------------------------------------------------------------------------------- /front/build/optimize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/build/optimize.ts -------------------------------------------------------------------------------- /front/build/plugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/build/plugins.ts -------------------------------------------------------------------------------- /front/commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/commitlint.config.js -------------------------------------------------------------------------------- /front/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/index.html -------------------------------------------------------------------------------- /front/locales/en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/locales/en.yaml -------------------------------------------------------------------------------- /front/locales/zh-CN.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/locales/zh-CN.yaml -------------------------------------------------------------------------------- /front/nginx.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/nginx.conf.template -------------------------------------------------------------------------------- /front/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/package.json -------------------------------------------------------------------------------- /front/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/pnpm-lock.yaml -------------------------------------------------------------------------------- /front/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/postcss.config.js -------------------------------------------------------------------------------- /front/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/favicon.ico -------------------------------------------------------------------------------- /front/public/icons/advert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/advert.svg -------------------------------------------------------------------------------- /front/public/icons/api.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/api.svg -------------------------------------------------------------------------------- /front/public/icons/brand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/brand.svg -------------------------------------------------------------------------------- /front/public/icons/bug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/bug.svg -------------------------------------------------------------------------------- /front/public/icons/cascader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/cascader.svg -------------------------------------------------------------------------------- /front/public/icons/chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/chart.svg -------------------------------------------------------------------------------- /front/public/icons/client.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/client.svg -------------------------------------------------------------------------------- /front/public/icons/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/close.svg -------------------------------------------------------------------------------- /front/public/icons/close_all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/close_all.svg -------------------------------------------------------------------------------- /front/public/icons/close_left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/close_left.svg -------------------------------------------------------------------------------- /front/public/icons/close_other.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/close_other.svg -------------------------------------------------------------------------------- /front/public/icons/close_right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/close_right.svg -------------------------------------------------------------------------------- /front/public/icons/coupon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/coupon.svg -------------------------------------------------------------------------------- /front/public/icons/dashboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/dashboard.svg -------------------------------------------------------------------------------- /front/public/icons/dict.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/dict.svg -------------------------------------------------------------------------------- /front/public/icons/dict_item.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/dict_item.svg -------------------------------------------------------------------------------- /front/public/icons/document.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/document.svg -------------------------------------------------------------------------------- /front/public/icons/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/download.svg -------------------------------------------------------------------------------- /front/public/icons/drag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/drag.svg -------------------------------------------------------------------------------- /front/public/icons/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/edit.svg -------------------------------------------------------------------------------- /front/public/icons/exit-fullscreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/exit-fullscreen.svg -------------------------------------------------------------------------------- /front/public/icons/eye-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/eye-open.svg -------------------------------------------------------------------------------- /front/public/icons/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/eye.svg -------------------------------------------------------------------------------- /front/public/icons/fullscreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/fullscreen.svg -------------------------------------------------------------------------------- /front/public/icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/github.svg -------------------------------------------------------------------------------- /front/public/icons/goods-list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/goods-list.svg -------------------------------------------------------------------------------- /front/public/icons/goods.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/goods.svg -------------------------------------------------------------------------------- /front/public/icons/guide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/guide.svg -------------------------------------------------------------------------------- /front/public/icons/homepage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/homepage.svg -------------------------------------------------------------------------------- /front/public/icons/lab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/lab.svg -------------------------------------------------------------------------------- /front/public/icons/language.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/language.svg -------------------------------------------------------------------------------- /front/public/icons/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/link.svg -------------------------------------------------------------------------------- /front/public/icons/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/menu.svg -------------------------------------------------------------------------------- /front/public/icons/message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/message.svg -------------------------------------------------------------------------------- /front/public/icons/money.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/money.svg -------------------------------------------------------------------------------- /front/public/icons/monitor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/monitor.svg -------------------------------------------------------------------------------- /front/public/icons/multi_level.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/multi_level.svg -------------------------------------------------------------------------------- /front/public/icons/nested.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/nested.svg -------------------------------------------------------------------------------- /front/public/icons/number.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/number.svg -------------------------------------------------------------------------------- /front/public/icons/order.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/order.svg -------------------------------------------------------------------------------- /front/public/icons/password.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/password.svg -------------------------------------------------------------------------------- /front/public/icons/peoples.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/peoples.svg -------------------------------------------------------------------------------- /front/public/icons/perm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/perm.svg -------------------------------------------------------------------------------- /front/public/icons/publish.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/publish.svg -------------------------------------------------------------------------------- /front/public/icons/rabbitmq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/rabbitmq.svg -------------------------------------------------------------------------------- /front/public/icons/rate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/rate.svg -------------------------------------------------------------------------------- /front/public/icons/redis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/redis.svg -------------------------------------------------------------------------------- /front/public/icons/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/refresh.svg -------------------------------------------------------------------------------- /front/public/icons/role.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/role.svg -------------------------------------------------------------------------------- /front/public/icons/security.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/security.svg -------------------------------------------------------------------------------- /front/public/icons/shopping.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/shopping.svg -------------------------------------------------------------------------------- /front/public/icons/size.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/size.svg -------------------------------------------------------------------------------- /front/public/icons/skill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/skill.svg -------------------------------------------------------------------------------- /front/public/icons/system.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/system.svg -------------------------------------------------------------------------------- /front/public/icons/theme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/theme.svg -------------------------------------------------------------------------------- /front/public/icons/tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/tree.svg -------------------------------------------------------------------------------- /front/public/icons/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/user.svg -------------------------------------------------------------------------------- /front/public/icons/uv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/uv.svg -------------------------------------------------------------------------------- /front/public/icons/valid_code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/valid_code.svg -------------------------------------------------------------------------------- /front/public/icons/verify_code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/icons/verify_code.svg -------------------------------------------------------------------------------- /front/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/logo.svg -------------------------------------------------------------------------------- /front/public/serverConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/public/serverConfig.json -------------------------------------------------------------------------------- /front/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/App.vue -------------------------------------------------------------------------------- /front/src/api/claims.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/api/claims.ts -------------------------------------------------------------------------------- /front/src/api/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/api/client.ts -------------------------------------------------------------------------------- /front/src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/api/index.ts -------------------------------------------------------------------------------- /front/src/api/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/api/models.ts -------------------------------------------------------------------------------- /front/src/api/post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/api/post.ts -------------------------------------------------------------------------------- /front/src/api/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/api/routes.ts -------------------------------------------------------------------------------- /front/src/api/system.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/api/system.ts -------------------------------------------------------------------------------- /front/src/api/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/api/user.ts -------------------------------------------------------------------------------- /front/src/assets/iconfont/iconfont.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/assets/iconfont/iconfont.css -------------------------------------------------------------------------------- /front/src/assets/iconfont/iconfont.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/assets/iconfont/iconfont.js -------------------------------------------------------------------------------- /front/src/assets/iconfont/iconfont.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/assets/iconfont/iconfont.json -------------------------------------------------------------------------------- /front/src/assets/iconfont/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/assets/iconfont/iconfont.ttf -------------------------------------------------------------------------------- /front/src/assets/iconfont/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/assets/iconfont/iconfont.woff -------------------------------------------------------------------------------- /front/src/assets/iconfont/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/assets/iconfont/iconfont.woff2 -------------------------------------------------------------------------------- /front/src/assets/login/Github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/assets/login/Github.png -------------------------------------------------------------------------------- /front/src/assets/login/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/assets/login/Logo.png -------------------------------------------------------------------------------- /front/src/assets/login/SDK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/assets/login/SDK.png -------------------------------------------------------------------------------- /front/src/assets/login/VSCODE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/assets/login/VSCODE.png -------------------------------------------------------------------------------- /front/src/assets/login/avatar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/assets/login/avatar.svg -------------------------------------------------------------------------------- /front/src/assets/login/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/assets/login/bg.png -------------------------------------------------------------------------------- /front/src/assets/login/database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/assets/login/database.png -------------------------------------------------------------------------------- /front/src/assets/login/illustration.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/assets/login/illustration.svg -------------------------------------------------------------------------------- /front/src/assets/status/403.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/assets/status/403.svg -------------------------------------------------------------------------------- /front/src/assets/status/404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/assets/status/404.svg -------------------------------------------------------------------------------- /front/src/assets/status/500.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/assets/status/500.svg -------------------------------------------------------------------------------- /front/src/assets/svg/back_top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/assets/svg/back_top.svg -------------------------------------------------------------------------------- /front/src/assets/svg/dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/assets/svg/dark.svg -------------------------------------------------------------------------------- /front/src/assets/svg/day.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/assets/svg/day.svg -------------------------------------------------------------------------------- /front/src/assets/svg/enter_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/assets/svg/enter_outlined.svg -------------------------------------------------------------------------------- /front/src/assets/svg/exit_screen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/assets/svg/exit_screen.svg -------------------------------------------------------------------------------- /front/src/assets/svg/full_screen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/assets/svg/full_screen.svg -------------------------------------------------------------------------------- /front/src/assets/svg/globalization.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/assets/svg/globalization.svg -------------------------------------------------------------------------------- /front/src/assets/svg/keyboard_esc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/assets/svg/keyboard_esc.svg -------------------------------------------------------------------------------- /front/src/assets/user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/assets/user.jpg -------------------------------------------------------------------------------- /front/src/components/IconSelect/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/components/IconSelect/index.vue -------------------------------------------------------------------------------- /front/src/components/ReAuth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/components/ReAuth/index.ts -------------------------------------------------------------------------------- /front/src/components/ReAuth/src/auth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/components/ReAuth/src/auth.tsx -------------------------------------------------------------------------------- /front/src/components/ReCol/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/components/ReCol/index.ts -------------------------------------------------------------------------------- /front/src/components/ReDialog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/components/ReDialog/index.ts -------------------------------------------------------------------------------- /front/src/components/ReDialog/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/components/ReDialog/index.vue -------------------------------------------------------------------------------- /front/src/components/ReDialog/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/components/ReDialog/type.ts -------------------------------------------------------------------------------- /front/src/components/ReIcon/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/components/ReIcon/index.ts -------------------------------------------------------------------------------- /front/src/components/ReIcon/src/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/components/ReIcon/src/hooks.ts -------------------------------------------------------------------------------- /front/src/components/ReIcon/src/iconfont.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/components/ReIcon/src/iconfont.ts -------------------------------------------------------------------------------- /front/src/components/ReIcon/src/iconifyIconOffline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/components/ReIcon/src/iconifyIconOffline.ts -------------------------------------------------------------------------------- /front/src/components/ReIcon/src/iconifyIconOnline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/components/ReIcon/src/iconifyIconOnline.ts -------------------------------------------------------------------------------- /front/src/components/ReIcon/src/offlineIcon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/components/ReIcon/src/offlineIcon.ts -------------------------------------------------------------------------------- /front/src/components/ReIcon/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/components/ReIcon/src/types.ts -------------------------------------------------------------------------------- /front/src/components/RePureTableBar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/components/RePureTableBar/index.ts -------------------------------------------------------------------------------- /front/src/components/RePureTableBar/src/bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/components/RePureTableBar/src/bar.tsx -------------------------------------------------------------------------------- /front/src/components/RePureTableBar/src/svg/collapse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/components/RePureTableBar/src/svg/collapse.svg -------------------------------------------------------------------------------- /front/src/components/RePureTableBar/src/svg/drag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/components/RePureTableBar/src/svg/drag.svg -------------------------------------------------------------------------------- /front/src/components/RePureTableBar/src/svg/expand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/components/RePureTableBar/src/svg/expand.svg -------------------------------------------------------------------------------- /front/src/components/RePureTableBar/src/svg/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/components/RePureTableBar/src/svg/refresh.svg -------------------------------------------------------------------------------- /front/src/components/RePureTableBar/src/svg/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/components/RePureTableBar/src/svg/settings.svg -------------------------------------------------------------------------------- /front/src/components/SvgIcon/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/components/SvgIcon/index.vue -------------------------------------------------------------------------------- /front/src/components/WangEditor/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/components/WangEditor/index.vue -------------------------------------------------------------------------------- /front/src/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/config/index.ts -------------------------------------------------------------------------------- /front/src/directives/auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/directives/auth/index.ts -------------------------------------------------------------------------------- /front/src/directives/copy/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/directives/copy/index.ts -------------------------------------------------------------------------------- /front/src/directives/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/directives/index.ts -------------------------------------------------------------------------------- /front/src/directives/optimize/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/directives/optimize/index.ts -------------------------------------------------------------------------------- /front/src/layout/components/appMain.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/layout/components/appMain.vue -------------------------------------------------------------------------------- /front/src/layout/components/navbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/layout/components/navbar.vue -------------------------------------------------------------------------------- /front/src/layout/components/notice/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/layout/components/notice/data.ts -------------------------------------------------------------------------------- /front/src/layout/components/notice/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/layout/components/notice/index.vue -------------------------------------------------------------------------------- /front/src/layout/components/notice/noticeItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/layout/components/notice/noticeItem.vue -------------------------------------------------------------------------------- /front/src/layout/components/notice/noticeList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/layout/components/notice/noticeList.vue -------------------------------------------------------------------------------- /front/src/layout/components/notice/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/layout/components/notice/util.ts -------------------------------------------------------------------------------- /front/src/layout/components/panel/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/layout/components/panel/index.vue -------------------------------------------------------------------------------- /front/src/layout/components/search/components/SearchFooter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/layout/components/search/components/SearchFooter.vue -------------------------------------------------------------------------------- /front/src/layout/components/search/components/SearchModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/layout/components/search/components/SearchModal.vue -------------------------------------------------------------------------------- /front/src/layout/components/search/components/SearchResult.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/layout/components/search/components/SearchResult.vue -------------------------------------------------------------------------------- /front/src/layout/components/search/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/layout/components/search/components/index.ts -------------------------------------------------------------------------------- /front/src/layout/components/search/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/layout/components/search/index.vue -------------------------------------------------------------------------------- /front/src/layout/components/setting/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/layout/components/setting/index.vue -------------------------------------------------------------------------------- /front/src/layout/components/sidebar/breadCrumb.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/layout/components/sidebar/breadCrumb.vue -------------------------------------------------------------------------------- /front/src/layout/components/sidebar/extraIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/layout/components/sidebar/extraIcon.vue -------------------------------------------------------------------------------- /front/src/layout/components/sidebar/horizontal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/layout/components/sidebar/horizontal.vue -------------------------------------------------------------------------------- /front/src/layout/components/sidebar/leftCollapse.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/layout/components/sidebar/leftCollapse.vue -------------------------------------------------------------------------------- /front/src/layout/components/sidebar/logo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/layout/components/sidebar/logo.vue -------------------------------------------------------------------------------- /front/src/layout/components/sidebar/mixNav.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/layout/components/sidebar/mixNav.vue -------------------------------------------------------------------------------- /front/src/layout/components/sidebar/sidebarItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/layout/components/sidebar/sidebarItem.vue -------------------------------------------------------------------------------- /front/src/layout/components/sidebar/topCollapse.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/layout/components/sidebar/topCollapse.vue -------------------------------------------------------------------------------- /front/src/layout/components/sidebar/vertical.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/layout/components/sidebar/vertical.vue -------------------------------------------------------------------------------- /front/src/layout/components/tag/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/layout/components/tag/index.scss -------------------------------------------------------------------------------- /front/src/layout/components/tag/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/layout/components/tag/index.vue -------------------------------------------------------------------------------- /front/src/layout/frameView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/layout/frameView.vue -------------------------------------------------------------------------------- /front/src/layout/hooks/useBoolean.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/layout/hooks/useBoolean.ts -------------------------------------------------------------------------------- /front/src/layout/hooks/useDataThemeChange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/layout/hooks/useDataThemeChange.ts -------------------------------------------------------------------------------- /front/src/layout/hooks/useLayout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/layout/hooks/useLayout.ts -------------------------------------------------------------------------------- /front/src/layout/hooks/useNav.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/layout/hooks/useNav.ts -------------------------------------------------------------------------------- /front/src/layout/hooks/useTag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/layout/hooks/useTag.ts -------------------------------------------------------------------------------- /front/src/layout/hooks/useTranslationLang.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/layout/hooks/useTranslationLang.ts -------------------------------------------------------------------------------- /front/src/layout/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/layout/index.vue -------------------------------------------------------------------------------- /front/src/layout/redirect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/layout/redirect.vue -------------------------------------------------------------------------------- /front/src/layout/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/layout/theme/index.ts -------------------------------------------------------------------------------- /front/src/layout/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/layout/types.ts -------------------------------------------------------------------------------- /front/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/main.ts -------------------------------------------------------------------------------- /front/src/mockProdServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/mockProdServer.ts -------------------------------------------------------------------------------- /front/src/plugins/echarts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/plugins/echarts/index.ts -------------------------------------------------------------------------------- /front/src/plugins/element-plus/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/plugins/element-plus/index.ts -------------------------------------------------------------------------------- /front/src/plugins/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/plugins/i18n.ts -------------------------------------------------------------------------------- /front/src/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/router/index.ts -------------------------------------------------------------------------------- /front/src/router/modules/dashboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/router/modules/dashboard.ts -------------------------------------------------------------------------------- /front/src/router/modules/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/router/modules/error.ts -------------------------------------------------------------------------------- /front/src/router/modules/home.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/router/modules/home.ts -------------------------------------------------------------------------------- /front/src/router/modules/post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/router/modules/post.ts -------------------------------------------------------------------------------- /front/src/router/modules/remaining.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/router/modules/remaining.ts -------------------------------------------------------------------------------- /front/src/router/modules/system.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/router/modules/system.ts -------------------------------------------------------------------------------- /front/src/router/modules/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/router/modules/update.ts -------------------------------------------------------------------------------- /front/src/router/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/router/utils.ts -------------------------------------------------------------------------------- /front/src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/store/index.ts -------------------------------------------------------------------------------- /front/src/store/modules/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/store/modules/app.ts -------------------------------------------------------------------------------- /front/src/store/modules/epTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/store/modules/epTheme.ts -------------------------------------------------------------------------------- /front/src/store/modules/multiTags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/store/modules/multiTags.ts -------------------------------------------------------------------------------- /front/src/store/modules/permission.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/store/modules/permission.ts -------------------------------------------------------------------------------- /front/src/store/modules/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/store/modules/settings.ts -------------------------------------------------------------------------------- /front/src/store/modules/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/store/modules/types.ts -------------------------------------------------------------------------------- /front/src/store/modules/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/store/modules/user.ts -------------------------------------------------------------------------------- /front/src/style/dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/style/dark.scss -------------------------------------------------------------------------------- /front/src/style/element-plus.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/style/element-plus.scss -------------------------------------------------------------------------------- /front/src/style/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/style/index.scss -------------------------------------------------------------------------------- /front/src/style/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/style/login.css -------------------------------------------------------------------------------- /front/src/style/reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/style/reset.scss -------------------------------------------------------------------------------- /front/src/style/sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/style/sidebar.scss -------------------------------------------------------------------------------- /front/src/style/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/style/tailwind.css -------------------------------------------------------------------------------- /front/src/style/transition.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/style/transition.scss -------------------------------------------------------------------------------- /front/src/utils/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/utils/auth.ts -------------------------------------------------------------------------------- /front/src/utils/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/utils/date.ts -------------------------------------------------------------------------------- /front/src/utils/globalPolyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/utils/globalPolyfills.ts -------------------------------------------------------------------------------- /front/src/utils/http/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/utils/http/index.ts -------------------------------------------------------------------------------- /front/src/utils/http/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/utils/http/types.d.ts -------------------------------------------------------------------------------- /front/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/utils/index.ts -------------------------------------------------------------------------------- /front/src/utils/message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/utils/message.ts -------------------------------------------------------------------------------- /front/src/utils/mitt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/utils/mitt.ts -------------------------------------------------------------------------------- /front/src/utils/print.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/utils/print.ts -------------------------------------------------------------------------------- /front/src/utils/progress/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/utils/progress/index.ts -------------------------------------------------------------------------------- /front/src/utils/propTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/utils/propTypes.ts -------------------------------------------------------------------------------- /front/src/utils/responsive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/utils/responsive.ts -------------------------------------------------------------------------------- /front/src/utils/sso.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/utils/sso.ts -------------------------------------------------------------------------------- /front/src/utils/tree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/utils/tree.ts -------------------------------------------------------------------------------- /front/src/views/dashboard/components/MonthlySales.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/views/dashboard/components/MonthlySales.vue -------------------------------------------------------------------------------- /front/src/views/dashboard/components/SaleTypePercent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/views/dashboard/components/SaleTypePercent.vue -------------------------------------------------------------------------------- /front/src/views/dashboard/components/SalesTop10.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/views/dashboard/components/SalesTop10.vue -------------------------------------------------------------------------------- /front/src/views/dashboard/components/VisitTrending.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/views/dashboard/components/VisitTrending.vue -------------------------------------------------------------------------------- /front/src/views/dashboard/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/views/dashboard/index.vue -------------------------------------------------------------------------------- /front/src/views/error/403.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/views/error/403.vue -------------------------------------------------------------------------------- /front/src/views/error/404.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/views/error/404.vue -------------------------------------------------------------------------------- /front/src/views/error/500.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/views/error/500.vue -------------------------------------------------------------------------------- /front/src/views/login/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/views/login/index.vue -------------------------------------------------------------------------------- /front/src/views/login/phone.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/views/login/phone.vue -------------------------------------------------------------------------------- /front/src/views/login/utils/cos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/views/login/utils/cos.ts -------------------------------------------------------------------------------- /front/src/views/login/utils/motion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/views/login/utils/motion.ts -------------------------------------------------------------------------------- /front/src/views/login/utils/rule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/views/login/utils/rule.ts -------------------------------------------------------------------------------- /front/src/views/login/utils/static.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/views/login/utils/static.ts -------------------------------------------------------------------------------- /front/src/views/login/utils/verifyCode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/views/login/utils/verifyCode.ts -------------------------------------------------------------------------------- /front/src/views/post/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/views/post/index.vue -------------------------------------------------------------------------------- /front/src/views/post/updatePost/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/views/post/updatePost/index.vue -------------------------------------------------------------------------------- /front/src/views/system/log/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/views/system/log/index.vue -------------------------------------------------------------------------------- /front/src/views/system/menu/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/views/system/menu/index.vue -------------------------------------------------------------------------------- /front/src/views/system/permission/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/views/system/permission/index.vue -------------------------------------------------------------------------------- /front/src/views/system/role/api.bind.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/views/system/role/api.bind.vue -------------------------------------------------------------------------------- /front/src/views/system/role/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/views/system/role/index.vue -------------------------------------------------------------------------------- /front/src/views/system/role/menu.bind.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/views/system/role/menu.bind.vue -------------------------------------------------------------------------------- /front/src/views/system/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/views/system/types.ts -------------------------------------------------------------------------------- /front/src/views/system/user/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/views/system/user/index.vue -------------------------------------------------------------------------------- /front/src/views/system/user/role.bind.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/views/system/user/role.bind.vue -------------------------------------------------------------------------------- /front/src/views/system/user/updateUser/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/views/system/user/updateUser/index.vue -------------------------------------------------------------------------------- /front/src/views/system/user/utils/country.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/views/system/user/utils/country.ts -------------------------------------------------------------------------------- /front/src/views/welcome/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/src/views/welcome/index.vue -------------------------------------------------------------------------------- /front/stylelint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/stylelint.config.js -------------------------------------------------------------------------------- /front/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/tailwind.config.js -------------------------------------------------------------------------------- /front/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/tsconfig.json -------------------------------------------------------------------------------- /front/types/global-components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/types/global-components.d.ts -------------------------------------------------------------------------------- /front/types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/types/global.d.ts -------------------------------------------------------------------------------- /front/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/types/index.d.ts -------------------------------------------------------------------------------- /front/types/router.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/types/router.d.ts -------------------------------------------------------------------------------- /front/types/shims-tsx.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/types/shims-tsx.d.ts -------------------------------------------------------------------------------- /front/types/shims-vue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/types/shims-vue.d.ts -------------------------------------------------------------------------------- /front/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireboomio/fb-admin/HEAD/front/vite.config.ts -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- 1 | cd backend/&&docker-compose up -d --------------------------------------------------------------------------------