├── .gitignore ├── README.md ├── admin ├── .editorconfig ├── .env ├── .env.base ├── .env.dev ├── .env.front ├── .env.pro ├── .env.stage ├── .env.static ├── .env.test ├── .eslintignore ├── .eslintrc-auto-import.json ├── .eslintrc.js ├── .gitignore ├── .prettierignore ├── .stylelintignore ├── .vscode │ ├── extensions.json │ ├── launch.json │ └── settings.json ├── LICENSE ├── README.md ├── build │ └── vite │ │ ├── index.ts │ │ └── optimize.ts ├── index.html ├── package.json ├── postcss.config.js ├── prettier.config.js ├── preview │ └── home.png ├── public │ ├── favicon.ico │ └── logo.gif ├── src │ ├── App.vue │ ├── api │ │ ├── bpm │ │ │ ├── activity │ │ │ │ └── index.ts │ │ │ ├── definition │ │ │ │ └── index.ts │ │ │ ├── form │ │ │ │ └── index.ts │ │ │ ├── leave │ │ │ │ └── index.ts │ │ │ ├── model │ │ │ │ └── index.ts │ │ │ ├── processInstance │ │ │ │ └── index.ts │ │ │ ├── task │ │ │ │ └── index.ts │ │ │ ├── taskAssignRule │ │ │ │ └── index.ts │ │ │ └── userGroup │ │ │ │ └── index.ts │ │ ├── dto │ │ │ └── dto.ts │ │ ├── infra │ │ │ ├── apiAccessLog │ │ │ │ └── index.ts │ │ │ ├── apiErrorLog │ │ │ │ └── index.ts │ │ │ ├── codegen │ │ │ │ └── index.ts │ │ │ ├── config │ │ │ │ └── index.ts │ │ │ ├── dataSourceConfig │ │ │ │ └── index.ts │ │ │ ├── dbDoc │ │ │ │ └── index.ts │ │ │ ├── file │ │ │ │ └── index.ts │ │ │ ├── fileConfig │ │ │ │ └── index.ts │ │ │ ├── job │ │ │ │ └── index.ts │ │ │ ├── jobLog │ │ │ │ └── index.ts │ │ │ └── redis │ │ │ │ ├── index.ts │ │ │ │ └── types.ts │ │ ├── login │ │ │ ├── index.ts │ │ │ ├── oauth2 │ │ │ │ └── index.ts │ │ │ └── types.ts │ │ ├── mall │ │ │ ├── product │ │ │ │ ├── brand.ts │ │ │ │ ├── category.ts │ │ │ │ ├── property.ts │ │ │ │ └── spu.ts │ │ │ └── trade │ │ │ │ └── delivery │ │ │ │ ├── express │ │ │ │ └── index.ts │ │ │ │ └── expressTemplate │ │ │ │ └── index.ts │ │ ├── mp │ │ │ ├── account │ │ │ │ └── index.ts │ │ │ ├── autoReply │ │ │ │ └── index.ts │ │ │ ├── draft │ │ │ │ └── index.ts │ │ │ ├── freePublish │ │ │ │ └── index.ts │ │ │ ├── material │ │ │ │ └── index.ts │ │ │ ├── menu │ │ │ │ └── index.ts │ │ │ ├── message │ │ │ │ └── index.ts │ │ │ ├── statistics │ │ │ │ └── index.ts │ │ │ ├── tag │ │ │ │ └── index.ts │ │ │ └── user │ │ │ │ └── index.ts │ │ ├── pay │ │ │ ├── app │ │ │ │ └── index.ts │ │ │ ├── channel │ │ │ │ └── index.ts │ │ │ ├── merchant │ │ │ │ └── index.ts │ │ │ ├── order │ │ │ │ └── index.ts │ │ │ └── refund │ │ │ │ └── index.ts │ │ ├── point │ │ │ ├── config │ │ │ │ └── index.ts │ │ │ ├── record │ │ │ │ └── index.ts │ │ │ ├── signInConfig │ │ │ │ └── index.ts │ │ │ └── signInRecord │ │ │ │ └── index.ts │ │ └── system │ │ │ ├── area │ │ │ └── index.ts │ │ │ ├── dept │ │ │ └── index.ts │ │ │ ├── dict │ │ │ ├── dict.data.ts │ │ │ └── dict.type.ts │ │ │ ├── errorCode │ │ │ └── index.ts │ │ │ ├── loginLog │ │ │ └── index.ts │ │ │ ├── mail │ │ │ ├── account │ │ │ │ └── index.ts │ │ │ ├── log │ │ │ │ └── index.ts │ │ │ └── template │ │ │ │ └── index.ts │ │ │ ├── menu │ │ │ └── index.ts │ │ │ ├── notice │ │ │ └── index.ts │ │ │ ├── notify │ │ │ ├── message │ │ │ │ └── index.ts │ │ │ └── template │ │ │ │ └── index.ts │ │ │ ├── oauth2 │ │ │ ├── client.ts │ │ │ └── token.ts │ │ │ ├── operatelog │ │ │ └── index.ts │ │ │ ├── permission │ │ │ └── index.ts │ │ │ ├── post │ │ │ └── index.ts │ │ │ ├── role │ │ │ └── index.ts │ │ │ ├── sensitiveWord │ │ │ └── index.ts │ │ │ ├── sms │ │ │ ├── smsChannel │ │ │ │ └── index.ts │ │ │ ├── smsLog │ │ │ │ └── index.ts │ │ │ └── smsTemplate │ │ │ │ └── index.ts │ │ │ └── user │ │ │ ├── index.ts │ │ │ ├── profile.ts │ │ │ └── socialUser.ts │ ├── assets │ │ ├── imgs │ │ │ ├── avatar.gif │ │ │ ├── avatar.jpg │ │ │ ├── logo.png │ │ │ ├── profile.jpg │ │ │ └── wechat.png │ │ └── svgs │ │ │ ├── 403.svg │ │ │ ├── 404.svg │ │ │ ├── 500.svg │ │ │ ├── icon.svg │ │ │ ├── login-bg.svg │ │ │ ├── login-box-bg.svg │ │ │ ├── message.svg │ │ │ ├── money.svg │ │ │ ├── peoples.svg │ │ │ └── shopping.svg │ ├── components │ │ ├── Backtop │ │ │ ├── index.ts │ │ │ └── src │ │ │ │ └── Backtop.vue │ │ ├── ConfigGlobal │ │ │ ├── index.ts │ │ │ └── src │ │ │ │ └── ConfigGlobal.vue │ │ ├── ContentDetailWrap │ │ │ ├── index.ts │ │ │ └── src │ │ │ │ └── ContentDetailWrap.vue │ │ ├── ContentWrap │ │ │ ├── index.ts │ │ │ └── src │ │ │ │ └── ContentWrap.vue │ │ ├── CountTo │ │ │ ├── index.ts │ │ │ └── src │ │ │ │ └── CountTo.vue │ │ ├── Crontab │ │ │ ├── index.ts │ │ │ └── src │ │ │ │ └── Crontab.vue │ │ ├── Cropper │ │ │ ├── index.ts │ │ │ └── src │ │ │ │ ├── CopperModal.vue │ │ │ │ ├── Cropper.vue │ │ │ │ ├── CropperAvatar.vue │ │ │ │ └── types.ts │ │ ├── Descriptions │ │ │ ├── index.ts │ │ │ └── src │ │ │ │ └── Descriptions.vue │ │ ├── Dialog │ │ │ ├── index.ts │ │ │ └── src │ │ │ │ └── Dialog.vue │ │ ├── DictTag │ │ │ ├── index.ts │ │ │ └── src │ │ │ │ └── DictTag.vue │ │ ├── DocAlert │ │ │ └── index.vue │ │ ├── Echart │ │ │ ├── index.ts │ │ │ └── src │ │ │ │ └── Echart.vue │ │ ├── Editor │ │ │ ├── index.ts │ │ │ └── src │ │ │ │ └── Editor.vue │ │ ├── Error │ │ │ ├── index.ts │ │ │ └── src │ │ │ │ └── Error.vue │ │ ├── Form │ │ │ ├── index.ts │ │ │ └── src │ │ │ │ ├── Form.vue │ │ │ │ ├── componentMap.ts │ │ │ │ ├── components │ │ │ │ ├── useRenderCheckbox.tsx │ │ │ │ ├── useRenderRadio.tsx │ │ │ │ └── useRenderSelect.tsx │ │ │ │ ├── helper.ts │ │ │ │ └── types.ts │ │ ├── Highlight │ │ │ ├── index.ts │ │ │ └── src │ │ │ │ └── Highlight.vue │ │ ├── IFrame │ │ │ ├── index.ts │ │ │ └── src │ │ │ │ └── IFrame.vue │ │ ├── Icon │ │ │ ├── index.ts │ │ │ └── src │ │ │ │ ├── Icon.vue │ │ │ │ ├── IconSelect.vue │ │ │ │ └── data.ts │ │ ├── ImageViewer │ │ │ ├── index.ts │ │ │ └── src │ │ │ │ ├── ImageViewer.vue │ │ │ │ └── types.ts │ │ ├── Infotip │ │ │ ├── index.ts │ │ │ └── src │ │ │ │ └── Infotip.vue │ │ ├── InputPassword │ │ │ ├── index.ts │ │ │ └── src │ │ │ │ └── InputPassword.vue │ │ ├── Pagination │ │ │ └── index.vue │ │ ├── Qrcode │ │ │ ├── index.ts │ │ │ └── src │ │ │ │ └── Qrcode.vue │ │ ├── RouterSearch │ │ │ └── index.vue │ │ ├── Search │ │ │ ├── index.ts │ │ │ └── src │ │ │ │ └── Search.vue │ │ ├── Sticky │ │ │ ├── index.ts │ │ │ └── src │ │ │ │ └── Sticky.vue │ │ ├── Table │ │ │ ├── index.ts │ │ │ └── src │ │ │ │ ├── Table.vue │ │ │ │ ├── helper.ts │ │ │ │ └── types.ts │ │ ├── Tooltip │ │ │ ├── index.ts │ │ │ └── src │ │ │ │ └── Tooltip.vue │ │ ├── UploadFile │ │ │ ├── index.ts │ │ │ └── src │ │ │ │ ├── UploadFile.vue │ │ │ │ ├── UploadImg.vue │ │ │ │ └── UploadImgs.vue │ │ ├── Verifition │ │ │ ├── index.ts │ │ │ └── src │ │ │ │ ├── Verify.vue │ │ │ │ ├── Verify │ │ │ │ ├── VerifyPoints.vue │ │ │ │ ├── VerifySlide.vue │ │ │ │ └── index.ts │ │ │ │ └── utils │ │ │ │ ├── ase.ts │ │ │ │ └── util.ts │ │ ├── XButton │ │ │ ├── index.ts │ │ │ └── src │ │ │ │ ├── XButton.vue │ │ │ │ └── XTextButton.vue │ │ ├── bpmnProcessDesigner │ │ │ ├── package │ │ │ │ ├── designer │ │ │ │ │ ├── ProcessDesigner.vue │ │ │ │ │ ├── ProcessViewer.vue │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── index2.ts │ │ │ │ │ └── plugins │ │ │ │ │ │ ├── content-pad │ │ │ │ │ │ ├── contentPadProvider.js │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── defaultEmpty.js │ │ │ │ │ │ ├── descriptor │ │ │ │ │ │ ├── activitiDescriptor.json │ │ │ │ │ │ ├── camundaDescriptor.json │ │ │ │ │ │ └── flowableDescriptor.json │ │ │ │ │ │ ├── extension-moddle │ │ │ │ │ │ ├── activiti │ │ │ │ │ │ │ ├── activitiExtension.js │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── camunda │ │ │ │ │ │ │ ├── extension.js │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ └── flowable │ │ │ │ │ │ │ ├── flowableExtension.js │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── palette │ │ │ │ │ │ ├── CustomPalette.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── paletteProvider.js │ │ │ │ │ │ └── translate │ │ │ │ │ │ ├── customTranslate.js │ │ │ │ │ │ └── zh.js │ │ │ │ ├── index.ts │ │ │ │ ├── palette │ │ │ │ │ └── ProcessPalette.vue │ │ │ │ ├── penal │ │ │ │ │ ├── PropertiesPanel.vue │ │ │ │ │ ├── base │ │ │ │ │ │ └── ElementBaseInfo.vue │ │ │ │ │ ├── flow-condition │ │ │ │ │ │ └── FlowCondition.vue │ │ │ │ │ ├── form │ │ │ │ │ │ └── ElementForm.vue │ │ │ │ │ ├── index.js │ │ │ │ │ ├── listeners │ │ │ │ │ │ ├── ElementListeners.vue │ │ │ │ │ │ ├── UserTaskListeners.vue │ │ │ │ │ │ ├── template.js │ │ │ │ │ │ └── utilSelf.ts │ │ │ │ │ ├── multi-instance │ │ │ │ │ │ └── ElementMultiInstance.vue │ │ │ │ │ ├── other │ │ │ │ │ │ └── ElementOtherConfig.vue │ │ │ │ │ ├── properties │ │ │ │ │ │ └── ElementProperties.vue │ │ │ │ │ ├── signal-message │ │ │ │ │ │ └── SignalAndMessage.vue │ │ │ │ │ └── task │ │ │ │ │ │ ├── ElementTask.vue │ │ │ │ │ │ └── task-components │ │ │ │ │ │ ├── ReceiveTask.vue │ │ │ │ │ │ ├── ScriptTask.vue │ │ │ │ │ │ └── UserTask.vue │ │ │ │ ├── theme │ │ │ │ │ ├── element-variables.scss │ │ │ │ │ ├── index.scss │ │ │ │ │ ├── process-designer.scss │ │ │ │ │ └── process-panel.scss │ │ │ │ └── utils.ts │ │ │ └── src │ │ │ │ ├── highlight │ │ │ │ └── index.js │ │ │ │ ├── modules │ │ │ │ ├── custom-renderer │ │ │ │ │ ├── CustomRenderer.js │ │ │ │ │ └── index.js │ │ │ │ └── rules │ │ │ │ │ ├── CustomRules.js │ │ │ │ │ └── index.js │ │ │ │ ├── translations.ts │ │ │ │ └── utils │ │ │ │ ├── directive │ │ │ │ └── clickOutSide.js │ │ │ │ ├── index.js │ │ │ │ └── xml2json.js │ │ └── index.ts │ ├── config │ │ └── axios │ │ │ ├── config.ts │ │ │ ├── errorCode.ts │ │ │ ├── index.ts │ │ │ └── service.ts │ ├── directives │ │ ├── index.ts │ │ └── permission │ │ │ ├── hasPermi.ts │ │ │ └── hasRole.ts │ ├── hooks │ │ ├── event │ │ │ └── useScrollTo.ts │ │ └── web │ │ │ ├── useCache.ts │ │ │ ├── useConfigGlobal.ts │ │ │ ├── useCrudSchemas.ts │ │ │ ├── useDesign.ts │ │ │ ├── useEmitt.ts │ │ │ ├── useForm.ts │ │ │ ├── useI18n.ts │ │ │ ├── useIcon.ts │ │ │ ├── useIntro.ts │ │ │ ├── useLocale.ts │ │ │ ├── useMessage.ts │ │ │ ├── useNProgress.ts │ │ │ ├── usePageLoading.ts │ │ │ ├── useTable.ts │ │ │ ├── useTimeAgo.ts │ │ │ ├── useTitle.ts │ │ │ ├── useValidator.ts │ │ │ └── useWatermark.ts │ ├── layout │ │ ├── Layout.vue │ │ └── components │ │ │ ├── AppView.vue │ │ │ ├── Breadcrumb │ │ │ ├── index.ts │ │ │ └── src │ │ │ │ ├── Breadcrumb.vue │ │ │ │ └── helper.ts │ │ │ ├── Collapse │ │ │ ├── index.ts │ │ │ └── src │ │ │ │ └── Collapse.vue │ │ │ ├── ContextMenu │ │ │ ├── index.ts │ │ │ └── src │ │ │ │ └── ContextMenu.vue │ │ │ ├── Footer │ │ │ ├── index.ts │ │ │ └── src │ │ │ │ └── Footer.vue │ │ │ ├── LocaleDropdown │ │ │ ├── index.ts │ │ │ └── src │ │ │ │ └── LocaleDropdown.vue │ │ │ ├── Logo │ │ │ ├── index.ts │ │ │ └── src │ │ │ │ └── Logo.vue │ │ │ ├── Menu │ │ │ ├── index.ts │ │ │ └── src │ │ │ │ ├── Menu.vue │ │ │ │ ├── components │ │ │ │ ├── useRenderMenuItem.tsx │ │ │ │ └── useRenderMenuTitle.tsx │ │ │ │ └── helper.ts │ │ │ ├── Message │ │ │ ├── index.ts │ │ │ └── src │ │ │ │ └── Message.vue │ │ │ ├── Screenfull │ │ │ ├── index.ts │ │ │ └── src │ │ │ │ └── Screenfull.vue │ │ │ ├── Setting │ │ │ ├── index.ts │ │ │ └── src │ │ │ │ ├── Setting.vue │ │ │ │ └── components │ │ │ │ ├── ColorRadioPicker.vue │ │ │ │ ├── InterfaceDisplay.vue │ │ │ │ └── LayoutRadioPicker.vue │ │ │ ├── SizeDropdown │ │ │ ├── index.ts │ │ │ └── src │ │ │ │ └── SizeDropdown.vue │ │ │ ├── TabMenu │ │ │ ├── index.ts │ │ │ └── src │ │ │ │ ├── TabMenu.vue │ │ │ │ └── helper.ts │ │ │ ├── TagsView │ │ │ ├── index.ts │ │ │ └── src │ │ │ │ ├── TagsView.vue │ │ │ │ └── helper.ts │ │ │ ├── ThemeSwitch │ │ │ ├── index.ts │ │ │ └── src │ │ │ │ └── ThemeSwitch.vue │ │ │ ├── ToolHeader.vue │ │ │ ├── UserInfo │ │ │ ├── index.ts │ │ │ └── src │ │ │ │ └── UserInfo.vue │ │ │ └── useRenderLayout.tsx │ ├── locales │ │ ├── en.ts │ │ └── zh-CN.ts │ ├── main.ts │ ├── permission.ts │ ├── plugins │ │ ├── animate.css │ │ │ └── index.ts │ │ ├── echarts │ │ │ └── index.ts │ │ ├── elementPlus │ │ │ └── index.ts │ │ ├── formCreate │ │ │ └── index.ts │ │ ├── svgIcon │ │ │ └── index.ts │ │ ├── tongji │ │ │ └── index.ts │ │ ├── vueI18n │ │ │ ├── helper.ts │ │ │ └── index.ts │ │ └── windi.css │ │ │ └── index.ts │ ├── router │ │ ├── index.ts │ │ └── modules │ │ │ └── remaining.ts │ ├── store │ │ ├── index.ts │ │ └── modules │ │ │ ├── app.ts │ │ │ ├── dict.ts │ │ │ ├── locale.ts │ │ │ ├── permission.ts │ │ │ ├── tagsView.ts │ │ │ └── user.ts │ ├── styles │ │ ├── global.module.scss │ │ ├── index.scss │ │ ├── theme.scss │ │ ├── var.css │ │ └── variables.scss │ ├── types │ │ ├── components.d.ts │ │ ├── configGlobal.d.ts │ │ ├── contextMenu.d.ts │ │ ├── descriptions.d.ts │ │ ├── elementPlus.d.ts │ │ ├── form.d.ts │ │ ├── icon.d.ts │ │ ├── infoTip.d.ts │ │ ├── layout.d.ts │ │ ├── localeDropdown.d.ts │ │ ├── qrcode.d.ts │ │ ├── table.d.ts │ │ └── theme.d.ts │ ├── utils │ │ ├── Logger.ts │ │ ├── auth.ts │ │ ├── color.ts │ │ ├── constants.ts │ │ ├── dict.ts │ │ ├── domUtils.ts │ │ ├── download.ts │ │ ├── filt.ts │ │ ├── formCreate.ts │ │ ├── formRules.ts │ │ ├── formatTime.ts │ │ ├── index.ts │ │ ├── is.ts │ │ ├── jsencrypt.ts │ │ ├── permission.ts │ │ ├── propTypes.ts │ │ ├── routerHelper.ts │ │ ├── tree.ts │ │ └── tsxHelper.ts │ └── views │ │ ├── Error │ │ ├── 403.vue │ │ ├── 404.vue │ │ └── 500.vue │ │ ├── Home │ │ ├── Index.vue │ │ ├── Index2.vue │ │ ├── echarts-data.ts │ │ └── types.ts │ │ ├── Login │ │ ├── Login.vue │ │ └── components │ │ │ ├── LoginForm.vue │ │ │ ├── LoginFormTitle.vue │ │ │ ├── MobileForm.vue │ │ │ ├── QrCodeForm.vue │ │ │ ├── RegisterForm.vue │ │ │ ├── SSOLogin.vue │ │ │ ├── index.ts │ │ │ └── useLogin.ts │ │ ├── Profile │ │ ├── Index.vue │ │ └── components │ │ │ ├── BasicInfo.vue │ │ │ ├── ProfileUser.vue │ │ │ ├── ResetPwd.vue │ │ │ ├── UserAvatar.vue │ │ │ ├── UserSocial.vue │ │ │ └── index.ts │ │ ├── Redirect │ │ └── Redirect.vue │ │ ├── infra │ │ ├── apiAccessLog │ │ │ ├── ApiAccessLogDetail.vue │ │ │ └── index.vue │ │ ├── apiErrorLog │ │ │ ├── ApiErrorLogDetail.vue │ │ │ └── index.vue │ │ ├── build │ │ │ └── index.vue │ │ ├── codegen │ │ │ ├── EditTable.vue │ │ │ ├── ImportTable.vue │ │ │ ├── PreviewCode.vue │ │ │ ├── components │ │ │ │ ├── BasicInfoForm.vue │ │ │ │ ├── ColumInfoForm.vue │ │ │ │ ├── GenerateInfoForm.vue │ │ │ │ └── index.ts │ │ │ └── index.vue │ │ ├── config │ │ │ ├── ConfigForm.vue │ │ │ └── index.vue │ │ ├── dataSourceConfig │ │ │ ├── DataSourceConfigForm.vue │ │ │ └── index.vue │ │ ├── dbDoc │ │ │ └── index.vue │ │ ├── file │ │ │ ├── FileForm.vue │ │ │ └── index.vue │ │ ├── fileConfig │ │ │ ├── FileConfigForm.vue │ │ │ └── index.vue │ │ ├── job │ │ │ ├── JobDetail.vue │ │ │ ├── JobForm.vue │ │ │ ├── index.vue │ │ │ └── logger │ │ │ │ ├── JobLogDetail.vue │ │ │ │ └── index.vue │ │ ├── redis │ │ │ └── index.vue │ │ ├── server │ │ │ └── index.vue │ │ ├── swagger │ │ │ └── index.vue │ │ ├── testDemo │ │ │ └── index.vue │ │ └── webSocket │ │ │ └── index.vue │ │ ├── point │ │ ├── config │ │ │ ├── ConfigForm.vue │ │ │ └── index.vue │ │ ├── record │ │ │ ├── RecordForm.vue │ │ │ └── index.vue │ │ ├── signInConfig │ │ │ ├── SignInConfigForm.vue │ │ │ └── index.vue │ │ └── signInRecord │ │ │ ├── SignInRecordForm.vue │ │ │ └── index.vue │ │ ├── report │ │ ├── goview │ │ │ └── index.vue │ │ └── jmreport │ │ │ └── index.vue │ │ └── system │ │ ├── area │ │ ├── AreaForm.vue │ │ └── index.vue │ │ ├── dept │ │ ├── DeptForm.vue │ │ └── index.vue │ │ ├── dict │ │ ├── DictTypeForm.vue │ │ ├── data │ │ │ ├── DictDataForm.vue │ │ │ └── index.vue │ │ └── index.vue │ │ ├── errorCode │ │ ├── ErrorCodeForm.vue │ │ └── index.vue │ │ ├── loginlog │ │ ├── LoginLogDetail.vue │ │ └── index.vue │ │ ├── mail │ │ ├── account │ │ │ ├── MailAccountDetail.vue │ │ │ ├── MailAccountForm.vue │ │ │ ├── account.data.ts │ │ │ └── index.vue │ │ ├── log │ │ │ ├── MailLogDetail.vue │ │ │ ├── index.vue │ │ │ └── log.data.ts │ │ └── template │ │ │ ├── MailTemplateForm.vue │ │ │ ├── MailTemplateSendForm.vue │ │ │ ├── index.vue │ │ │ └── template.data.ts │ │ ├── menu │ │ ├── MenuForm.vue │ │ └── index.vue │ │ ├── notice │ │ ├── NoticeForm.vue │ │ └── index.vue │ │ ├── notify │ │ ├── message │ │ │ ├── NotifyMessageDetail.vue │ │ │ └── index.vue │ │ ├── my │ │ │ ├── MyNotifyMessageDetail.vue │ │ │ └── index.vue │ │ └── template │ │ │ ├── NotifyTemplateForm.vue │ │ │ ├── NotifyTemplateSendForm.vue │ │ │ └── index.vue │ │ ├── oauth2 │ │ ├── client │ │ │ ├── ClientForm.vue │ │ │ └── index.vue │ │ └── token │ │ │ └── index.vue │ │ ├── operatelog │ │ ├── OperateLogDetail.vue │ │ └── index.vue │ │ ├── post │ │ ├── PostForm.vue │ │ └── index.vue │ │ ├── role │ │ ├── RoleAssignMenuForm.vue │ │ ├── RoleDataPermissionForm.vue │ │ ├── RoleForm.vue │ │ └── index.vue │ │ ├── sensitiveWord │ │ ├── SensitiveWordForm.vue │ │ ├── SensitiveWordTestForm.vue │ │ └── index.vue │ │ ├── sms │ │ ├── channel │ │ │ ├── SmsChannelForm.vue │ │ │ └── index.vue │ │ ├── log │ │ │ ├── SmsLogDetail.vue │ │ │ └── index.vue │ │ └── template │ │ │ ├── SmsTemplateForm.vue │ │ │ ├── SmsTemplateSendForm.vue │ │ │ └── index.vue │ │ └── user │ │ ├── DeptTree.vue │ │ ├── UserAssignRoleForm.vue │ │ ├── UserForm.vue │ │ ├── UserImportForm.vue │ │ └── index.vue ├── stylelint.config.js ├── tsconfig.json ├── types │ ├── components.d.ts │ ├── custom-types.d.ts │ ├── env.d.ts │ ├── global.d.ts │ └── router.d.ts ├── vite.config.ts └── windi.config.ts └── server ├── .env.dev ├── .env.docker ├── .env.local ├── .env.mock ├── .env.prod ├── .env.staging ├── .env.test ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── Dockerfile ├── README.md ├── client ├── socket.io.html └── websocket.html ├── db └── ruoyi-nest.sql ├── docker-compose.yml ├── nest-cli.json ├── package.json ├── src ├── Enum │ └── Global.ts ├── app.controller.ts ├── app.module.ts ├── app.service.ts ├── common │ ├── config │ │ └── config.ts │ ├── constants │ │ ├── colorList.constants.ts │ │ ├── decorator.contants.ts │ │ └── error.constants.ts │ ├── decorators │ │ ├── hasPermission.decorator.ts │ │ ├── keep.decorator.ts │ │ └── skipAuth.decorator.ts │ ├── model │ │ └── files.model.ts │ ├── result-beans │ │ ├── File.ts │ │ ├── Pagination.ts │ │ ├── ResponseFile.ts │ │ ├── Result.ts │ │ ├── ResultBase.ts │ │ ├── ResultPagination.ts │ │ └── rsp │ │ │ └── DeptOption.ts │ └── utils │ │ ├── loadModules.ts │ │ ├── utils.ts │ │ └── wechatUtils.ts ├── config │ └── configuration.ts ├── dto │ ├── UserDto.ts │ ├── activityDto.ts │ ├── commonDto.ts │ ├── emailDto.ts │ ├── loginDto.ts │ ├── menuDto.ts │ ├── noticeDto.ts │ ├── propsDto.ts │ ├── roleDto.ts │ ├── status.dto.ts │ ├── system │ │ ├── adminDto.ts │ │ ├── assignRoleMenuDto.ts │ │ ├── assignUserRoleDto.ts │ │ ├── deptDto.ts │ │ ├── dictDataPageDto.ts │ │ ├── dictTypePageDto.ts │ │ ├── mailDto.ts │ │ └── notifyDto.ts │ ├── tenantDto.ts │ ├── tenantPackageDto.ts │ ├── userPageDto.ts │ ├── wechat-login.dto.ts │ └── wxUser.dto.ts ├── entity │ ├── common │ │ ├── baseEntity.ts │ │ ├── baseIntegerEntity.ts │ │ ├── baseIntegerNoTenantIdEntity.ts │ │ └── baseNoTenantIdEntity.ts │ ├── file │ │ ├── fileConfigEntity.ts │ │ ├── fileContentEntity.ts │ │ └── fileEntity.ts │ ├── game │ │ ├── activityEntity.ts │ │ ├── emailEntity.ts │ │ ├── playerEntity.ts │ │ └── propsEntity.ts │ └── system │ │ ├── adminEntity.ts │ │ ├── deptEntity.ts │ │ ├── dictDataEntity.ts │ │ ├── dictTypeEntity.ts │ │ ├── mailAcountEntity.ts │ │ ├── mailLogEntity.ts │ │ ├── mailTemplateEntity.ts │ │ ├── menuEntity.ts │ │ ├── noticeEntity.ts │ │ ├── notifyMessageEntity.ts │ │ ├── notifyTemplateEntity.ts │ │ ├── operationLogEntity.ts │ │ ├── postEntity.ts │ │ ├── roleEntity.ts │ │ ├── roleMenuEntity.ts │ │ ├── sensitiveEntity.ts │ │ ├── smsChannelEntity.ts │ │ ├── smsCodeEntity.ts │ │ ├── smsLogEntity.ts │ │ ├── smsTemplateEntity.ts │ │ ├── tenantEntity.ts │ │ ├── tenantPackageEntity.ts │ │ └── userRoleEntity.ts ├── extend │ └── helper.ts ├── filters │ ├── http-exception.filter.ts │ └── ws-exception.filter.ts ├── guards │ ├── jwt-auth.guard.ts │ ├── local-auth.guard.ts │ └── permissions.guard.ts ├── interceptors │ ├── api-transform.interceptor.ts │ └── tenant.interceptor.ts ├── interface │ └── user.interface.ts ├── main.ts ├── middleware │ ├── addParam.middleware.ts │ ├── logger.middleware.ts │ └── server-mode.middleware.ts ├── module │ ├── admin │ │ ├── admin.module.ts │ │ ├── files │ │ │ └── files.controller.ts │ │ ├── schedule │ │ │ └── schedule.controller.ts │ │ └── system │ │ │ ├── auth │ │ │ └── auth.controller.ts │ │ │ ├── dept │ │ │ └── dept.controller.ts │ │ │ ├── dict │ │ │ ├── dictData.controller.ts │ │ │ └── dictType.controller.ts │ │ │ ├── mail │ │ │ ├── mailAccount.controller.ts │ │ │ ├── mailLog.controller.ts │ │ │ └── mailTemplate.controller.ts │ │ │ ├── menu │ │ │ └── menu.controller.ts │ │ │ ├── notice │ │ │ ├── notice.controller.ts │ │ │ ├── notifyMessage.controller.ts │ │ │ └── notifyTemplate.controller.ts │ │ │ ├── permission │ │ │ └── permission.controller.ts │ │ │ ├── player │ │ │ └── player.controller.ts │ │ │ ├── post │ │ │ └── post.controller.ts │ │ │ ├── role │ │ │ ├── role.controller.spec.ts │ │ │ └── role.controller.ts │ │ │ ├── sms │ │ │ ├── smsChannel.controller.ts │ │ │ ├── smsLog.controller.ts │ │ │ └── smsTemplate.controller.ts │ │ │ ├── tenant │ │ │ ├── tenant.controller.ts │ │ │ └── tenantPackage.controller.ts │ │ │ └── user │ │ │ └── user.controller.ts │ ├── app │ │ └── user │ │ │ └── app.login.controller.ts │ └── shared │ │ └── shared.module.ts ├── service │ ├── cookie │ │ ├── cookie.service.spec.ts │ │ └── cookie.service.ts │ ├── file │ │ └── file.service.ts │ ├── logger │ │ └── logger.service.ts │ ├── props │ │ └── props.service.ts │ ├── redis │ │ ├── cache.service.spec.ts │ │ └── redis.service.ts │ ├── schedule │ │ └── schedule.service.ts │ ├── system │ │ ├── admin │ │ │ └── admin.service.ts │ │ ├── auth │ │ │ └── auth.service.ts │ │ ├── dept │ │ │ └── dept.service.ts │ │ ├── dict │ │ │ └── dict.service.ts │ │ ├── email │ │ │ └── email.service.ts │ │ ├── mail │ │ │ ├── mailAccount.service.ts │ │ │ ├── mailLog.service.ts │ │ │ └── mailTemplate.service.ts │ │ ├── menu │ │ │ └── menu.service.ts │ │ ├── notice │ │ │ ├── notice.service.ts │ │ │ ├── notifyMessage.service.ts │ │ │ └── notifyTemplate.service.ts │ │ ├── permission │ │ │ └── permission.service.ts │ │ ├── role │ │ │ ├── role.service.spec.ts │ │ │ └── role.service.ts │ │ └── tenant │ │ │ ├── tenant.service.ts │ │ │ └── tenantPackage.service.ts │ ├── tools │ │ └── tools.service.ts │ └── user │ │ └── user.service.ts ├── strategy │ ├── jwt.strategy.ts │ └── local.strategy.ts └── tasks │ ├── tasks.module.ts │ └── tasks.service.ts ├── test ├── app.e2e-spec.ts └── jest-e2e.json ├── tsconfig.build.json ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/README.md -------------------------------------------------------------------------------- /admin/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/.editorconfig -------------------------------------------------------------------------------- /admin/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/.env -------------------------------------------------------------------------------- /admin/.env.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/.env.base -------------------------------------------------------------------------------- /admin/.env.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/.env.dev -------------------------------------------------------------------------------- /admin/.env.front: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/.env.front -------------------------------------------------------------------------------- /admin/.env.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/.env.pro -------------------------------------------------------------------------------- /admin/.env.stage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/.env.stage -------------------------------------------------------------------------------- /admin/.env.static: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/.env.static -------------------------------------------------------------------------------- /admin/.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/.env.test -------------------------------------------------------------------------------- /admin/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/.eslintignore -------------------------------------------------------------------------------- /admin/.eslintrc-auto-import.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/.eslintrc-auto-import.json -------------------------------------------------------------------------------- /admin/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/.eslintrc.js -------------------------------------------------------------------------------- /admin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/.gitignore -------------------------------------------------------------------------------- /admin/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/.prettierignore -------------------------------------------------------------------------------- /admin/.stylelintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/.stylelintignore -------------------------------------------------------------------------------- /admin/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/.vscode/extensions.json -------------------------------------------------------------------------------- /admin/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/.vscode/launch.json -------------------------------------------------------------------------------- /admin/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/.vscode/settings.json -------------------------------------------------------------------------------- /admin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/LICENSE -------------------------------------------------------------------------------- /admin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/README.md -------------------------------------------------------------------------------- /admin/build/vite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/build/vite/index.ts -------------------------------------------------------------------------------- /admin/build/vite/optimize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/build/vite/optimize.ts -------------------------------------------------------------------------------- /admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/index.html -------------------------------------------------------------------------------- /admin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/package.json -------------------------------------------------------------------------------- /admin/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/postcss.config.js -------------------------------------------------------------------------------- /admin/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/prettier.config.js -------------------------------------------------------------------------------- /admin/preview/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/preview/home.png -------------------------------------------------------------------------------- /admin/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/public/favicon.ico -------------------------------------------------------------------------------- /admin/public/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/public/logo.gif -------------------------------------------------------------------------------- /admin/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/App.vue -------------------------------------------------------------------------------- /admin/src/api/bpm/activity/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/bpm/activity/index.ts -------------------------------------------------------------------------------- /admin/src/api/bpm/definition/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/bpm/definition/index.ts -------------------------------------------------------------------------------- /admin/src/api/bpm/form/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/bpm/form/index.ts -------------------------------------------------------------------------------- /admin/src/api/bpm/leave/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/bpm/leave/index.ts -------------------------------------------------------------------------------- /admin/src/api/bpm/model/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/bpm/model/index.ts -------------------------------------------------------------------------------- /admin/src/api/bpm/processInstance/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/bpm/processInstance/index.ts -------------------------------------------------------------------------------- /admin/src/api/bpm/task/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/bpm/task/index.ts -------------------------------------------------------------------------------- /admin/src/api/bpm/taskAssignRule/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/bpm/taskAssignRule/index.ts -------------------------------------------------------------------------------- /admin/src/api/bpm/userGroup/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/bpm/userGroup/index.ts -------------------------------------------------------------------------------- /admin/src/api/dto/dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/dto/dto.ts -------------------------------------------------------------------------------- /admin/src/api/infra/apiAccessLog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/infra/apiAccessLog/index.ts -------------------------------------------------------------------------------- /admin/src/api/infra/apiErrorLog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/infra/apiErrorLog/index.ts -------------------------------------------------------------------------------- /admin/src/api/infra/codegen/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/infra/codegen/index.ts -------------------------------------------------------------------------------- /admin/src/api/infra/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/infra/config/index.ts -------------------------------------------------------------------------------- /admin/src/api/infra/dataSourceConfig/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/infra/dataSourceConfig/index.ts -------------------------------------------------------------------------------- /admin/src/api/infra/dbDoc/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/infra/dbDoc/index.ts -------------------------------------------------------------------------------- /admin/src/api/infra/file/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/infra/file/index.ts -------------------------------------------------------------------------------- /admin/src/api/infra/fileConfig/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/infra/fileConfig/index.ts -------------------------------------------------------------------------------- /admin/src/api/infra/job/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/infra/job/index.ts -------------------------------------------------------------------------------- /admin/src/api/infra/jobLog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/infra/jobLog/index.ts -------------------------------------------------------------------------------- /admin/src/api/infra/redis/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/infra/redis/index.ts -------------------------------------------------------------------------------- /admin/src/api/infra/redis/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/infra/redis/types.ts -------------------------------------------------------------------------------- /admin/src/api/login/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/login/index.ts -------------------------------------------------------------------------------- /admin/src/api/login/oauth2/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/login/oauth2/index.ts -------------------------------------------------------------------------------- /admin/src/api/login/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/login/types.ts -------------------------------------------------------------------------------- /admin/src/api/mall/product/brand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/mall/product/brand.ts -------------------------------------------------------------------------------- /admin/src/api/mall/product/category.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/mall/product/category.ts -------------------------------------------------------------------------------- /admin/src/api/mall/product/property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/mall/product/property.ts -------------------------------------------------------------------------------- /admin/src/api/mall/product/spu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/mall/product/spu.ts -------------------------------------------------------------------------------- /admin/src/api/mall/trade/delivery/express/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/mall/trade/delivery/express/index.ts -------------------------------------------------------------------------------- /admin/src/api/mall/trade/delivery/expressTemplate/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/mall/trade/delivery/expressTemplate/index.ts -------------------------------------------------------------------------------- /admin/src/api/mp/account/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/mp/account/index.ts -------------------------------------------------------------------------------- /admin/src/api/mp/autoReply/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/mp/autoReply/index.ts -------------------------------------------------------------------------------- /admin/src/api/mp/draft/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/mp/draft/index.ts -------------------------------------------------------------------------------- /admin/src/api/mp/freePublish/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/mp/freePublish/index.ts -------------------------------------------------------------------------------- /admin/src/api/mp/material/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/mp/material/index.ts -------------------------------------------------------------------------------- /admin/src/api/mp/menu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/mp/menu/index.ts -------------------------------------------------------------------------------- /admin/src/api/mp/message/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/mp/message/index.ts -------------------------------------------------------------------------------- /admin/src/api/mp/statistics/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/mp/statistics/index.ts -------------------------------------------------------------------------------- /admin/src/api/mp/tag/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/mp/tag/index.ts -------------------------------------------------------------------------------- /admin/src/api/mp/user/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/mp/user/index.ts -------------------------------------------------------------------------------- /admin/src/api/pay/app/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/pay/app/index.ts -------------------------------------------------------------------------------- /admin/src/api/pay/channel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/pay/channel/index.ts -------------------------------------------------------------------------------- /admin/src/api/pay/merchant/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/pay/merchant/index.ts -------------------------------------------------------------------------------- /admin/src/api/pay/order/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/pay/order/index.ts -------------------------------------------------------------------------------- /admin/src/api/pay/refund/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/pay/refund/index.ts -------------------------------------------------------------------------------- /admin/src/api/point/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/point/config/index.ts -------------------------------------------------------------------------------- /admin/src/api/point/record/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/point/record/index.ts -------------------------------------------------------------------------------- /admin/src/api/point/signInConfig/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/point/signInConfig/index.ts -------------------------------------------------------------------------------- /admin/src/api/point/signInRecord/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/point/signInRecord/index.ts -------------------------------------------------------------------------------- /admin/src/api/system/area/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/system/area/index.ts -------------------------------------------------------------------------------- /admin/src/api/system/dept/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/system/dept/index.ts -------------------------------------------------------------------------------- /admin/src/api/system/dict/dict.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/system/dict/dict.data.ts -------------------------------------------------------------------------------- /admin/src/api/system/dict/dict.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/system/dict/dict.type.ts -------------------------------------------------------------------------------- /admin/src/api/system/errorCode/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/system/errorCode/index.ts -------------------------------------------------------------------------------- /admin/src/api/system/loginLog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/system/loginLog/index.ts -------------------------------------------------------------------------------- /admin/src/api/system/mail/account/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/system/mail/account/index.ts -------------------------------------------------------------------------------- /admin/src/api/system/mail/log/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/system/mail/log/index.ts -------------------------------------------------------------------------------- /admin/src/api/system/mail/template/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/system/mail/template/index.ts -------------------------------------------------------------------------------- /admin/src/api/system/menu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/system/menu/index.ts -------------------------------------------------------------------------------- /admin/src/api/system/notice/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/system/notice/index.ts -------------------------------------------------------------------------------- /admin/src/api/system/notify/message/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/system/notify/message/index.ts -------------------------------------------------------------------------------- /admin/src/api/system/notify/template/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/system/notify/template/index.ts -------------------------------------------------------------------------------- /admin/src/api/system/oauth2/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/system/oauth2/client.ts -------------------------------------------------------------------------------- /admin/src/api/system/oauth2/token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/system/oauth2/token.ts -------------------------------------------------------------------------------- /admin/src/api/system/operatelog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/system/operatelog/index.ts -------------------------------------------------------------------------------- /admin/src/api/system/permission/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/system/permission/index.ts -------------------------------------------------------------------------------- /admin/src/api/system/post/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/system/post/index.ts -------------------------------------------------------------------------------- /admin/src/api/system/role/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/system/role/index.ts -------------------------------------------------------------------------------- /admin/src/api/system/sensitiveWord/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/system/sensitiveWord/index.ts -------------------------------------------------------------------------------- /admin/src/api/system/sms/smsChannel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/system/sms/smsChannel/index.ts -------------------------------------------------------------------------------- /admin/src/api/system/sms/smsLog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/system/sms/smsLog/index.ts -------------------------------------------------------------------------------- /admin/src/api/system/sms/smsTemplate/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/system/sms/smsTemplate/index.ts -------------------------------------------------------------------------------- /admin/src/api/system/user/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/system/user/index.ts -------------------------------------------------------------------------------- /admin/src/api/system/user/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/system/user/profile.ts -------------------------------------------------------------------------------- /admin/src/api/system/user/socialUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/api/system/user/socialUser.ts -------------------------------------------------------------------------------- /admin/src/assets/imgs/avatar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/assets/imgs/avatar.gif -------------------------------------------------------------------------------- /admin/src/assets/imgs/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/assets/imgs/avatar.jpg -------------------------------------------------------------------------------- /admin/src/assets/imgs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/assets/imgs/logo.png -------------------------------------------------------------------------------- /admin/src/assets/imgs/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/assets/imgs/profile.jpg -------------------------------------------------------------------------------- /admin/src/assets/imgs/wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/assets/imgs/wechat.png -------------------------------------------------------------------------------- /admin/src/assets/svgs/403.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/assets/svgs/403.svg -------------------------------------------------------------------------------- /admin/src/assets/svgs/404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/assets/svgs/404.svg -------------------------------------------------------------------------------- /admin/src/assets/svgs/500.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/assets/svgs/500.svg -------------------------------------------------------------------------------- /admin/src/assets/svgs/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/assets/svgs/icon.svg -------------------------------------------------------------------------------- /admin/src/assets/svgs/login-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/assets/svgs/login-bg.svg -------------------------------------------------------------------------------- /admin/src/assets/svgs/login-box-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/assets/svgs/login-box-bg.svg -------------------------------------------------------------------------------- /admin/src/assets/svgs/message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/assets/svgs/message.svg -------------------------------------------------------------------------------- /admin/src/assets/svgs/money.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/assets/svgs/money.svg -------------------------------------------------------------------------------- /admin/src/assets/svgs/peoples.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/assets/svgs/peoples.svg -------------------------------------------------------------------------------- /admin/src/assets/svgs/shopping.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/assets/svgs/shopping.svg -------------------------------------------------------------------------------- /admin/src/components/Backtop/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Backtop/index.ts -------------------------------------------------------------------------------- /admin/src/components/Backtop/src/Backtop.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Backtop/src/Backtop.vue -------------------------------------------------------------------------------- /admin/src/components/ConfigGlobal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/ConfigGlobal/index.ts -------------------------------------------------------------------------------- /admin/src/components/ConfigGlobal/src/ConfigGlobal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/ConfigGlobal/src/ConfigGlobal.vue -------------------------------------------------------------------------------- /admin/src/components/ContentDetailWrap/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/ContentDetailWrap/index.ts -------------------------------------------------------------------------------- /admin/src/components/ContentDetailWrap/src/ContentDetailWrap.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/ContentDetailWrap/src/ContentDetailWrap.vue -------------------------------------------------------------------------------- /admin/src/components/ContentWrap/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/ContentWrap/index.ts -------------------------------------------------------------------------------- /admin/src/components/ContentWrap/src/ContentWrap.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/ContentWrap/src/ContentWrap.vue -------------------------------------------------------------------------------- /admin/src/components/CountTo/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/CountTo/index.ts -------------------------------------------------------------------------------- /admin/src/components/CountTo/src/CountTo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/CountTo/src/CountTo.vue -------------------------------------------------------------------------------- /admin/src/components/Crontab/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Crontab/index.ts -------------------------------------------------------------------------------- /admin/src/components/Crontab/src/Crontab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Crontab/src/Crontab.vue -------------------------------------------------------------------------------- /admin/src/components/Cropper/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Cropper/index.ts -------------------------------------------------------------------------------- /admin/src/components/Cropper/src/CopperModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Cropper/src/CopperModal.vue -------------------------------------------------------------------------------- /admin/src/components/Cropper/src/Cropper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Cropper/src/Cropper.vue -------------------------------------------------------------------------------- /admin/src/components/Cropper/src/CropperAvatar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Cropper/src/CropperAvatar.vue -------------------------------------------------------------------------------- /admin/src/components/Cropper/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Cropper/src/types.ts -------------------------------------------------------------------------------- /admin/src/components/Descriptions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Descriptions/index.ts -------------------------------------------------------------------------------- /admin/src/components/Descriptions/src/Descriptions.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Descriptions/src/Descriptions.vue -------------------------------------------------------------------------------- /admin/src/components/Dialog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Dialog/index.ts -------------------------------------------------------------------------------- /admin/src/components/Dialog/src/Dialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Dialog/src/Dialog.vue -------------------------------------------------------------------------------- /admin/src/components/DictTag/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/DictTag/index.ts -------------------------------------------------------------------------------- /admin/src/components/DictTag/src/DictTag.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/DictTag/src/DictTag.vue -------------------------------------------------------------------------------- /admin/src/components/DocAlert/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/DocAlert/index.vue -------------------------------------------------------------------------------- /admin/src/components/Echart/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Echart/index.ts -------------------------------------------------------------------------------- /admin/src/components/Echart/src/Echart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Echart/src/Echart.vue -------------------------------------------------------------------------------- /admin/src/components/Editor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Editor/index.ts -------------------------------------------------------------------------------- /admin/src/components/Editor/src/Editor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Editor/src/Editor.vue -------------------------------------------------------------------------------- /admin/src/components/Error/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Error/index.ts -------------------------------------------------------------------------------- /admin/src/components/Error/src/Error.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Error/src/Error.vue -------------------------------------------------------------------------------- /admin/src/components/Form/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Form/index.ts -------------------------------------------------------------------------------- /admin/src/components/Form/src/Form.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Form/src/Form.vue -------------------------------------------------------------------------------- /admin/src/components/Form/src/componentMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Form/src/componentMap.ts -------------------------------------------------------------------------------- /admin/src/components/Form/src/components/useRenderCheckbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Form/src/components/useRenderCheckbox.tsx -------------------------------------------------------------------------------- /admin/src/components/Form/src/components/useRenderRadio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Form/src/components/useRenderRadio.tsx -------------------------------------------------------------------------------- /admin/src/components/Form/src/components/useRenderSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Form/src/components/useRenderSelect.tsx -------------------------------------------------------------------------------- /admin/src/components/Form/src/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Form/src/helper.ts -------------------------------------------------------------------------------- /admin/src/components/Form/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Form/src/types.ts -------------------------------------------------------------------------------- /admin/src/components/Highlight/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Highlight/index.ts -------------------------------------------------------------------------------- /admin/src/components/Highlight/src/Highlight.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Highlight/src/Highlight.vue -------------------------------------------------------------------------------- /admin/src/components/IFrame/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/IFrame/index.ts -------------------------------------------------------------------------------- /admin/src/components/IFrame/src/IFrame.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/IFrame/src/IFrame.vue -------------------------------------------------------------------------------- /admin/src/components/Icon/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Icon/index.ts -------------------------------------------------------------------------------- /admin/src/components/Icon/src/Icon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Icon/src/Icon.vue -------------------------------------------------------------------------------- /admin/src/components/Icon/src/IconSelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Icon/src/IconSelect.vue -------------------------------------------------------------------------------- /admin/src/components/Icon/src/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Icon/src/data.ts -------------------------------------------------------------------------------- /admin/src/components/ImageViewer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/ImageViewer/index.ts -------------------------------------------------------------------------------- /admin/src/components/ImageViewer/src/ImageViewer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/ImageViewer/src/ImageViewer.vue -------------------------------------------------------------------------------- /admin/src/components/ImageViewer/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/ImageViewer/src/types.ts -------------------------------------------------------------------------------- /admin/src/components/Infotip/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Infotip/index.ts -------------------------------------------------------------------------------- /admin/src/components/Infotip/src/Infotip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Infotip/src/Infotip.vue -------------------------------------------------------------------------------- /admin/src/components/InputPassword/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/InputPassword/index.ts -------------------------------------------------------------------------------- /admin/src/components/InputPassword/src/InputPassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/InputPassword/src/InputPassword.vue -------------------------------------------------------------------------------- /admin/src/components/Pagination/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Pagination/index.vue -------------------------------------------------------------------------------- /admin/src/components/Qrcode/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Qrcode/index.ts -------------------------------------------------------------------------------- /admin/src/components/Qrcode/src/Qrcode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Qrcode/src/Qrcode.vue -------------------------------------------------------------------------------- /admin/src/components/RouterSearch/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/RouterSearch/index.vue -------------------------------------------------------------------------------- /admin/src/components/Search/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Search/index.ts -------------------------------------------------------------------------------- /admin/src/components/Search/src/Search.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Search/src/Search.vue -------------------------------------------------------------------------------- /admin/src/components/Sticky/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Sticky/index.ts -------------------------------------------------------------------------------- /admin/src/components/Sticky/src/Sticky.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Sticky/src/Sticky.vue -------------------------------------------------------------------------------- /admin/src/components/Table/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Table/index.ts -------------------------------------------------------------------------------- /admin/src/components/Table/src/Table.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Table/src/Table.vue -------------------------------------------------------------------------------- /admin/src/components/Table/src/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Table/src/helper.ts -------------------------------------------------------------------------------- /admin/src/components/Table/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Table/src/types.ts -------------------------------------------------------------------------------- /admin/src/components/Tooltip/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Tooltip/index.ts -------------------------------------------------------------------------------- /admin/src/components/Tooltip/src/Tooltip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Tooltip/src/Tooltip.vue -------------------------------------------------------------------------------- /admin/src/components/UploadFile/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/UploadFile/index.ts -------------------------------------------------------------------------------- /admin/src/components/UploadFile/src/UploadFile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/UploadFile/src/UploadFile.vue -------------------------------------------------------------------------------- /admin/src/components/UploadFile/src/UploadImg.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/UploadFile/src/UploadImg.vue -------------------------------------------------------------------------------- /admin/src/components/UploadFile/src/UploadImgs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/UploadFile/src/UploadImgs.vue -------------------------------------------------------------------------------- /admin/src/components/Verifition/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Verifition/index.ts -------------------------------------------------------------------------------- /admin/src/components/Verifition/src/Verify.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Verifition/src/Verify.vue -------------------------------------------------------------------------------- /admin/src/components/Verifition/src/Verify/VerifyPoints.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Verifition/src/Verify/VerifyPoints.vue -------------------------------------------------------------------------------- /admin/src/components/Verifition/src/Verify/VerifySlide.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Verifition/src/Verify/VerifySlide.vue -------------------------------------------------------------------------------- /admin/src/components/Verifition/src/Verify/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Verifition/src/Verify/index.ts -------------------------------------------------------------------------------- /admin/src/components/Verifition/src/utils/ase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Verifition/src/utils/ase.ts -------------------------------------------------------------------------------- /admin/src/components/Verifition/src/utils/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/Verifition/src/utils/util.ts -------------------------------------------------------------------------------- /admin/src/components/XButton/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/XButton/index.ts -------------------------------------------------------------------------------- /admin/src/components/XButton/src/XButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/XButton/src/XButton.vue -------------------------------------------------------------------------------- /admin/src/components/XButton/src/XTextButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/XButton/src/XTextButton.vue -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/package/designer/ProcessDesigner.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/package/designer/ProcessDesigner.vue -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/package/designer/ProcessViewer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/package/designer/ProcessViewer.vue -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/package/designer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/package/designer/index.ts -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/package/designer/index2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/package/designer/index2.ts -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/package/designer/plugins/content-pad/contentPadProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/package/designer/plugins/content-pad/contentPadProvider.js -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/package/designer/plugins/content-pad/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/package/designer/plugins/content-pad/index.js -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/package/designer/plugins/defaultEmpty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/package/designer/plugins/defaultEmpty.js -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/package/designer/plugins/descriptor/activitiDescriptor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/package/designer/plugins/descriptor/activitiDescriptor.json -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/package/designer/plugins/descriptor/camundaDescriptor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/package/designer/plugins/descriptor/camundaDescriptor.json -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/package/designer/plugins/descriptor/flowableDescriptor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/package/designer/plugins/descriptor/flowableDescriptor.json -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/package/designer/plugins/extension-moddle/activiti/activitiExtension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/package/designer/plugins/extension-moddle/activiti/activitiExtension.js -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/package/designer/plugins/extension-moddle/activiti/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/package/designer/plugins/extension-moddle/activiti/index.js -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/package/designer/plugins/extension-moddle/camunda/extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/package/designer/plugins/extension-moddle/camunda/extension.js -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/package/designer/plugins/extension-moddle/camunda/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/package/designer/plugins/extension-moddle/camunda/index.js -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/package/designer/plugins/extension-moddle/flowable/flowableExtension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/package/designer/plugins/extension-moddle/flowable/flowableExtension.js -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/package/designer/plugins/extension-moddle/flowable/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/package/designer/plugins/extension-moddle/flowable/index.js -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/package/designer/plugins/palette/CustomPalette.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/package/designer/plugins/palette/CustomPalette.js -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/package/designer/plugins/palette/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/package/designer/plugins/palette/index.js -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/package/designer/plugins/palette/paletteProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/package/designer/plugins/palette/paletteProvider.js -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/package/designer/plugins/translate/customTranslate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/package/designer/plugins/translate/customTranslate.js -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/package/designer/plugins/translate/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/package/designer/plugins/translate/zh.js -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/package/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/package/index.ts -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/package/palette/ProcessPalette.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/package/palette/ProcessPalette.vue -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/package/penal/PropertiesPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/package/penal/PropertiesPanel.vue -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/package/penal/base/ElementBaseInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/package/penal/base/ElementBaseInfo.vue -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/package/penal/flow-condition/FlowCondition.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/package/penal/flow-condition/FlowCondition.vue -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/package/penal/form/ElementForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/package/penal/form/ElementForm.vue -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/package/penal/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/package/penal/index.js -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/package/penal/listeners/ElementListeners.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/package/penal/listeners/ElementListeners.vue -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/package/penal/listeners/UserTaskListeners.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/package/penal/listeners/UserTaskListeners.vue -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/package/penal/listeners/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/package/penal/listeners/template.js -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/package/penal/listeners/utilSelf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/package/penal/listeners/utilSelf.ts -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/package/penal/multi-instance/ElementMultiInstance.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/package/penal/multi-instance/ElementMultiInstance.vue -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/package/penal/other/ElementOtherConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/package/penal/other/ElementOtherConfig.vue -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/package/penal/properties/ElementProperties.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/package/penal/properties/ElementProperties.vue -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/package/penal/signal-message/SignalAndMessage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/package/penal/signal-message/SignalAndMessage.vue -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/package/penal/task/ElementTask.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/package/penal/task/ElementTask.vue -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/package/penal/task/task-components/ReceiveTask.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/package/penal/task/task-components/ReceiveTask.vue -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/package/penal/task/task-components/ScriptTask.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/package/penal/task/task-components/ScriptTask.vue -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/package/penal/task/task-components/UserTask.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/package/penal/task/task-components/UserTask.vue -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/package/theme/element-variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/package/theme/element-variables.scss -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/package/theme/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/package/theme/index.scss -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/package/theme/process-designer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/package/theme/process-designer.scss -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/package/theme/process-panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/package/theme/process-panel.scss -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/package/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/package/utils.ts -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/src/highlight/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/src/highlight/index.js -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/src/modules/custom-renderer/CustomRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/src/modules/custom-renderer/CustomRenderer.js -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/src/modules/custom-renderer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/src/modules/custom-renderer/index.js -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/src/modules/rules/CustomRules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/src/modules/rules/CustomRules.js -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/src/modules/rules/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/src/modules/rules/index.js -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/src/translations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/src/translations.ts -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/src/utils/directive/clickOutSide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/src/utils/directive/clickOutSide.js -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/src/utils/index.js -------------------------------------------------------------------------------- /admin/src/components/bpmnProcessDesigner/src/utils/xml2json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/bpmnProcessDesigner/src/utils/xml2json.js -------------------------------------------------------------------------------- /admin/src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/components/index.ts -------------------------------------------------------------------------------- /admin/src/config/axios/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/config/axios/config.ts -------------------------------------------------------------------------------- /admin/src/config/axios/errorCode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/config/axios/errorCode.ts -------------------------------------------------------------------------------- /admin/src/config/axios/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/config/axios/index.ts -------------------------------------------------------------------------------- /admin/src/config/axios/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/config/axios/service.ts -------------------------------------------------------------------------------- /admin/src/directives/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/directives/index.ts -------------------------------------------------------------------------------- /admin/src/directives/permission/hasPermi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/directives/permission/hasPermi.ts -------------------------------------------------------------------------------- /admin/src/directives/permission/hasRole.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/directives/permission/hasRole.ts -------------------------------------------------------------------------------- /admin/src/hooks/event/useScrollTo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/hooks/event/useScrollTo.ts -------------------------------------------------------------------------------- /admin/src/hooks/web/useCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/hooks/web/useCache.ts -------------------------------------------------------------------------------- /admin/src/hooks/web/useConfigGlobal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/hooks/web/useConfigGlobal.ts -------------------------------------------------------------------------------- /admin/src/hooks/web/useCrudSchemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/hooks/web/useCrudSchemas.ts -------------------------------------------------------------------------------- /admin/src/hooks/web/useDesign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/hooks/web/useDesign.ts -------------------------------------------------------------------------------- /admin/src/hooks/web/useEmitt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/hooks/web/useEmitt.ts -------------------------------------------------------------------------------- /admin/src/hooks/web/useForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/hooks/web/useForm.ts -------------------------------------------------------------------------------- /admin/src/hooks/web/useI18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/hooks/web/useI18n.ts -------------------------------------------------------------------------------- /admin/src/hooks/web/useIcon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/hooks/web/useIcon.ts -------------------------------------------------------------------------------- /admin/src/hooks/web/useIntro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/hooks/web/useIntro.ts -------------------------------------------------------------------------------- /admin/src/hooks/web/useLocale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/hooks/web/useLocale.ts -------------------------------------------------------------------------------- /admin/src/hooks/web/useMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/hooks/web/useMessage.ts -------------------------------------------------------------------------------- /admin/src/hooks/web/useNProgress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/hooks/web/useNProgress.ts -------------------------------------------------------------------------------- /admin/src/hooks/web/usePageLoading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/hooks/web/usePageLoading.ts -------------------------------------------------------------------------------- /admin/src/hooks/web/useTable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/hooks/web/useTable.ts -------------------------------------------------------------------------------- /admin/src/hooks/web/useTimeAgo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/hooks/web/useTimeAgo.ts -------------------------------------------------------------------------------- /admin/src/hooks/web/useTitle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/hooks/web/useTitle.ts -------------------------------------------------------------------------------- /admin/src/hooks/web/useValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/hooks/web/useValidator.ts -------------------------------------------------------------------------------- /admin/src/hooks/web/useWatermark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/hooks/web/useWatermark.ts -------------------------------------------------------------------------------- /admin/src/layout/Layout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/layout/Layout.vue -------------------------------------------------------------------------------- /admin/src/layout/components/AppView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/layout/components/AppView.vue -------------------------------------------------------------------------------- /admin/src/layout/components/Breadcrumb/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/layout/components/Breadcrumb/index.ts -------------------------------------------------------------------------------- /admin/src/layout/components/Breadcrumb/src/Breadcrumb.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/layout/components/Breadcrumb/src/Breadcrumb.vue -------------------------------------------------------------------------------- /admin/src/layout/components/Breadcrumb/src/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/layout/components/Breadcrumb/src/helper.ts -------------------------------------------------------------------------------- /admin/src/layout/components/Collapse/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/layout/components/Collapse/index.ts -------------------------------------------------------------------------------- /admin/src/layout/components/Collapse/src/Collapse.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/layout/components/Collapse/src/Collapse.vue -------------------------------------------------------------------------------- /admin/src/layout/components/ContextMenu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/layout/components/ContextMenu/index.ts -------------------------------------------------------------------------------- /admin/src/layout/components/ContextMenu/src/ContextMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/layout/components/ContextMenu/src/ContextMenu.vue -------------------------------------------------------------------------------- /admin/src/layout/components/Footer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/layout/components/Footer/index.ts -------------------------------------------------------------------------------- /admin/src/layout/components/Footer/src/Footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/layout/components/Footer/src/Footer.vue -------------------------------------------------------------------------------- /admin/src/layout/components/LocaleDropdown/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/layout/components/LocaleDropdown/index.ts -------------------------------------------------------------------------------- /admin/src/layout/components/LocaleDropdown/src/LocaleDropdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/layout/components/LocaleDropdown/src/LocaleDropdown.vue -------------------------------------------------------------------------------- /admin/src/layout/components/Logo/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/layout/components/Logo/index.ts -------------------------------------------------------------------------------- /admin/src/layout/components/Logo/src/Logo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/layout/components/Logo/src/Logo.vue -------------------------------------------------------------------------------- /admin/src/layout/components/Menu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/layout/components/Menu/index.ts -------------------------------------------------------------------------------- /admin/src/layout/components/Menu/src/Menu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/layout/components/Menu/src/Menu.vue -------------------------------------------------------------------------------- /admin/src/layout/components/Menu/src/components/useRenderMenuItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/layout/components/Menu/src/components/useRenderMenuItem.tsx -------------------------------------------------------------------------------- /admin/src/layout/components/Menu/src/components/useRenderMenuTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/layout/components/Menu/src/components/useRenderMenuTitle.tsx -------------------------------------------------------------------------------- /admin/src/layout/components/Menu/src/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/layout/components/Menu/src/helper.ts -------------------------------------------------------------------------------- /admin/src/layout/components/Message/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/layout/components/Message/index.ts -------------------------------------------------------------------------------- /admin/src/layout/components/Message/src/Message.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/layout/components/Message/src/Message.vue -------------------------------------------------------------------------------- /admin/src/layout/components/Screenfull/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/layout/components/Screenfull/index.ts -------------------------------------------------------------------------------- /admin/src/layout/components/Screenfull/src/Screenfull.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/layout/components/Screenfull/src/Screenfull.vue -------------------------------------------------------------------------------- /admin/src/layout/components/Setting/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/layout/components/Setting/index.ts -------------------------------------------------------------------------------- /admin/src/layout/components/Setting/src/Setting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/layout/components/Setting/src/Setting.vue -------------------------------------------------------------------------------- /admin/src/layout/components/Setting/src/components/ColorRadioPicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/layout/components/Setting/src/components/ColorRadioPicker.vue -------------------------------------------------------------------------------- /admin/src/layout/components/Setting/src/components/InterfaceDisplay.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/layout/components/Setting/src/components/InterfaceDisplay.vue -------------------------------------------------------------------------------- /admin/src/layout/components/Setting/src/components/LayoutRadioPicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/layout/components/Setting/src/components/LayoutRadioPicker.vue -------------------------------------------------------------------------------- /admin/src/layout/components/SizeDropdown/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/layout/components/SizeDropdown/index.ts -------------------------------------------------------------------------------- /admin/src/layout/components/SizeDropdown/src/SizeDropdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/layout/components/SizeDropdown/src/SizeDropdown.vue -------------------------------------------------------------------------------- /admin/src/layout/components/TabMenu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/layout/components/TabMenu/index.ts -------------------------------------------------------------------------------- /admin/src/layout/components/TabMenu/src/TabMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/layout/components/TabMenu/src/TabMenu.vue -------------------------------------------------------------------------------- /admin/src/layout/components/TabMenu/src/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/layout/components/TabMenu/src/helper.ts -------------------------------------------------------------------------------- /admin/src/layout/components/TagsView/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/layout/components/TagsView/index.ts -------------------------------------------------------------------------------- /admin/src/layout/components/TagsView/src/TagsView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/layout/components/TagsView/src/TagsView.vue -------------------------------------------------------------------------------- /admin/src/layout/components/TagsView/src/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/layout/components/TagsView/src/helper.ts -------------------------------------------------------------------------------- /admin/src/layout/components/ThemeSwitch/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/layout/components/ThemeSwitch/index.ts -------------------------------------------------------------------------------- /admin/src/layout/components/ThemeSwitch/src/ThemeSwitch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/layout/components/ThemeSwitch/src/ThemeSwitch.vue -------------------------------------------------------------------------------- /admin/src/layout/components/ToolHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/layout/components/ToolHeader.vue -------------------------------------------------------------------------------- /admin/src/layout/components/UserInfo/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/layout/components/UserInfo/index.ts -------------------------------------------------------------------------------- /admin/src/layout/components/UserInfo/src/UserInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/layout/components/UserInfo/src/UserInfo.vue -------------------------------------------------------------------------------- /admin/src/layout/components/useRenderLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/layout/components/useRenderLayout.tsx -------------------------------------------------------------------------------- /admin/src/locales/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/locales/en.ts -------------------------------------------------------------------------------- /admin/src/locales/zh-CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/locales/zh-CN.ts -------------------------------------------------------------------------------- /admin/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/main.ts -------------------------------------------------------------------------------- /admin/src/permission.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/permission.ts -------------------------------------------------------------------------------- /admin/src/plugins/animate.css/index.ts: -------------------------------------------------------------------------------- 1 | import 'animate.css' 2 | -------------------------------------------------------------------------------- /admin/src/plugins/echarts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/plugins/echarts/index.ts -------------------------------------------------------------------------------- /admin/src/plugins/elementPlus/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/plugins/elementPlus/index.ts -------------------------------------------------------------------------------- /admin/src/plugins/formCreate/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/plugins/formCreate/index.ts -------------------------------------------------------------------------------- /admin/src/plugins/svgIcon/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/plugins/svgIcon/index.ts -------------------------------------------------------------------------------- /admin/src/plugins/tongji/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/plugins/tongji/index.ts -------------------------------------------------------------------------------- /admin/src/plugins/vueI18n/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/plugins/vueI18n/helper.ts -------------------------------------------------------------------------------- /admin/src/plugins/vueI18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/plugins/vueI18n/index.ts -------------------------------------------------------------------------------- /admin/src/plugins/windi.css/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/plugins/windi.css/index.ts -------------------------------------------------------------------------------- /admin/src/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/router/index.ts -------------------------------------------------------------------------------- /admin/src/router/modules/remaining.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/router/modules/remaining.ts -------------------------------------------------------------------------------- /admin/src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/store/index.ts -------------------------------------------------------------------------------- /admin/src/store/modules/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/store/modules/app.ts -------------------------------------------------------------------------------- /admin/src/store/modules/dict.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/store/modules/dict.ts -------------------------------------------------------------------------------- /admin/src/store/modules/locale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/store/modules/locale.ts -------------------------------------------------------------------------------- /admin/src/store/modules/permission.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/store/modules/permission.ts -------------------------------------------------------------------------------- /admin/src/store/modules/tagsView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/store/modules/tagsView.ts -------------------------------------------------------------------------------- /admin/src/store/modules/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/store/modules/user.ts -------------------------------------------------------------------------------- /admin/src/styles/global.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/styles/global.module.scss -------------------------------------------------------------------------------- /admin/src/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/styles/index.scss -------------------------------------------------------------------------------- /admin/src/styles/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/styles/theme.scss -------------------------------------------------------------------------------- /admin/src/styles/var.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/styles/var.css -------------------------------------------------------------------------------- /admin/src/styles/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/styles/variables.scss -------------------------------------------------------------------------------- /admin/src/types/components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/types/components.d.ts -------------------------------------------------------------------------------- /admin/src/types/configGlobal.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/types/configGlobal.d.ts -------------------------------------------------------------------------------- /admin/src/types/contextMenu.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/types/contextMenu.d.ts -------------------------------------------------------------------------------- /admin/src/types/descriptions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/types/descriptions.d.ts -------------------------------------------------------------------------------- /admin/src/types/elementPlus.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/types/elementPlus.d.ts -------------------------------------------------------------------------------- /admin/src/types/form.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/types/form.d.ts -------------------------------------------------------------------------------- /admin/src/types/icon.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/types/icon.d.ts -------------------------------------------------------------------------------- /admin/src/types/infoTip.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/types/infoTip.d.ts -------------------------------------------------------------------------------- /admin/src/types/layout.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/types/layout.d.ts -------------------------------------------------------------------------------- /admin/src/types/localeDropdown.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/types/localeDropdown.d.ts -------------------------------------------------------------------------------- /admin/src/types/qrcode.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/types/qrcode.d.ts -------------------------------------------------------------------------------- /admin/src/types/table.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/types/table.d.ts -------------------------------------------------------------------------------- /admin/src/types/theme.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/types/theme.d.ts -------------------------------------------------------------------------------- /admin/src/utils/Logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/utils/Logger.ts -------------------------------------------------------------------------------- /admin/src/utils/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/utils/auth.ts -------------------------------------------------------------------------------- /admin/src/utils/color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/utils/color.ts -------------------------------------------------------------------------------- /admin/src/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/utils/constants.ts -------------------------------------------------------------------------------- /admin/src/utils/dict.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/utils/dict.ts -------------------------------------------------------------------------------- /admin/src/utils/domUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/utils/domUtils.ts -------------------------------------------------------------------------------- /admin/src/utils/download.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/utils/download.ts -------------------------------------------------------------------------------- /admin/src/utils/filt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/utils/filt.ts -------------------------------------------------------------------------------- /admin/src/utils/formCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/utils/formCreate.ts -------------------------------------------------------------------------------- /admin/src/utils/formRules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/utils/formRules.ts -------------------------------------------------------------------------------- /admin/src/utils/formatTime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/utils/formatTime.ts -------------------------------------------------------------------------------- /admin/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/utils/index.ts -------------------------------------------------------------------------------- /admin/src/utils/is.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/utils/is.ts -------------------------------------------------------------------------------- /admin/src/utils/jsencrypt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/utils/jsencrypt.ts -------------------------------------------------------------------------------- /admin/src/utils/permission.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/utils/permission.ts -------------------------------------------------------------------------------- /admin/src/utils/propTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/utils/propTypes.ts -------------------------------------------------------------------------------- /admin/src/utils/routerHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/utils/routerHelper.ts -------------------------------------------------------------------------------- /admin/src/utils/tree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/utils/tree.ts -------------------------------------------------------------------------------- /admin/src/utils/tsxHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/utils/tsxHelper.ts -------------------------------------------------------------------------------- /admin/src/views/Error/403.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/Error/403.vue -------------------------------------------------------------------------------- /admin/src/views/Error/404.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/Error/404.vue -------------------------------------------------------------------------------- /admin/src/views/Error/500.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/Error/500.vue -------------------------------------------------------------------------------- /admin/src/views/Home/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/Home/Index.vue -------------------------------------------------------------------------------- /admin/src/views/Home/Index2.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/Home/Index2.vue -------------------------------------------------------------------------------- /admin/src/views/Home/echarts-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/Home/echarts-data.ts -------------------------------------------------------------------------------- /admin/src/views/Home/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/Home/types.ts -------------------------------------------------------------------------------- /admin/src/views/Login/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/Login/Login.vue -------------------------------------------------------------------------------- /admin/src/views/Login/components/LoginForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/Login/components/LoginForm.vue -------------------------------------------------------------------------------- /admin/src/views/Login/components/LoginFormTitle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/Login/components/LoginFormTitle.vue -------------------------------------------------------------------------------- /admin/src/views/Login/components/MobileForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/Login/components/MobileForm.vue -------------------------------------------------------------------------------- /admin/src/views/Login/components/QrCodeForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/Login/components/QrCodeForm.vue -------------------------------------------------------------------------------- /admin/src/views/Login/components/RegisterForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/Login/components/RegisterForm.vue -------------------------------------------------------------------------------- /admin/src/views/Login/components/SSOLogin.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/Login/components/SSOLogin.vue -------------------------------------------------------------------------------- /admin/src/views/Login/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/Login/components/index.ts -------------------------------------------------------------------------------- /admin/src/views/Login/components/useLogin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/Login/components/useLogin.ts -------------------------------------------------------------------------------- /admin/src/views/Profile/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/Profile/Index.vue -------------------------------------------------------------------------------- /admin/src/views/Profile/components/BasicInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/Profile/components/BasicInfo.vue -------------------------------------------------------------------------------- /admin/src/views/Profile/components/ProfileUser.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/Profile/components/ProfileUser.vue -------------------------------------------------------------------------------- /admin/src/views/Profile/components/ResetPwd.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/Profile/components/ResetPwd.vue -------------------------------------------------------------------------------- /admin/src/views/Profile/components/UserAvatar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/Profile/components/UserAvatar.vue -------------------------------------------------------------------------------- /admin/src/views/Profile/components/UserSocial.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/Profile/components/UserSocial.vue -------------------------------------------------------------------------------- /admin/src/views/Profile/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/Profile/components/index.ts -------------------------------------------------------------------------------- /admin/src/views/Redirect/Redirect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/Redirect/Redirect.vue -------------------------------------------------------------------------------- /admin/src/views/infra/apiAccessLog/ApiAccessLogDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/infra/apiAccessLog/ApiAccessLogDetail.vue -------------------------------------------------------------------------------- /admin/src/views/infra/apiAccessLog/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/infra/apiAccessLog/index.vue -------------------------------------------------------------------------------- /admin/src/views/infra/apiErrorLog/ApiErrorLogDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/infra/apiErrorLog/ApiErrorLogDetail.vue -------------------------------------------------------------------------------- /admin/src/views/infra/apiErrorLog/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/infra/apiErrorLog/index.vue -------------------------------------------------------------------------------- /admin/src/views/infra/build/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/infra/build/index.vue -------------------------------------------------------------------------------- /admin/src/views/infra/codegen/EditTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/infra/codegen/EditTable.vue -------------------------------------------------------------------------------- /admin/src/views/infra/codegen/ImportTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/infra/codegen/ImportTable.vue -------------------------------------------------------------------------------- /admin/src/views/infra/codegen/PreviewCode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/infra/codegen/PreviewCode.vue -------------------------------------------------------------------------------- /admin/src/views/infra/codegen/components/BasicInfoForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/infra/codegen/components/BasicInfoForm.vue -------------------------------------------------------------------------------- /admin/src/views/infra/codegen/components/ColumInfoForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/infra/codegen/components/ColumInfoForm.vue -------------------------------------------------------------------------------- /admin/src/views/infra/codegen/components/GenerateInfoForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/infra/codegen/components/GenerateInfoForm.vue -------------------------------------------------------------------------------- /admin/src/views/infra/codegen/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/infra/codegen/components/index.ts -------------------------------------------------------------------------------- /admin/src/views/infra/codegen/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/infra/codegen/index.vue -------------------------------------------------------------------------------- /admin/src/views/infra/config/ConfigForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/infra/config/ConfigForm.vue -------------------------------------------------------------------------------- /admin/src/views/infra/config/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/infra/config/index.vue -------------------------------------------------------------------------------- /admin/src/views/infra/dataSourceConfig/DataSourceConfigForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/infra/dataSourceConfig/DataSourceConfigForm.vue -------------------------------------------------------------------------------- /admin/src/views/infra/dataSourceConfig/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/infra/dataSourceConfig/index.vue -------------------------------------------------------------------------------- /admin/src/views/infra/dbDoc/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/infra/dbDoc/index.vue -------------------------------------------------------------------------------- /admin/src/views/infra/file/FileForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/infra/file/FileForm.vue -------------------------------------------------------------------------------- /admin/src/views/infra/file/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/infra/file/index.vue -------------------------------------------------------------------------------- /admin/src/views/infra/fileConfig/FileConfigForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/infra/fileConfig/FileConfigForm.vue -------------------------------------------------------------------------------- /admin/src/views/infra/fileConfig/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/infra/fileConfig/index.vue -------------------------------------------------------------------------------- /admin/src/views/infra/job/JobDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/infra/job/JobDetail.vue -------------------------------------------------------------------------------- /admin/src/views/infra/job/JobForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/infra/job/JobForm.vue -------------------------------------------------------------------------------- /admin/src/views/infra/job/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/infra/job/index.vue -------------------------------------------------------------------------------- /admin/src/views/infra/job/logger/JobLogDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/infra/job/logger/JobLogDetail.vue -------------------------------------------------------------------------------- /admin/src/views/infra/job/logger/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/infra/job/logger/index.vue -------------------------------------------------------------------------------- /admin/src/views/infra/redis/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/infra/redis/index.vue -------------------------------------------------------------------------------- /admin/src/views/infra/server/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/infra/server/index.vue -------------------------------------------------------------------------------- /admin/src/views/infra/swagger/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/infra/swagger/index.vue -------------------------------------------------------------------------------- /admin/src/views/infra/testDemo/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/infra/testDemo/index.vue -------------------------------------------------------------------------------- /admin/src/views/infra/webSocket/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/infra/webSocket/index.vue -------------------------------------------------------------------------------- /admin/src/views/point/config/ConfigForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/point/config/ConfigForm.vue -------------------------------------------------------------------------------- /admin/src/views/point/config/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/point/config/index.vue -------------------------------------------------------------------------------- /admin/src/views/point/record/RecordForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/point/record/RecordForm.vue -------------------------------------------------------------------------------- /admin/src/views/point/record/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/point/record/index.vue -------------------------------------------------------------------------------- /admin/src/views/point/signInConfig/SignInConfigForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/point/signInConfig/SignInConfigForm.vue -------------------------------------------------------------------------------- /admin/src/views/point/signInConfig/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/point/signInConfig/index.vue -------------------------------------------------------------------------------- /admin/src/views/point/signInRecord/SignInRecordForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/point/signInRecord/SignInRecordForm.vue -------------------------------------------------------------------------------- /admin/src/views/point/signInRecord/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/point/signInRecord/index.vue -------------------------------------------------------------------------------- /admin/src/views/report/goview/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/report/goview/index.vue -------------------------------------------------------------------------------- /admin/src/views/report/jmreport/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/report/jmreport/index.vue -------------------------------------------------------------------------------- /admin/src/views/system/area/AreaForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/area/AreaForm.vue -------------------------------------------------------------------------------- /admin/src/views/system/area/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/area/index.vue -------------------------------------------------------------------------------- /admin/src/views/system/dept/DeptForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/dept/DeptForm.vue -------------------------------------------------------------------------------- /admin/src/views/system/dept/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/dept/index.vue -------------------------------------------------------------------------------- /admin/src/views/system/dict/DictTypeForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/dict/DictTypeForm.vue -------------------------------------------------------------------------------- /admin/src/views/system/dict/data/DictDataForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/dict/data/DictDataForm.vue -------------------------------------------------------------------------------- /admin/src/views/system/dict/data/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/dict/data/index.vue -------------------------------------------------------------------------------- /admin/src/views/system/dict/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/dict/index.vue -------------------------------------------------------------------------------- /admin/src/views/system/errorCode/ErrorCodeForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/errorCode/ErrorCodeForm.vue -------------------------------------------------------------------------------- /admin/src/views/system/errorCode/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/errorCode/index.vue -------------------------------------------------------------------------------- /admin/src/views/system/loginlog/LoginLogDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/loginlog/LoginLogDetail.vue -------------------------------------------------------------------------------- /admin/src/views/system/loginlog/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/loginlog/index.vue -------------------------------------------------------------------------------- /admin/src/views/system/mail/account/MailAccountDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/mail/account/MailAccountDetail.vue -------------------------------------------------------------------------------- /admin/src/views/system/mail/account/MailAccountForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/mail/account/MailAccountForm.vue -------------------------------------------------------------------------------- /admin/src/views/system/mail/account/account.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/mail/account/account.data.ts -------------------------------------------------------------------------------- /admin/src/views/system/mail/account/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/mail/account/index.vue -------------------------------------------------------------------------------- /admin/src/views/system/mail/log/MailLogDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/mail/log/MailLogDetail.vue -------------------------------------------------------------------------------- /admin/src/views/system/mail/log/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/mail/log/index.vue -------------------------------------------------------------------------------- /admin/src/views/system/mail/log/log.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/mail/log/log.data.ts -------------------------------------------------------------------------------- /admin/src/views/system/mail/template/MailTemplateForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/mail/template/MailTemplateForm.vue -------------------------------------------------------------------------------- /admin/src/views/system/mail/template/MailTemplateSendForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/mail/template/MailTemplateSendForm.vue -------------------------------------------------------------------------------- /admin/src/views/system/mail/template/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/mail/template/index.vue -------------------------------------------------------------------------------- /admin/src/views/system/mail/template/template.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/mail/template/template.data.ts -------------------------------------------------------------------------------- /admin/src/views/system/menu/MenuForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/menu/MenuForm.vue -------------------------------------------------------------------------------- /admin/src/views/system/menu/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/menu/index.vue -------------------------------------------------------------------------------- /admin/src/views/system/notice/NoticeForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/notice/NoticeForm.vue -------------------------------------------------------------------------------- /admin/src/views/system/notice/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/notice/index.vue -------------------------------------------------------------------------------- /admin/src/views/system/notify/message/NotifyMessageDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/notify/message/NotifyMessageDetail.vue -------------------------------------------------------------------------------- /admin/src/views/system/notify/message/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/notify/message/index.vue -------------------------------------------------------------------------------- /admin/src/views/system/notify/my/MyNotifyMessageDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/notify/my/MyNotifyMessageDetail.vue -------------------------------------------------------------------------------- /admin/src/views/system/notify/my/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/notify/my/index.vue -------------------------------------------------------------------------------- /admin/src/views/system/notify/template/NotifyTemplateForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/notify/template/NotifyTemplateForm.vue -------------------------------------------------------------------------------- /admin/src/views/system/notify/template/NotifyTemplateSendForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/notify/template/NotifyTemplateSendForm.vue -------------------------------------------------------------------------------- /admin/src/views/system/notify/template/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/notify/template/index.vue -------------------------------------------------------------------------------- /admin/src/views/system/oauth2/client/ClientForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/oauth2/client/ClientForm.vue -------------------------------------------------------------------------------- /admin/src/views/system/oauth2/client/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/oauth2/client/index.vue -------------------------------------------------------------------------------- /admin/src/views/system/oauth2/token/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/oauth2/token/index.vue -------------------------------------------------------------------------------- /admin/src/views/system/operatelog/OperateLogDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/operatelog/OperateLogDetail.vue -------------------------------------------------------------------------------- /admin/src/views/system/operatelog/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/operatelog/index.vue -------------------------------------------------------------------------------- /admin/src/views/system/post/PostForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/post/PostForm.vue -------------------------------------------------------------------------------- /admin/src/views/system/post/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/post/index.vue -------------------------------------------------------------------------------- /admin/src/views/system/role/RoleAssignMenuForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/role/RoleAssignMenuForm.vue -------------------------------------------------------------------------------- /admin/src/views/system/role/RoleDataPermissionForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/role/RoleDataPermissionForm.vue -------------------------------------------------------------------------------- /admin/src/views/system/role/RoleForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/role/RoleForm.vue -------------------------------------------------------------------------------- /admin/src/views/system/role/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/role/index.vue -------------------------------------------------------------------------------- /admin/src/views/system/sensitiveWord/SensitiveWordForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/sensitiveWord/SensitiveWordForm.vue -------------------------------------------------------------------------------- /admin/src/views/system/sensitiveWord/SensitiveWordTestForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/sensitiveWord/SensitiveWordTestForm.vue -------------------------------------------------------------------------------- /admin/src/views/system/sensitiveWord/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/sensitiveWord/index.vue -------------------------------------------------------------------------------- /admin/src/views/system/sms/channel/SmsChannelForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/sms/channel/SmsChannelForm.vue -------------------------------------------------------------------------------- /admin/src/views/system/sms/channel/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/sms/channel/index.vue -------------------------------------------------------------------------------- /admin/src/views/system/sms/log/SmsLogDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/sms/log/SmsLogDetail.vue -------------------------------------------------------------------------------- /admin/src/views/system/sms/log/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/sms/log/index.vue -------------------------------------------------------------------------------- /admin/src/views/system/sms/template/SmsTemplateForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/sms/template/SmsTemplateForm.vue -------------------------------------------------------------------------------- /admin/src/views/system/sms/template/SmsTemplateSendForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/sms/template/SmsTemplateSendForm.vue -------------------------------------------------------------------------------- /admin/src/views/system/sms/template/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/sms/template/index.vue -------------------------------------------------------------------------------- /admin/src/views/system/user/DeptTree.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/user/DeptTree.vue -------------------------------------------------------------------------------- /admin/src/views/system/user/UserAssignRoleForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/user/UserAssignRoleForm.vue -------------------------------------------------------------------------------- /admin/src/views/system/user/UserForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/user/UserForm.vue -------------------------------------------------------------------------------- /admin/src/views/system/user/UserImportForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/user/UserImportForm.vue -------------------------------------------------------------------------------- /admin/src/views/system/user/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/src/views/system/user/index.vue -------------------------------------------------------------------------------- /admin/stylelint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/stylelint.config.js -------------------------------------------------------------------------------- /admin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/tsconfig.json -------------------------------------------------------------------------------- /admin/types/components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/types/components.d.ts -------------------------------------------------------------------------------- /admin/types/custom-types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/types/custom-types.d.ts -------------------------------------------------------------------------------- /admin/types/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/types/env.d.ts -------------------------------------------------------------------------------- /admin/types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/types/global.d.ts -------------------------------------------------------------------------------- /admin/types/router.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/types/router.d.ts -------------------------------------------------------------------------------- /admin/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/vite.config.ts -------------------------------------------------------------------------------- /admin/windi.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/admin/windi.config.ts -------------------------------------------------------------------------------- /server/.env.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/.env.dev -------------------------------------------------------------------------------- /server/.env.docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/.env.docker -------------------------------------------------------------------------------- /server/.env.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/.env.local -------------------------------------------------------------------------------- /server/.env.mock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/.env.mock -------------------------------------------------------------------------------- /server/.env.prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/.env.prod -------------------------------------------------------------------------------- /server/.env.staging: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/.env.staging -------------------------------------------------------------------------------- /server/.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/.env.test -------------------------------------------------------------------------------- /server/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/.eslintrc.js -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/.gitignore -------------------------------------------------------------------------------- /server/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/.prettierrc -------------------------------------------------------------------------------- /server/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/.vscode/launch.json -------------------------------------------------------------------------------- /server/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/.vscode/settings.json -------------------------------------------------------------------------------- /server/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/.vscode/tasks.json -------------------------------------------------------------------------------- /server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/Dockerfile -------------------------------------------------------------------------------- /server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/README.md -------------------------------------------------------------------------------- /server/client/socket.io.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/client/socket.io.html -------------------------------------------------------------------------------- /server/client/websocket.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/client/websocket.html -------------------------------------------------------------------------------- /server/db/ruoyi-nest.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/db/ruoyi-nest.sql -------------------------------------------------------------------------------- /server/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/docker-compose.yml -------------------------------------------------------------------------------- /server/nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/nest-cli.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/package.json -------------------------------------------------------------------------------- /server/src/Enum/Global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/Enum/Global.ts -------------------------------------------------------------------------------- /server/src/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/app.controller.ts -------------------------------------------------------------------------------- /server/src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/app.module.ts -------------------------------------------------------------------------------- /server/src/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/app.service.ts -------------------------------------------------------------------------------- /server/src/common/config/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/common/config/config.ts -------------------------------------------------------------------------------- /server/src/common/constants/colorList.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/common/constants/colorList.constants.ts -------------------------------------------------------------------------------- /server/src/common/constants/decorator.contants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/common/constants/decorator.contants.ts -------------------------------------------------------------------------------- /server/src/common/constants/error.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/common/constants/error.constants.ts -------------------------------------------------------------------------------- /server/src/common/decorators/hasPermission.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/common/decorators/hasPermission.decorator.ts -------------------------------------------------------------------------------- /server/src/common/decorators/keep.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/common/decorators/keep.decorator.ts -------------------------------------------------------------------------------- /server/src/common/decorators/skipAuth.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/common/decorators/skipAuth.decorator.ts -------------------------------------------------------------------------------- /server/src/common/model/files.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/common/model/files.model.ts -------------------------------------------------------------------------------- /server/src/common/result-beans/File.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/common/result-beans/File.ts -------------------------------------------------------------------------------- /server/src/common/result-beans/Pagination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/common/result-beans/Pagination.ts -------------------------------------------------------------------------------- /server/src/common/result-beans/ResponseFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/common/result-beans/ResponseFile.ts -------------------------------------------------------------------------------- /server/src/common/result-beans/Result.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/common/result-beans/Result.ts -------------------------------------------------------------------------------- /server/src/common/result-beans/ResultBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/common/result-beans/ResultBase.ts -------------------------------------------------------------------------------- /server/src/common/result-beans/ResultPagination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/common/result-beans/ResultPagination.ts -------------------------------------------------------------------------------- /server/src/common/result-beans/rsp/DeptOption.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/common/result-beans/rsp/DeptOption.ts -------------------------------------------------------------------------------- /server/src/common/utils/loadModules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/common/utils/loadModules.ts -------------------------------------------------------------------------------- /server/src/common/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/common/utils/utils.ts -------------------------------------------------------------------------------- /server/src/common/utils/wechatUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/common/utils/wechatUtils.ts -------------------------------------------------------------------------------- /server/src/config/configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/config/configuration.ts -------------------------------------------------------------------------------- /server/src/dto/UserDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/dto/UserDto.ts -------------------------------------------------------------------------------- /server/src/dto/activityDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/dto/activityDto.ts -------------------------------------------------------------------------------- /server/src/dto/commonDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/dto/commonDto.ts -------------------------------------------------------------------------------- /server/src/dto/emailDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/dto/emailDto.ts -------------------------------------------------------------------------------- /server/src/dto/loginDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/dto/loginDto.ts -------------------------------------------------------------------------------- /server/src/dto/menuDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/dto/menuDto.ts -------------------------------------------------------------------------------- /server/src/dto/noticeDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/dto/noticeDto.ts -------------------------------------------------------------------------------- /server/src/dto/propsDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/dto/propsDto.ts -------------------------------------------------------------------------------- /server/src/dto/roleDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/dto/roleDto.ts -------------------------------------------------------------------------------- /server/src/dto/status.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/dto/status.dto.ts -------------------------------------------------------------------------------- /server/src/dto/system/adminDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/dto/system/adminDto.ts -------------------------------------------------------------------------------- /server/src/dto/system/assignRoleMenuDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/dto/system/assignRoleMenuDto.ts -------------------------------------------------------------------------------- /server/src/dto/system/assignUserRoleDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/dto/system/assignUserRoleDto.ts -------------------------------------------------------------------------------- /server/src/dto/system/deptDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/dto/system/deptDto.ts -------------------------------------------------------------------------------- /server/src/dto/system/dictDataPageDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/dto/system/dictDataPageDto.ts -------------------------------------------------------------------------------- /server/src/dto/system/dictTypePageDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/dto/system/dictTypePageDto.ts -------------------------------------------------------------------------------- /server/src/dto/system/mailDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/dto/system/mailDto.ts -------------------------------------------------------------------------------- /server/src/dto/system/notifyDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/dto/system/notifyDto.ts -------------------------------------------------------------------------------- /server/src/dto/tenantDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/dto/tenantDto.ts -------------------------------------------------------------------------------- /server/src/dto/tenantPackageDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/dto/tenantPackageDto.ts -------------------------------------------------------------------------------- /server/src/dto/userPageDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/dto/userPageDto.ts -------------------------------------------------------------------------------- /server/src/dto/wechat-login.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/dto/wechat-login.dto.ts -------------------------------------------------------------------------------- /server/src/dto/wxUser.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/dto/wxUser.dto.ts -------------------------------------------------------------------------------- /server/src/entity/common/baseEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/entity/common/baseEntity.ts -------------------------------------------------------------------------------- /server/src/entity/common/baseIntegerEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/entity/common/baseIntegerEntity.ts -------------------------------------------------------------------------------- /server/src/entity/common/baseIntegerNoTenantIdEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/entity/common/baseIntegerNoTenantIdEntity.ts -------------------------------------------------------------------------------- /server/src/entity/common/baseNoTenantIdEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/entity/common/baseNoTenantIdEntity.ts -------------------------------------------------------------------------------- /server/src/entity/file/fileConfigEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/entity/file/fileConfigEntity.ts -------------------------------------------------------------------------------- /server/src/entity/file/fileContentEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/entity/file/fileContentEntity.ts -------------------------------------------------------------------------------- /server/src/entity/file/fileEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/entity/file/fileEntity.ts -------------------------------------------------------------------------------- /server/src/entity/game/activityEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/entity/game/activityEntity.ts -------------------------------------------------------------------------------- /server/src/entity/game/emailEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/entity/game/emailEntity.ts -------------------------------------------------------------------------------- /server/src/entity/game/playerEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/entity/game/playerEntity.ts -------------------------------------------------------------------------------- /server/src/entity/game/propsEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/entity/game/propsEntity.ts -------------------------------------------------------------------------------- /server/src/entity/system/adminEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/entity/system/adminEntity.ts -------------------------------------------------------------------------------- /server/src/entity/system/deptEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/entity/system/deptEntity.ts -------------------------------------------------------------------------------- /server/src/entity/system/dictDataEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/entity/system/dictDataEntity.ts -------------------------------------------------------------------------------- /server/src/entity/system/dictTypeEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/entity/system/dictTypeEntity.ts -------------------------------------------------------------------------------- /server/src/entity/system/mailAcountEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/entity/system/mailAcountEntity.ts -------------------------------------------------------------------------------- /server/src/entity/system/mailLogEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/entity/system/mailLogEntity.ts -------------------------------------------------------------------------------- /server/src/entity/system/mailTemplateEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/entity/system/mailTemplateEntity.ts -------------------------------------------------------------------------------- /server/src/entity/system/menuEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/entity/system/menuEntity.ts -------------------------------------------------------------------------------- /server/src/entity/system/noticeEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/entity/system/noticeEntity.ts -------------------------------------------------------------------------------- /server/src/entity/system/notifyMessageEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/entity/system/notifyMessageEntity.ts -------------------------------------------------------------------------------- /server/src/entity/system/notifyTemplateEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/entity/system/notifyTemplateEntity.ts -------------------------------------------------------------------------------- /server/src/entity/system/operationLogEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/entity/system/operationLogEntity.ts -------------------------------------------------------------------------------- /server/src/entity/system/postEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/entity/system/postEntity.ts -------------------------------------------------------------------------------- /server/src/entity/system/roleEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/entity/system/roleEntity.ts -------------------------------------------------------------------------------- /server/src/entity/system/roleMenuEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/entity/system/roleMenuEntity.ts -------------------------------------------------------------------------------- /server/src/entity/system/sensitiveEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/entity/system/sensitiveEntity.ts -------------------------------------------------------------------------------- /server/src/entity/system/smsChannelEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/entity/system/smsChannelEntity.ts -------------------------------------------------------------------------------- /server/src/entity/system/smsCodeEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/entity/system/smsCodeEntity.ts -------------------------------------------------------------------------------- /server/src/entity/system/smsLogEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/entity/system/smsLogEntity.ts -------------------------------------------------------------------------------- /server/src/entity/system/smsTemplateEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/entity/system/smsTemplateEntity.ts -------------------------------------------------------------------------------- /server/src/entity/system/tenantEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/entity/system/tenantEntity.ts -------------------------------------------------------------------------------- /server/src/entity/system/tenantPackageEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/entity/system/tenantPackageEntity.ts -------------------------------------------------------------------------------- /server/src/entity/system/userRoleEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/entity/system/userRoleEntity.ts -------------------------------------------------------------------------------- /server/src/extend/helper.ts: -------------------------------------------------------------------------------- 1 | export class Helper {} 2 | -------------------------------------------------------------------------------- /server/src/filters/http-exception.filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/filters/http-exception.filter.ts -------------------------------------------------------------------------------- /server/src/filters/ws-exception.filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/filters/ws-exception.filter.ts -------------------------------------------------------------------------------- /server/src/guards/jwt-auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/guards/jwt-auth.guard.ts -------------------------------------------------------------------------------- /server/src/guards/local-auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/guards/local-auth.guard.ts -------------------------------------------------------------------------------- /server/src/guards/permissions.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/guards/permissions.guard.ts -------------------------------------------------------------------------------- /server/src/interceptors/api-transform.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/interceptors/api-transform.interceptor.ts -------------------------------------------------------------------------------- /server/src/interceptors/tenant.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/interceptors/tenant.interceptor.ts -------------------------------------------------------------------------------- /server/src/interface/user.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/interface/user.interface.ts -------------------------------------------------------------------------------- /server/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/main.ts -------------------------------------------------------------------------------- /server/src/middleware/addParam.middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/middleware/addParam.middleware.ts -------------------------------------------------------------------------------- /server/src/middleware/logger.middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/middleware/logger.middleware.ts -------------------------------------------------------------------------------- /server/src/middleware/server-mode.middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/middleware/server-mode.middleware.ts -------------------------------------------------------------------------------- /server/src/module/admin/admin.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/module/admin/admin.module.ts -------------------------------------------------------------------------------- /server/src/module/admin/files/files.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/module/admin/files/files.controller.ts -------------------------------------------------------------------------------- /server/src/module/admin/schedule/schedule.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/module/admin/schedule/schedule.controller.ts -------------------------------------------------------------------------------- /server/src/module/admin/system/auth/auth.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/module/admin/system/auth/auth.controller.ts -------------------------------------------------------------------------------- /server/src/module/admin/system/dept/dept.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/module/admin/system/dept/dept.controller.ts -------------------------------------------------------------------------------- /server/src/module/admin/system/dict/dictData.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/module/admin/system/dict/dictData.controller.ts -------------------------------------------------------------------------------- /server/src/module/admin/system/dict/dictType.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/module/admin/system/dict/dictType.controller.ts -------------------------------------------------------------------------------- /server/src/module/admin/system/mail/mailAccount.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/module/admin/system/mail/mailAccount.controller.ts -------------------------------------------------------------------------------- /server/src/module/admin/system/mail/mailLog.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/module/admin/system/mail/mailLog.controller.ts -------------------------------------------------------------------------------- /server/src/module/admin/system/mail/mailTemplate.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/module/admin/system/mail/mailTemplate.controller.ts -------------------------------------------------------------------------------- /server/src/module/admin/system/menu/menu.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/module/admin/system/menu/menu.controller.ts -------------------------------------------------------------------------------- /server/src/module/admin/system/notice/notice.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/module/admin/system/notice/notice.controller.ts -------------------------------------------------------------------------------- /server/src/module/admin/system/notice/notifyMessage.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/module/admin/system/notice/notifyMessage.controller.ts -------------------------------------------------------------------------------- /server/src/module/admin/system/notice/notifyTemplate.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/module/admin/system/notice/notifyTemplate.controller.ts -------------------------------------------------------------------------------- /server/src/module/admin/system/permission/permission.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/module/admin/system/permission/permission.controller.ts -------------------------------------------------------------------------------- /server/src/module/admin/system/player/player.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/module/admin/system/player/player.controller.ts -------------------------------------------------------------------------------- /server/src/module/admin/system/post/post.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/module/admin/system/post/post.controller.ts -------------------------------------------------------------------------------- /server/src/module/admin/system/role/role.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/module/admin/system/role/role.controller.spec.ts -------------------------------------------------------------------------------- /server/src/module/admin/system/role/role.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/module/admin/system/role/role.controller.ts -------------------------------------------------------------------------------- /server/src/module/admin/system/sms/smsChannel.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/module/admin/system/sms/smsChannel.controller.ts -------------------------------------------------------------------------------- /server/src/module/admin/system/sms/smsLog.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/module/admin/system/sms/smsLog.controller.ts -------------------------------------------------------------------------------- /server/src/module/admin/system/sms/smsTemplate.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/module/admin/system/sms/smsTemplate.controller.ts -------------------------------------------------------------------------------- /server/src/module/admin/system/tenant/tenant.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/module/admin/system/tenant/tenant.controller.ts -------------------------------------------------------------------------------- /server/src/module/admin/system/tenant/tenantPackage.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/module/admin/system/tenant/tenantPackage.controller.ts -------------------------------------------------------------------------------- /server/src/module/admin/system/user/user.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/module/admin/system/user/user.controller.ts -------------------------------------------------------------------------------- /server/src/module/app/user/app.login.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/module/app/user/app.login.controller.ts -------------------------------------------------------------------------------- /server/src/module/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/module/shared/shared.module.ts -------------------------------------------------------------------------------- /server/src/service/cookie/cookie.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/service/cookie/cookie.service.spec.ts -------------------------------------------------------------------------------- /server/src/service/cookie/cookie.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/service/cookie/cookie.service.ts -------------------------------------------------------------------------------- /server/src/service/file/file.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/service/file/file.service.ts -------------------------------------------------------------------------------- /server/src/service/logger/logger.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/service/logger/logger.service.ts -------------------------------------------------------------------------------- /server/src/service/props/props.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/service/props/props.service.ts -------------------------------------------------------------------------------- /server/src/service/redis/cache.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/service/redis/cache.service.spec.ts -------------------------------------------------------------------------------- /server/src/service/redis/redis.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/service/redis/redis.service.ts -------------------------------------------------------------------------------- /server/src/service/schedule/schedule.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/service/schedule/schedule.service.ts -------------------------------------------------------------------------------- /server/src/service/system/admin/admin.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/service/system/admin/admin.service.ts -------------------------------------------------------------------------------- /server/src/service/system/auth/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/service/system/auth/auth.service.ts -------------------------------------------------------------------------------- /server/src/service/system/dept/dept.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/service/system/dept/dept.service.ts -------------------------------------------------------------------------------- /server/src/service/system/dict/dict.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/service/system/dict/dict.service.ts -------------------------------------------------------------------------------- /server/src/service/system/email/email.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/service/system/email/email.service.ts -------------------------------------------------------------------------------- /server/src/service/system/mail/mailAccount.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/service/system/mail/mailAccount.service.ts -------------------------------------------------------------------------------- /server/src/service/system/mail/mailLog.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/service/system/mail/mailLog.service.ts -------------------------------------------------------------------------------- /server/src/service/system/mail/mailTemplate.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/service/system/mail/mailTemplate.service.ts -------------------------------------------------------------------------------- /server/src/service/system/menu/menu.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/service/system/menu/menu.service.ts -------------------------------------------------------------------------------- /server/src/service/system/notice/notice.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/service/system/notice/notice.service.ts -------------------------------------------------------------------------------- /server/src/service/system/notice/notifyMessage.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/service/system/notice/notifyMessage.service.ts -------------------------------------------------------------------------------- /server/src/service/system/notice/notifyTemplate.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/service/system/notice/notifyTemplate.service.ts -------------------------------------------------------------------------------- /server/src/service/system/permission/permission.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/service/system/permission/permission.service.ts -------------------------------------------------------------------------------- /server/src/service/system/role/role.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/service/system/role/role.service.spec.ts -------------------------------------------------------------------------------- /server/src/service/system/role/role.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/service/system/role/role.service.ts -------------------------------------------------------------------------------- /server/src/service/system/tenant/tenant.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/service/system/tenant/tenant.service.ts -------------------------------------------------------------------------------- /server/src/service/system/tenant/tenantPackage.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/service/system/tenant/tenantPackage.service.ts -------------------------------------------------------------------------------- /server/src/service/tools/tools.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/service/tools/tools.service.ts -------------------------------------------------------------------------------- /server/src/service/user/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/service/user/user.service.ts -------------------------------------------------------------------------------- /server/src/strategy/jwt.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/strategy/jwt.strategy.ts -------------------------------------------------------------------------------- /server/src/strategy/local.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/strategy/local.strategy.ts -------------------------------------------------------------------------------- /server/src/tasks/tasks.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/tasks/tasks.module.ts -------------------------------------------------------------------------------- /server/src/tasks/tasks.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/src/tasks/tasks.service.ts -------------------------------------------------------------------------------- /server/test/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/test/app.e2e-spec.ts -------------------------------------------------------------------------------- /server/test/jest-e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/test/jest-e2e.json -------------------------------------------------------------------------------- /server/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/tsconfig.build.json -------------------------------------------------------------------------------- /server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/tsconfig.json -------------------------------------------------------------------------------- /server/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five6/ruoyi-pro-nestjs/HEAD/server/yarn.lock --------------------------------------------------------------------------------