├── .deepsource.toml ├── .gitattributes ├── .gitee └── ISSUE_TEMPLATE.zh-CN.md ├── .github └── workflows │ └── codeql.yml ├── .gitignore ├── Infrastructure ├── App │ ├── App.cs │ └── Web │ │ └── HttpContextLocal.cs ├── AppSettings.cs ├── Attribute │ ├── AppServiceAttribute.cs │ └── LogAttribute.cs ├── Constant │ ├── HttpStatus.cs │ └── HubsConstant.cs ├── CustomException │ ├── CustomException.cs │ └── ResultCode.cs ├── Enums │ ├── BusinessType.cs │ └── StoreType.cs ├── Extensions │ ├── Extension.Convert.cs │ ├── Extension.Enum.cs │ ├── Extension.Exception.cs │ ├── Extension.Linq.cs │ ├── Extension.Validate.cs │ └── StringExtension.cs ├── GlobalConstant.cs ├── Helper │ ├── AssemblyUtils.cs │ ├── ComputerHelper.cs │ ├── DateTimeHelper.cs │ ├── FileUtil.cs │ ├── HttpHelper.cs │ └── ShellHelper.cs ├── Infrastructure.csproj ├── InternalApp.cs ├── Model │ ├── ApiResult.cs │ └── SendEmailDto.cs └── OptionsSetting.cs ├── LICENSE ├── README.md ├── ZR.Admin.WebApi ├── .config │ └── dotnet-tools.json ├── Controllers │ ├── BaseController.cs │ ├── CommonController.cs │ └── System │ │ ├── ArticleCategoryController.cs │ │ ├── ArticleController.cs │ │ ├── CodeGeneratorController.cs │ │ ├── CommonLangController.cs │ │ ├── SysConfigController.cs │ │ ├── SysDeptController.cs │ │ ├── SysDictDataController.cs │ │ ├── SysDictTypeController.cs │ │ ├── SysFileController.cs │ │ ├── SysLoginController.cs │ │ ├── SysMenuController.cs │ │ ├── SysNoticeController.cs │ │ ├── SysPostController.cs │ │ ├── SysProfileController.cs │ │ ├── SysRoleController.cs │ │ ├── SysUserController.cs │ │ ├── SysUserRoleController.cs │ │ ├── TasksController.cs │ │ ├── TasksLogController.cs │ │ └── monitor │ │ ├── MonitorController.cs │ │ ├── SysLogininforController.cs │ │ ├── SysOperlogController.cs │ │ └── SysUserOnlineController.cs ├── Dockerfile ├── Extensions │ ├── AppServiceExtensions.cs │ ├── DbExtension.cs │ ├── EntityExtension.cs │ ├── HttpContextExtension.cs │ ├── IPRateExtension.cs │ ├── LogoExtension.cs │ ├── SqlSugarCache.cs │ ├── SwaggerExtension.cs │ └── TasksExtension.cs ├── Filters │ ├── ActionPermissionFilter.cs │ ├── GlobalActionMonitor.cs │ ├── GlobalExceptionFilter.cs │ └── VerifyAttribute.cs ├── Framework │ ├── CookieUtil.cs │ ├── JsonConverterUtil.cs │ └── JwtUtil.cs ├── Hubs │ ├── MessageHub.cs │ └── OnlineUsers.cs ├── Middleware │ └── GlobalExceptionMiddleware.cs ├── NLog.config ├── Program.cs ├── Properties │ ├── PublishProfiles │ │ └── FolderProfile.pubxml │ └── launchSettings.json ├── ZR.Admin.WebApi.csproj ├── appsettings.json ├── ip2region.db └── wwwroot │ ├── CodeGenTemplate │ ├── CurdForm.txt │ ├── MySqlTemplate.txt │ ├── QueryForm.txt │ ├── SqlTemplate.txt │ ├── TableList.txt │ ├── TplControllers.txt │ ├── TplDto.txt │ ├── TplIService.txt │ ├── TplModel.txt │ ├── TplRepository.txt │ ├── TplService.txt │ ├── TplTreeVue.txt │ ├── TplVue.txt │ ├── TplVueApi.txt │ ├── TplVueSelect.txt │ └── v3 │ │ ├── TreeVue.txt │ │ └── Vue.txt │ └── logo.txt ├── ZR.CodeGenerator ├── CodeGenerateOption.cs ├── CodeGenerateTemplate.cs ├── CodeGeneratorTool.cs ├── DbProvider.cs ├── GenConstants.cs ├── Model │ ├── GenerateDto.cs │ └── ReplaceDto.cs ├── Service │ └── CodeGeneraterService.cs └── ZR.CodeGenerator.csproj ├── ZR.Common ├── AliyunOssHelper.cs ├── Cache │ ├── CacheHelper.cs │ └── RedisServer.cs ├── ExcelHelper.cs ├── JnHelper.cs ├── MailHelper.cs ├── Tools.cs ├── WxNoticeHelper.cs └── ZR.Common.csproj ├── ZR.Model ├── Models │ └── README.txt ├── PagedInfo.cs ├── PagerInfo.cs ├── System │ ├── Article.cs │ ├── ArticleCategory.cs │ ├── CommonLang.cs │ ├── Dto │ │ ├── ArticleCategoryDto.cs │ │ ├── ArticleDto.cs │ │ ├── CommonLangDto.cs │ │ ├── GenTableDto.cs │ │ ├── LoginBodyDto.cs │ │ ├── MenuDto.cs │ │ ├── RegisterDto.cs │ │ ├── RoleUserDto.cs │ │ ├── SysConfigDto.cs │ │ ├── SysDictTypeDto.cs │ │ ├── SysFileQueryDto.cs │ │ ├── SysLogininfoDto.cs │ │ ├── SysNoticeDto.cs │ │ ├── SysOperLogDto.cs │ │ ├── SysRoleDto.cs │ │ ├── SysUserDto.cs │ │ ├── SysdictDataDto.cs │ │ ├── TasksDto.cs │ │ └── TasksLogDto.cs │ ├── Generate │ │ ├── GenTable.cs │ │ └── GenTableColumn.cs │ ├── LoginUser.cs │ ├── SysBase.cs │ ├── SysConfig.cs │ ├── SysDept.cs │ ├── SysDictData.cs │ ├── SysDictType.cs │ ├── SysFile.cs │ ├── SysLogininfor.cs │ ├── SysMenu.cs │ ├── SysNotice.cs │ ├── SysOperLog.cs │ ├── SysPost.cs │ ├── SysRole.cs │ ├── SysRoleDept.cs │ ├── SysRoleMenu.cs │ ├── SysRolePost.cs │ ├── SysTasks.cs │ ├── SysTasksLog.cs │ ├── SysUser.cs │ ├── SysUserPost.cs │ ├── SysUserRole.cs │ ├── UserConstants.cs │ └── Vo │ │ ├── LangVo.cs │ │ ├── RouterVo.cs │ │ └── TreeSelectVo.cs └── ZR.Model.csproj ├── ZR.Repository ├── BaseRepository.cs ├── IBaseRepository.cs └── ZR.Repository.csproj ├── ZR.Service ├── BaseService.cs ├── IBaseService.cs ├── System │ ├── ArticleCategoryService.cs │ ├── ArticleService.cs │ ├── CacheService.cs │ ├── CommonLangService.cs │ ├── GenTableService.cs │ ├── IService │ │ ├── IArticleCategoryService.cs │ │ ├── IArticleService.cs │ │ ├── ICommonLangService.cs │ │ ├── IGenTableService.cs │ │ ├── ISysConfigService.cs │ │ ├── ISysDeptService.cs │ │ ├── ISysDictDataService.cs │ │ ├── ISysDictService.cs │ │ ├── ISysFileService.cs │ │ ├── ISysLoginService.cs │ │ ├── ISysMenuService.cs │ │ ├── ISysNoticeService.cs │ │ ├── ISysOperLogService.cs │ │ ├── ISysPermissionService.cs │ │ ├── ISysPostService.cs │ │ ├── ISysRoleService.cs │ │ ├── ISysTasksLogService.cs │ │ ├── ISysTasksQzService.cs │ │ ├── ISysUserPostService.cs │ │ ├── ISysUserRoleService.cs │ │ └── ISysUserService.cs │ ├── SysConfigService.cs │ ├── SysDeptService.cs │ ├── SysDictDataService.cs │ ├── SysDictService.cs │ ├── SysFileService.cs │ ├── SysLoginService.cs │ ├── SysMenuService.cs │ ├── SysNoticeService.cs │ ├── SysOperLogService.cs │ ├── SysPermissionService.cs │ ├── SysPostService.cs │ ├── SysRoleMenuService.cs │ ├── SysRoleService.cs │ ├── SysTasksLogService.cs │ ├── SysTasksQzService.cs │ ├── SysUserPostService.cs │ ├── SysUserRoleService.cs │ └── SysUserService.cs └── ZR.Service.csproj ├── ZR.Tasks ├── ITaskSchedulerServer.cs ├── JobFactory.cs ├── TaskScheduler │ ├── JobBase.cs │ ├── Job_HttpRequest.cs │ ├── Job_SqlExecute.cs │ └── Job_SyncTest.cs ├── TaskSchedulerServer.cs └── ZR.Tasks.csproj ├── ZR.Vue ├── .editorconfig ├── .env.development ├── .env.production ├── .env.staging ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .jsbeautifyrc ├── .prettierrc.js ├── README.md ├── babel.config.js ├── bat │ ├── build.bat │ ├── package.bat │ └── run-web.bat ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ └── robots.txt ├── src │ ├── App.vue │ ├── api │ │ ├── business │ │ │ ├── demo.js │ │ │ └── genDemo.js │ │ ├── common.js │ │ ├── monitor │ │ │ ├── cache.js │ │ │ ├── job.js │ │ │ ├── jobLog.js │ │ │ ├── logininfor.js │ │ │ ├── online.js │ │ │ ├── operlog.js │ │ │ └── server.js │ │ ├── system │ │ │ ├── article.js │ │ │ ├── config.js │ │ │ ├── dept.js │ │ │ ├── dict │ │ │ │ ├── data.js │ │ │ │ └── type.js │ │ │ ├── login.js │ │ │ ├── menu.js │ │ │ ├── notice.js │ │ │ ├── post.js │ │ │ ├── role.js │ │ │ ├── user.js │ │ │ └── userRoles.js │ │ └── tool │ │ │ ├── file.js │ │ │ └── gen.js │ ├── assets │ │ ├── 401_images │ │ │ └── 401.gif │ │ ├── 404_images │ │ │ ├── 404.png │ │ │ └── 404_cloud.png │ │ ├── icons │ │ │ ├── index.js │ │ │ ├── svg │ │ │ │ ├── 404.svg │ │ │ │ ├── Steve-Jobs.svg │ │ │ │ ├── alipay.svg │ │ │ │ ├── anq.svg │ │ │ │ ├── app.svg │ │ │ │ ├── backup.svg │ │ │ │ ├── bug.svg │ │ │ │ ├── build.svg │ │ │ │ ├── button.svg │ │ │ │ ├── cascader.svg │ │ │ │ ├── chain.svg │ │ │ │ ├── chart.svg │ │ │ │ ├── checkbox.svg │ │ │ │ ├── clipboard.svg │ │ │ │ ├── code.svg │ │ │ │ ├── codeConsole.svg │ │ │ │ ├── color.svg │ │ │ │ ├── component.svg │ │ │ │ ├── dashboard.svg │ │ │ │ ├── database.svg │ │ │ │ ├── date-range.svg │ │ │ │ ├── date.svg │ │ │ │ ├── deploy.svg │ │ │ │ ├── dept.svg │ │ │ │ ├── develop.svg │ │ │ │ ├── dict.svg │ │ │ │ ├── dictionary.svg │ │ │ │ ├── doc.svg │ │ │ │ ├── documentation.svg │ │ │ │ ├── download.svg │ │ │ │ ├── drag.svg │ │ │ │ ├── druid.svg │ │ │ │ ├── edit.svg │ │ │ │ ├── education.svg │ │ │ │ ├── email.svg │ │ │ │ ├── error.svg │ │ │ │ ├── example.svg │ │ │ │ ├── excel.svg │ │ │ │ ├── exit-fullscreen.svg │ │ │ │ ├── eye-open.svg │ │ │ │ ├── eye.svg │ │ │ │ ├── form.svg │ │ │ │ ├── fullscreen.svg │ │ │ │ ├── fwb.svg │ │ │ │ ├── github.svg │ │ │ │ ├── gonggao.svg │ │ │ │ ├── guide.svg │ │ │ │ ├── icon.svg │ │ │ │ ├── icon1.svg │ │ │ │ ├── image.svg │ │ │ │ ├── index.svg │ │ │ │ ├── input.svg │ │ │ │ ├── international.svg │ │ │ │ ├── ipvisits.svg │ │ │ │ ├── java.svg │ │ │ │ ├── job.svg │ │ │ │ ├── language.svg │ │ │ │ ├── link.svg │ │ │ │ ├── list.svg │ │ │ │ ├── lock.svg │ │ │ │ ├── log.svg │ │ │ │ ├── login.svg │ │ │ │ ├── logininfor.svg │ │ │ │ ├── markdown.svg │ │ │ │ ├── menu.svg │ │ │ │ ├── message.svg │ │ │ │ ├── mnt.svg │ │ │ │ ├── money.svg │ │ │ │ ├── monitor.svg │ │ │ │ ├── nested.svg │ │ │ │ ├── number.svg │ │ │ │ ├── online.svg │ │ │ │ ├── password.svg │ │ │ │ ├── pdf.svg │ │ │ │ ├── people.svg │ │ │ │ ├── peoples.svg │ │ │ │ ├── permission.svg │ │ │ │ ├── phone.svg │ │ │ │ ├── post.svg │ │ │ │ ├── qiniu.svg │ │ │ │ ├── qq.svg │ │ │ │ ├── question.svg │ │ │ │ ├── radio.svg │ │ │ │ ├── rate.svg │ │ │ │ ├── redis.svg │ │ │ │ ├── role.svg │ │ │ │ ├── row.svg │ │ │ │ ├── search.svg │ │ │ │ ├── select.svg │ │ │ │ ├── server.svg │ │ │ │ ├── shopping.svg │ │ │ │ ├── size.svg │ │ │ │ ├── skill.svg │ │ │ │ ├── slider.svg │ │ │ │ ├── source.svg │ │ │ │ ├── sqlMonitor.svg │ │ │ │ ├── star.svg │ │ │ │ ├── swagger.svg │ │ │ │ ├── switch.svg │ │ │ │ ├── sys-tools.svg │ │ │ │ ├── system.svg │ │ │ │ ├── system1.svg │ │ │ │ ├── tab.svg │ │ │ │ ├── table.svg │ │ │ │ ├── textarea.svg │ │ │ │ ├── theme.svg │ │ │ │ ├── time-range.svg │ │ │ │ ├── time.svg │ │ │ │ ├── tool.svg │ │ │ │ ├── tools.svg │ │ │ │ ├── tree-table.svg │ │ │ │ ├── tree.svg │ │ │ │ ├── unlock.svg │ │ │ │ ├── upload.svg │ │ │ │ ├── user.svg │ │ │ │ ├── validCode.svg │ │ │ │ ├── visits.svg │ │ │ │ ├── web.svg │ │ │ │ ├── wechat.svg │ │ │ │ ├── weixin.svg │ │ │ │ ├── zip.svg │ │ │ │ └── zujian.svg │ │ │ └── svgo.yml │ │ ├── image │ │ │ ├── dark.svg │ │ │ ├── light.svg │ │ │ ├── login-background.jpg │ │ │ ├── profile.jpg │ │ │ └── reward.jpg │ │ ├── logo │ │ │ └── logo.png │ │ └── styles │ │ │ ├── btn.scss │ │ │ ├── element-ui.scss │ │ │ ├── element-variables.scss │ │ │ ├── index.scss │ │ │ ├── mixin.scss │ │ │ ├── sidebar.scss │ │ │ ├── transition.scss │ │ │ └── variables.scss │ ├── components │ │ ├── Breadcrumb │ │ │ └── index.vue │ │ ├── Crontab │ │ │ ├── day.vue │ │ │ ├── hour.vue │ │ │ ├── index.vue │ │ │ ├── min.vue │ │ │ ├── month.vue │ │ │ ├── result.vue │ │ │ ├── second.vue │ │ │ ├── week.vue │ │ │ └── year.vue │ │ ├── DictData │ │ │ └── index.js │ │ ├── DictTag │ │ │ └── index.vue │ │ ├── Echarts │ │ │ ├── Category.vue │ │ │ ├── Funnel.vue │ │ │ ├── Gauge.vue │ │ │ ├── Graph.vue │ │ │ ├── HeatMap.vue │ │ │ ├── Line3D.vue │ │ │ ├── Point.vue │ │ │ ├── Rich.vue │ │ │ ├── Sankey.vue │ │ │ ├── Scatter.vue │ │ │ ├── Sunburst.vue │ │ │ ├── ThemeRiver.vue │ │ │ └── WordCloud.vue │ │ ├── Editor │ │ │ └── index.vue │ │ ├── FileUpload │ │ │ └── index.vue │ │ ├── Hamburger │ │ │ └── index.vue │ │ ├── HeaderSearch │ │ │ └── index.vue │ │ ├── IconSelect │ │ │ ├── index.vue │ │ │ └── requireIcons.js │ │ ├── Notice │ │ │ └── Index.vue │ │ ├── Pagination │ │ │ └── index.vue │ │ ├── PanThumb │ │ │ └── index.vue │ │ ├── ParentView │ │ │ └── index.vue │ │ ├── RightPanel │ │ │ └── index.vue │ │ ├── RightToolbar │ │ │ └── index.vue │ │ ├── Screenfull │ │ │ └── index.vue │ │ ├── SizeSelect │ │ │ └── index.vue │ │ ├── SvgIcon │ │ │ └── index.vue │ │ ├── ThemePicker │ │ │ └── index.vue │ │ ├── TopNav │ │ │ └── index.vue │ │ ├── UploadImage │ │ │ └── index.vue │ │ └── Zr │ │ │ ├── Doc │ │ │ └── index.vue │ │ │ └── Git │ │ │ └── index.vue │ ├── directive │ │ ├── module │ │ │ └── clipboard.js │ │ └── permission │ │ │ ├── hasPermi.js │ │ │ ├── hasRole.js │ │ │ └── index.js │ ├── layout │ │ ├── components │ │ │ ├── AppMain.vue │ │ │ ├── Navbar.vue │ │ │ ├── Settings │ │ │ │ └── index.vue │ │ │ ├── Sidebar │ │ │ │ ├── FixiOSBug.js │ │ │ │ ├── Item.vue │ │ │ │ ├── Link.vue │ │ │ │ ├── Logo.vue │ │ │ │ ├── SidebarItem.vue │ │ │ │ └── index.vue │ │ │ ├── TagsView │ │ │ │ ├── ScrollPane.vue │ │ │ │ └── index.vue │ │ │ └── index.js │ │ ├── index.vue │ │ └── mixin │ │ │ └── ResizeHandler.js │ ├── main.js │ ├── permission.js │ ├── plugins │ │ ├── cache.js │ │ ├── index.js │ │ ├── modal.js │ │ └── tab.js │ ├── router │ │ └── index.js │ ├── settings.js │ ├── store │ │ ├── getters.js │ │ ├── index.js │ │ └── modules │ │ │ ├── app.js │ │ │ ├── permission.js │ │ │ ├── settings.js │ │ │ ├── socket.js │ │ │ ├── tagsView.js │ │ │ └── user.js │ ├── utils │ │ ├── auth.js │ │ ├── errorCode.js │ │ ├── generator │ │ │ ├── config.js │ │ │ ├── css.js │ │ │ ├── drawingDefalut.js │ │ │ ├── html.js │ │ │ ├── icon.json │ │ │ ├── js.js │ │ │ └── render.js │ │ ├── index.js │ │ ├── jsencrypt.js │ │ ├── permission.js │ │ ├── request.js │ │ ├── ruoyi.js │ │ ├── scroll-to.js │ │ ├── signalR.js │ │ ├── validate.js │ │ └── zipdownload.js │ └── views │ │ ├── components │ │ ├── Echarts.vue │ │ ├── dictData.vue │ │ └── icons │ │ │ ├── element-icons.js │ │ │ ├── index.vue │ │ │ └── svg-icons.js │ │ ├── dashboard │ │ ├── BarChart.vue │ │ ├── LineChart.vue │ │ ├── PanelGroup.vue │ │ ├── PieChart.vue │ │ ├── RaddarChart.vue │ │ └── mixins │ │ │ └── resize.js │ │ ├── error │ │ ├── 401.vue │ │ └── 404.vue │ │ ├── index.vue │ │ ├── index_v1.vue │ │ ├── login.vue │ │ ├── monitor │ │ ├── job │ │ │ ├── index.vue │ │ │ └── log.vue │ │ ├── logininfor │ │ │ └── index.vue │ │ ├── operlog │ │ │ └── index.vue │ │ └── server │ │ │ └── index.vue │ │ ├── redirect.vue │ │ ├── register.vue │ │ ├── system │ │ ├── article │ │ │ ├── articleCategory.vue │ │ │ ├── manager.vue │ │ │ └── publish.vue │ │ ├── commonLang │ │ │ └── index.vue │ │ ├── config │ │ │ └── index.vue │ │ ├── dept │ │ │ └── index.vue │ │ ├── dict │ │ │ └── index.vue │ │ ├── menu │ │ │ └── index.vue │ │ ├── notice │ │ │ └── index.vue │ │ ├── post │ │ │ └── index.vue │ │ ├── role │ │ │ └── index.vue │ │ ├── roleusers │ │ │ └── index.vue │ │ └── user │ │ │ ├── index.vue │ │ │ └── profile │ │ │ ├── index.vue │ │ │ ├── operLog.vue │ │ │ ├── resetPwd.vue │ │ │ ├── userAvatar.vue │ │ │ └── userInfo.vue │ │ └── tool │ │ ├── build │ │ ├── CodeTypeDialog.vue │ │ ├── DraggableItem.vue │ │ ├── IconsDialog.vue │ │ ├── RightPanel.vue │ │ ├── TreeNodeDialog.vue │ │ └── index.vue │ │ ├── email │ │ └── sendEmail.vue │ │ ├── file │ │ └── index.vue │ │ ├── gen │ │ ├── basicInfoForm.vue │ │ ├── editTable.vue │ │ ├── genInfoForm.vue │ │ ├── importTable.vue │ │ └── index.vue │ │ └── swagger │ │ └── index.vue └── vue.config.js ├── ZRAdmin.sln ├── document ├── admin-mysql.sql ├── admin-sqlserver-表字段说明导入.sql ├── admin-sqlserver.sql ├── images │ ├── 1.png │ ├── 10.png │ ├── 11.png │ ├── 12.png │ ├── 13.png │ ├── 14.png │ ├── 15.png │ ├── 16.png │ ├── 17.png │ ├── 18.png │ ├── 19.png │ ├── 2.png │ ├── 20.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ ├── 9.png │ └── pay.jpg └── zradmin.ini └── startup.bat /.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/.deepsource.toml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitee/ISSUE_TEMPLATE.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/.gitee/ISSUE_TEMPLATE.zh-CN.md -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/.gitignore -------------------------------------------------------------------------------- /Infrastructure/App/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/Infrastructure/App/App.cs -------------------------------------------------------------------------------- /Infrastructure/App/Web/HttpContextLocal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/Infrastructure/App/Web/HttpContextLocal.cs -------------------------------------------------------------------------------- /Infrastructure/AppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/Infrastructure/AppSettings.cs -------------------------------------------------------------------------------- /Infrastructure/Attribute/AppServiceAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/Infrastructure/Attribute/AppServiceAttribute.cs -------------------------------------------------------------------------------- /Infrastructure/Attribute/LogAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/Infrastructure/Attribute/LogAttribute.cs -------------------------------------------------------------------------------- /Infrastructure/Constant/HttpStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/Infrastructure/Constant/HttpStatus.cs -------------------------------------------------------------------------------- /Infrastructure/Constant/HubsConstant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/Infrastructure/Constant/HubsConstant.cs -------------------------------------------------------------------------------- /Infrastructure/CustomException/CustomException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/Infrastructure/CustomException/CustomException.cs -------------------------------------------------------------------------------- /Infrastructure/CustomException/ResultCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/Infrastructure/CustomException/ResultCode.cs -------------------------------------------------------------------------------- /Infrastructure/Enums/BusinessType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/Infrastructure/Enums/BusinessType.cs -------------------------------------------------------------------------------- /Infrastructure/Enums/StoreType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/Infrastructure/Enums/StoreType.cs -------------------------------------------------------------------------------- /Infrastructure/Extensions/Extension.Convert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/Infrastructure/Extensions/Extension.Convert.cs -------------------------------------------------------------------------------- /Infrastructure/Extensions/Extension.Enum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/Infrastructure/Extensions/Extension.Enum.cs -------------------------------------------------------------------------------- /Infrastructure/Extensions/Extension.Exception.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/Infrastructure/Extensions/Extension.Exception.cs -------------------------------------------------------------------------------- /Infrastructure/Extensions/Extension.Linq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/Infrastructure/Extensions/Extension.Linq.cs -------------------------------------------------------------------------------- /Infrastructure/Extensions/Extension.Validate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/Infrastructure/Extensions/Extension.Validate.cs -------------------------------------------------------------------------------- /Infrastructure/Extensions/StringExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/Infrastructure/Extensions/StringExtension.cs -------------------------------------------------------------------------------- /Infrastructure/GlobalConstant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/Infrastructure/GlobalConstant.cs -------------------------------------------------------------------------------- /Infrastructure/Helper/AssemblyUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/Infrastructure/Helper/AssemblyUtils.cs -------------------------------------------------------------------------------- /Infrastructure/Helper/ComputerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/Infrastructure/Helper/ComputerHelper.cs -------------------------------------------------------------------------------- /Infrastructure/Helper/DateTimeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/Infrastructure/Helper/DateTimeHelper.cs -------------------------------------------------------------------------------- /Infrastructure/Helper/FileUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/Infrastructure/Helper/FileUtil.cs -------------------------------------------------------------------------------- /Infrastructure/Helper/HttpHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/Infrastructure/Helper/HttpHelper.cs -------------------------------------------------------------------------------- /Infrastructure/Helper/ShellHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/Infrastructure/Helper/ShellHelper.cs -------------------------------------------------------------------------------- /Infrastructure/Infrastructure.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/Infrastructure/Infrastructure.csproj -------------------------------------------------------------------------------- /Infrastructure/InternalApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/Infrastructure/InternalApp.cs -------------------------------------------------------------------------------- /Infrastructure/Model/ApiResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/Infrastructure/Model/ApiResult.cs -------------------------------------------------------------------------------- /Infrastructure/Model/SendEmailDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/Infrastructure/Model/SendEmailDto.cs -------------------------------------------------------------------------------- /Infrastructure/OptionsSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/Infrastructure/OptionsSetting.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/README.md -------------------------------------------------------------------------------- /ZR.Admin.WebApi/.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/.config/dotnet-tools.json -------------------------------------------------------------------------------- /ZR.Admin.WebApi/Controllers/BaseController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/Controllers/BaseController.cs -------------------------------------------------------------------------------- /ZR.Admin.WebApi/Controllers/CommonController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/Controllers/CommonController.cs -------------------------------------------------------------------------------- /ZR.Admin.WebApi/Controllers/System/ArticleCategoryController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/Controllers/System/ArticleCategoryController.cs -------------------------------------------------------------------------------- /ZR.Admin.WebApi/Controllers/System/ArticleController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/Controllers/System/ArticleController.cs -------------------------------------------------------------------------------- /ZR.Admin.WebApi/Controllers/System/CodeGeneratorController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/Controllers/System/CodeGeneratorController.cs -------------------------------------------------------------------------------- /ZR.Admin.WebApi/Controllers/System/CommonLangController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/Controllers/System/CommonLangController.cs -------------------------------------------------------------------------------- /ZR.Admin.WebApi/Controllers/System/SysConfigController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/Controllers/System/SysConfigController.cs -------------------------------------------------------------------------------- /ZR.Admin.WebApi/Controllers/System/SysDeptController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/Controllers/System/SysDeptController.cs -------------------------------------------------------------------------------- /ZR.Admin.WebApi/Controllers/System/SysDictDataController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/Controllers/System/SysDictDataController.cs -------------------------------------------------------------------------------- /ZR.Admin.WebApi/Controllers/System/SysDictTypeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/Controllers/System/SysDictTypeController.cs -------------------------------------------------------------------------------- /ZR.Admin.WebApi/Controllers/System/SysFileController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/Controllers/System/SysFileController.cs -------------------------------------------------------------------------------- /ZR.Admin.WebApi/Controllers/System/SysLoginController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/Controllers/System/SysLoginController.cs -------------------------------------------------------------------------------- /ZR.Admin.WebApi/Controllers/System/SysMenuController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/Controllers/System/SysMenuController.cs -------------------------------------------------------------------------------- /ZR.Admin.WebApi/Controllers/System/SysNoticeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/Controllers/System/SysNoticeController.cs -------------------------------------------------------------------------------- /ZR.Admin.WebApi/Controllers/System/SysPostController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/Controllers/System/SysPostController.cs -------------------------------------------------------------------------------- /ZR.Admin.WebApi/Controllers/System/SysProfileController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/Controllers/System/SysProfileController.cs -------------------------------------------------------------------------------- /ZR.Admin.WebApi/Controllers/System/SysRoleController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/Controllers/System/SysRoleController.cs -------------------------------------------------------------------------------- /ZR.Admin.WebApi/Controllers/System/SysUserController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/Controllers/System/SysUserController.cs -------------------------------------------------------------------------------- /ZR.Admin.WebApi/Controllers/System/SysUserRoleController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/Controllers/System/SysUserRoleController.cs -------------------------------------------------------------------------------- /ZR.Admin.WebApi/Controllers/System/TasksController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/Controllers/System/TasksController.cs -------------------------------------------------------------------------------- /ZR.Admin.WebApi/Controllers/System/TasksLogController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/Controllers/System/TasksLogController.cs -------------------------------------------------------------------------------- /ZR.Admin.WebApi/Controllers/System/monitor/MonitorController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/Controllers/System/monitor/MonitorController.cs -------------------------------------------------------------------------------- /ZR.Admin.WebApi/Controllers/System/monitor/SysLogininforController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/Controllers/System/monitor/SysLogininforController.cs -------------------------------------------------------------------------------- /ZR.Admin.WebApi/Controllers/System/monitor/SysOperlogController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/Controllers/System/monitor/SysOperlogController.cs -------------------------------------------------------------------------------- /ZR.Admin.WebApi/Controllers/System/monitor/SysUserOnlineController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/Controllers/System/monitor/SysUserOnlineController.cs -------------------------------------------------------------------------------- /ZR.Admin.WebApi/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/Dockerfile -------------------------------------------------------------------------------- /ZR.Admin.WebApi/Extensions/AppServiceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/Extensions/AppServiceExtensions.cs -------------------------------------------------------------------------------- /ZR.Admin.WebApi/Extensions/DbExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/Extensions/DbExtension.cs -------------------------------------------------------------------------------- /ZR.Admin.WebApi/Extensions/EntityExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/Extensions/EntityExtension.cs -------------------------------------------------------------------------------- /ZR.Admin.WebApi/Extensions/HttpContextExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/Extensions/HttpContextExtension.cs -------------------------------------------------------------------------------- /ZR.Admin.WebApi/Extensions/IPRateExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/Extensions/IPRateExtension.cs -------------------------------------------------------------------------------- /ZR.Admin.WebApi/Extensions/LogoExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/Extensions/LogoExtension.cs -------------------------------------------------------------------------------- /ZR.Admin.WebApi/Extensions/SqlSugarCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/Extensions/SqlSugarCache.cs -------------------------------------------------------------------------------- /ZR.Admin.WebApi/Extensions/SwaggerExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/Extensions/SwaggerExtension.cs -------------------------------------------------------------------------------- /ZR.Admin.WebApi/Extensions/TasksExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/Extensions/TasksExtension.cs -------------------------------------------------------------------------------- /ZR.Admin.WebApi/Filters/ActionPermissionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/Filters/ActionPermissionFilter.cs -------------------------------------------------------------------------------- /ZR.Admin.WebApi/Filters/GlobalActionMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/Filters/GlobalActionMonitor.cs -------------------------------------------------------------------------------- /ZR.Admin.WebApi/Filters/GlobalExceptionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/Filters/GlobalExceptionFilter.cs -------------------------------------------------------------------------------- /ZR.Admin.WebApi/Filters/VerifyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/Filters/VerifyAttribute.cs -------------------------------------------------------------------------------- /ZR.Admin.WebApi/Framework/CookieUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/Framework/CookieUtil.cs -------------------------------------------------------------------------------- /ZR.Admin.WebApi/Framework/JsonConverterUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/Framework/JsonConverterUtil.cs -------------------------------------------------------------------------------- /ZR.Admin.WebApi/Framework/JwtUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/Framework/JwtUtil.cs -------------------------------------------------------------------------------- /ZR.Admin.WebApi/Hubs/MessageHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/Hubs/MessageHub.cs -------------------------------------------------------------------------------- /ZR.Admin.WebApi/Hubs/OnlineUsers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/Hubs/OnlineUsers.cs -------------------------------------------------------------------------------- /ZR.Admin.WebApi/Middleware/GlobalExceptionMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/Middleware/GlobalExceptionMiddleware.cs -------------------------------------------------------------------------------- /ZR.Admin.WebApi/NLog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/NLog.config -------------------------------------------------------------------------------- /ZR.Admin.WebApi/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/Program.cs -------------------------------------------------------------------------------- /ZR.Admin.WebApi/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/Properties/PublishProfiles/FolderProfile.pubxml -------------------------------------------------------------------------------- /ZR.Admin.WebApi/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/Properties/launchSettings.json -------------------------------------------------------------------------------- /ZR.Admin.WebApi/ZR.Admin.WebApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/ZR.Admin.WebApi.csproj -------------------------------------------------------------------------------- /ZR.Admin.WebApi/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/appsettings.json -------------------------------------------------------------------------------- /ZR.Admin.WebApi/ip2region.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/ip2region.db -------------------------------------------------------------------------------- /ZR.Admin.WebApi/wwwroot/CodeGenTemplate/CurdForm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/wwwroot/CodeGenTemplate/CurdForm.txt -------------------------------------------------------------------------------- /ZR.Admin.WebApi/wwwroot/CodeGenTemplate/MySqlTemplate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/wwwroot/CodeGenTemplate/MySqlTemplate.txt -------------------------------------------------------------------------------- /ZR.Admin.WebApi/wwwroot/CodeGenTemplate/QueryForm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/wwwroot/CodeGenTemplate/QueryForm.txt -------------------------------------------------------------------------------- /ZR.Admin.WebApi/wwwroot/CodeGenTemplate/SqlTemplate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/wwwroot/CodeGenTemplate/SqlTemplate.txt -------------------------------------------------------------------------------- /ZR.Admin.WebApi/wwwroot/CodeGenTemplate/TableList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/wwwroot/CodeGenTemplate/TableList.txt -------------------------------------------------------------------------------- /ZR.Admin.WebApi/wwwroot/CodeGenTemplate/TplControllers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/wwwroot/CodeGenTemplate/TplControllers.txt -------------------------------------------------------------------------------- /ZR.Admin.WebApi/wwwroot/CodeGenTemplate/TplDto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/wwwroot/CodeGenTemplate/TplDto.txt -------------------------------------------------------------------------------- /ZR.Admin.WebApi/wwwroot/CodeGenTemplate/TplIService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/wwwroot/CodeGenTemplate/TplIService.txt -------------------------------------------------------------------------------- /ZR.Admin.WebApi/wwwroot/CodeGenTemplate/TplModel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/wwwroot/CodeGenTemplate/TplModel.txt -------------------------------------------------------------------------------- /ZR.Admin.WebApi/wwwroot/CodeGenTemplate/TplRepository.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/wwwroot/CodeGenTemplate/TplRepository.txt -------------------------------------------------------------------------------- /ZR.Admin.WebApi/wwwroot/CodeGenTemplate/TplService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/wwwroot/CodeGenTemplate/TplService.txt -------------------------------------------------------------------------------- /ZR.Admin.WebApi/wwwroot/CodeGenTemplate/TplTreeVue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/wwwroot/CodeGenTemplate/TplTreeVue.txt -------------------------------------------------------------------------------- /ZR.Admin.WebApi/wwwroot/CodeGenTemplate/TplVue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/wwwroot/CodeGenTemplate/TplVue.txt -------------------------------------------------------------------------------- /ZR.Admin.WebApi/wwwroot/CodeGenTemplate/TplVueApi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/wwwroot/CodeGenTemplate/TplVueApi.txt -------------------------------------------------------------------------------- /ZR.Admin.WebApi/wwwroot/CodeGenTemplate/TplVueSelect.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/wwwroot/CodeGenTemplate/TplVueSelect.txt -------------------------------------------------------------------------------- /ZR.Admin.WebApi/wwwroot/CodeGenTemplate/v3/TreeVue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/wwwroot/CodeGenTemplate/v3/TreeVue.txt -------------------------------------------------------------------------------- /ZR.Admin.WebApi/wwwroot/CodeGenTemplate/v3/Vue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/wwwroot/CodeGenTemplate/v3/Vue.txt -------------------------------------------------------------------------------- /ZR.Admin.WebApi/wwwroot/logo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Admin.WebApi/wwwroot/logo.txt -------------------------------------------------------------------------------- /ZR.CodeGenerator/CodeGenerateOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.CodeGenerator/CodeGenerateOption.cs -------------------------------------------------------------------------------- /ZR.CodeGenerator/CodeGenerateTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.CodeGenerator/CodeGenerateTemplate.cs -------------------------------------------------------------------------------- /ZR.CodeGenerator/CodeGeneratorTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.CodeGenerator/CodeGeneratorTool.cs -------------------------------------------------------------------------------- /ZR.CodeGenerator/DbProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.CodeGenerator/DbProvider.cs -------------------------------------------------------------------------------- /ZR.CodeGenerator/GenConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.CodeGenerator/GenConstants.cs -------------------------------------------------------------------------------- /ZR.CodeGenerator/Model/GenerateDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.CodeGenerator/Model/GenerateDto.cs -------------------------------------------------------------------------------- /ZR.CodeGenerator/Model/ReplaceDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.CodeGenerator/Model/ReplaceDto.cs -------------------------------------------------------------------------------- /ZR.CodeGenerator/Service/CodeGeneraterService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.CodeGenerator/Service/CodeGeneraterService.cs -------------------------------------------------------------------------------- /ZR.CodeGenerator/ZR.CodeGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.CodeGenerator/ZR.CodeGenerator.csproj -------------------------------------------------------------------------------- /ZR.Common/AliyunOssHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Common/AliyunOssHelper.cs -------------------------------------------------------------------------------- /ZR.Common/Cache/CacheHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Common/Cache/CacheHelper.cs -------------------------------------------------------------------------------- /ZR.Common/Cache/RedisServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Common/Cache/RedisServer.cs -------------------------------------------------------------------------------- /ZR.Common/ExcelHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Common/ExcelHelper.cs -------------------------------------------------------------------------------- /ZR.Common/JnHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Common/JnHelper.cs -------------------------------------------------------------------------------- /ZR.Common/MailHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Common/MailHelper.cs -------------------------------------------------------------------------------- /ZR.Common/Tools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Common/Tools.cs -------------------------------------------------------------------------------- /ZR.Common/WxNoticeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Common/WxNoticeHelper.cs -------------------------------------------------------------------------------- /ZR.Common/ZR.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Common/ZR.Common.csproj -------------------------------------------------------------------------------- /ZR.Model/Models/README.txt: -------------------------------------------------------------------------------- 1 | 此文件夹用于存放业务代码数据库实体类 -------------------------------------------------------------------------------- /ZR.Model/PagedInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/PagedInfo.cs -------------------------------------------------------------------------------- /ZR.Model/PagerInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/PagerInfo.cs -------------------------------------------------------------------------------- /ZR.Model/System/Article.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/System/Article.cs -------------------------------------------------------------------------------- /ZR.Model/System/ArticleCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/System/ArticleCategory.cs -------------------------------------------------------------------------------- /ZR.Model/System/CommonLang.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/System/CommonLang.cs -------------------------------------------------------------------------------- /ZR.Model/System/Dto/ArticleCategoryDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/System/Dto/ArticleCategoryDto.cs -------------------------------------------------------------------------------- /ZR.Model/System/Dto/ArticleDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/System/Dto/ArticleDto.cs -------------------------------------------------------------------------------- /ZR.Model/System/Dto/CommonLangDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/System/Dto/CommonLangDto.cs -------------------------------------------------------------------------------- /ZR.Model/System/Dto/GenTableDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/System/Dto/GenTableDto.cs -------------------------------------------------------------------------------- /ZR.Model/System/Dto/LoginBodyDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/System/Dto/LoginBodyDto.cs -------------------------------------------------------------------------------- /ZR.Model/System/Dto/MenuDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/System/Dto/MenuDto.cs -------------------------------------------------------------------------------- /ZR.Model/System/Dto/RegisterDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/System/Dto/RegisterDto.cs -------------------------------------------------------------------------------- /ZR.Model/System/Dto/RoleUserDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/System/Dto/RoleUserDto.cs -------------------------------------------------------------------------------- /ZR.Model/System/Dto/SysConfigDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/System/Dto/SysConfigDto.cs -------------------------------------------------------------------------------- /ZR.Model/System/Dto/SysDictTypeDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/System/Dto/SysDictTypeDto.cs -------------------------------------------------------------------------------- /ZR.Model/System/Dto/SysFileQueryDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/System/Dto/SysFileQueryDto.cs -------------------------------------------------------------------------------- /ZR.Model/System/Dto/SysLogininfoDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/System/Dto/SysLogininfoDto.cs -------------------------------------------------------------------------------- /ZR.Model/System/Dto/SysNoticeDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/System/Dto/SysNoticeDto.cs -------------------------------------------------------------------------------- /ZR.Model/System/Dto/SysOperLogDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/System/Dto/SysOperLogDto.cs -------------------------------------------------------------------------------- /ZR.Model/System/Dto/SysRoleDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/System/Dto/SysRoleDto.cs -------------------------------------------------------------------------------- /ZR.Model/System/Dto/SysUserDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/System/Dto/SysUserDto.cs -------------------------------------------------------------------------------- /ZR.Model/System/Dto/SysdictDataDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/System/Dto/SysdictDataDto.cs -------------------------------------------------------------------------------- /ZR.Model/System/Dto/TasksDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/System/Dto/TasksDto.cs -------------------------------------------------------------------------------- /ZR.Model/System/Dto/TasksLogDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/System/Dto/TasksLogDto.cs -------------------------------------------------------------------------------- /ZR.Model/System/Generate/GenTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/System/Generate/GenTable.cs -------------------------------------------------------------------------------- /ZR.Model/System/Generate/GenTableColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/System/Generate/GenTableColumn.cs -------------------------------------------------------------------------------- /ZR.Model/System/LoginUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/System/LoginUser.cs -------------------------------------------------------------------------------- /ZR.Model/System/SysBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/System/SysBase.cs -------------------------------------------------------------------------------- /ZR.Model/System/SysConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/System/SysConfig.cs -------------------------------------------------------------------------------- /ZR.Model/System/SysDept.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/System/SysDept.cs -------------------------------------------------------------------------------- /ZR.Model/System/SysDictData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/System/SysDictData.cs -------------------------------------------------------------------------------- /ZR.Model/System/SysDictType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/System/SysDictType.cs -------------------------------------------------------------------------------- /ZR.Model/System/SysFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/System/SysFile.cs -------------------------------------------------------------------------------- /ZR.Model/System/SysLogininfor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/System/SysLogininfor.cs -------------------------------------------------------------------------------- /ZR.Model/System/SysMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/System/SysMenu.cs -------------------------------------------------------------------------------- /ZR.Model/System/SysNotice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/System/SysNotice.cs -------------------------------------------------------------------------------- /ZR.Model/System/SysOperLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/System/SysOperLog.cs -------------------------------------------------------------------------------- /ZR.Model/System/SysPost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/System/SysPost.cs -------------------------------------------------------------------------------- /ZR.Model/System/SysRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/System/SysRole.cs -------------------------------------------------------------------------------- /ZR.Model/System/SysRoleDept.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/System/SysRoleDept.cs -------------------------------------------------------------------------------- /ZR.Model/System/SysRoleMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/System/SysRoleMenu.cs -------------------------------------------------------------------------------- /ZR.Model/System/SysRolePost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/System/SysRolePost.cs -------------------------------------------------------------------------------- /ZR.Model/System/SysTasks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/System/SysTasks.cs -------------------------------------------------------------------------------- /ZR.Model/System/SysTasksLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/System/SysTasksLog.cs -------------------------------------------------------------------------------- /ZR.Model/System/SysUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/System/SysUser.cs -------------------------------------------------------------------------------- /ZR.Model/System/SysUserPost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/System/SysUserPost.cs -------------------------------------------------------------------------------- /ZR.Model/System/SysUserRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/System/SysUserRole.cs -------------------------------------------------------------------------------- /ZR.Model/System/UserConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/System/UserConstants.cs -------------------------------------------------------------------------------- /ZR.Model/System/Vo/LangVo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/System/Vo/LangVo.cs -------------------------------------------------------------------------------- /ZR.Model/System/Vo/RouterVo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/System/Vo/RouterVo.cs -------------------------------------------------------------------------------- /ZR.Model/System/Vo/TreeSelectVo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/System/Vo/TreeSelectVo.cs -------------------------------------------------------------------------------- /ZR.Model/ZR.Model.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Model/ZR.Model.csproj -------------------------------------------------------------------------------- /ZR.Repository/BaseRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Repository/BaseRepository.cs -------------------------------------------------------------------------------- /ZR.Repository/IBaseRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Repository/IBaseRepository.cs -------------------------------------------------------------------------------- /ZR.Repository/ZR.Repository.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Repository/ZR.Repository.csproj -------------------------------------------------------------------------------- /ZR.Service/BaseService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Service/BaseService.cs -------------------------------------------------------------------------------- /ZR.Service/IBaseService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Service/IBaseService.cs -------------------------------------------------------------------------------- /ZR.Service/System/ArticleCategoryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Service/System/ArticleCategoryService.cs -------------------------------------------------------------------------------- /ZR.Service/System/ArticleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Service/System/ArticleService.cs -------------------------------------------------------------------------------- /ZR.Service/System/CacheService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Service/System/CacheService.cs -------------------------------------------------------------------------------- /ZR.Service/System/CommonLangService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Service/System/CommonLangService.cs -------------------------------------------------------------------------------- /ZR.Service/System/GenTableService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Service/System/GenTableService.cs -------------------------------------------------------------------------------- /ZR.Service/System/IService/IArticleCategoryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Service/System/IService/IArticleCategoryService.cs -------------------------------------------------------------------------------- /ZR.Service/System/IService/IArticleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Service/System/IService/IArticleService.cs -------------------------------------------------------------------------------- /ZR.Service/System/IService/ICommonLangService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Service/System/IService/ICommonLangService.cs -------------------------------------------------------------------------------- /ZR.Service/System/IService/IGenTableService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Service/System/IService/IGenTableService.cs -------------------------------------------------------------------------------- /ZR.Service/System/IService/ISysConfigService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Service/System/IService/ISysConfigService.cs -------------------------------------------------------------------------------- /ZR.Service/System/IService/ISysDeptService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Service/System/IService/ISysDeptService.cs -------------------------------------------------------------------------------- /ZR.Service/System/IService/ISysDictDataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Service/System/IService/ISysDictDataService.cs -------------------------------------------------------------------------------- /ZR.Service/System/IService/ISysDictService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Service/System/IService/ISysDictService.cs -------------------------------------------------------------------------------- /ZR.Service/System/IService/ISysFileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Service/System/IService/ISysFileService.cs -------------------------------------------------------------------------------- /ZR.Service/System/IService/ISysLoginService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Service/System/IService/ISysLoginService.cs -------------------------------------------------------------------------------- /ZR.Service/System/IService/ISysMenuService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Service/System/IService/ISysMenuService.cs -------------------------------------------------------------------------------- /ZR.Service/System/IService/ISysNoticeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Service/System/IService/ISysNoticeService.cs -------------------------------------------------------------------------------- /ZR.Service/System/IService/ISysOperLogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Service/System/IService/ISysOperLogService.cs -------------------------------------------------------------------------------- /ZR.Service/System/IService/ISysPermissionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Service/System/IService/ISysPermissionService.cs -------------------------------------------------------------------------------- /ZR.Service/System/IService/ISysPostService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Service/System/IService/ISysPostService.cs -------------------------------------------------------------------------------- /ZR.Service/System/IService/ISysRoleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Service/System/IService/ISysRoleService.cs -------------------------------------------------------------------------------- /ZR.Service/System/IService/ISysTasksLogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Service/System/IService/ISysTasksLogService.cs -------------------------------------------------------------------------------- /ZR.Service/System/IService/ISysTasksQzService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Service/System/IService/ISysTasksQzService.cs -------------------------------------------------------------------------------- /ZR.Service/System/IService/ISysUserPostService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Service/System/IService/ISysUserPostService.cs -------------------------------------------------------------------------------- /ZR.Service/System/IService/ISysUserRoleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Service/System/IService/ISysUserRoleService.cs -------------------------------------------------------------------------------- /ZR.Service/System/IService/ISysUserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Service/System/IService/ISysUserService.cs -------------------------------------------------------------------------------- /ZR.Service/System/SysConfigService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Service/System/SysConfigService.cs -------------------------------------------------------------------------------- /ZR.Service/System/SysDeptService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Service/System/SysDeptService.cs -------------------------------------------------------------------------------- /ZR.Service/System/SysDictDataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Service/System/SysDictDataService.cs -------------------------------------------------------------------------------- /ZR.Service/System/SysDictService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Service/System/SysDictService.cs -------------------------------------------------------------------------------- /ZR.Service/System/SysFileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Service/System/SysFileService.cs -------------------------------------------------------------------------------- /ZR.Service/System/SysLoginService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Service/System/SysLoginService.cs -------------------------------------------------------------------------------- /ZR.Service/System/SysMenuService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Service/System/SysMenuService.cs -------------------------------------------------------------------------------- /ZR.Service/System/SysNoticeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Service/System/SysNoticeService.cs -------------------------------------------------------------------------------- /ZR.Service/System/SysOperLogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Service/System/SysOperLogService.cs -------------------------------------------------------------------------------- /ZR.Service/System/SysPermissionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Service/System/SysPermissionService.cs -------------------------------------------------------------------------------- /ZR.Service/System/SysPostService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Service/System/SysPostService.cs -------------------------------------------------------------------------------- /ZR.Service/System/SysRoleMenuService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Service/System/SysRoleMenuService.cs -------------------------------------------------------------------------------- /ZR.Service/System/SysRoleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Service/System/SysRoleService.cs -------------------------------------------------------------------------------- /ZR.Service/System/SysTasksLogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Service/System/SysTasksLogService.cs -------------------------------------------------------------------------------- /ZR.Service/System/SysTasksQzService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Service/System/SysTasksQzService.cs -------------------------------------------------------------------------------- /ZR.Service/System/SysUserPostService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Service/System/SysUserPostService.cs -------------------------------------------------------------------------------- /ZR.Service/System/SysUserRoleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Service/System/SysUserRoleService.cs -------------------------------------------------------------------------------- /ZR.Service/System/SysUserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Service/System/SysUserService.cs -------------------------------------------------------------------------------- /ZR.Service/ZR.Service.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Service/ZR.Service.csproj -------------------------------------------------------------------------------- /ZR.Tasks/ITaskSchedulerServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Tasks/ITaskSchedulerServer.cs -------------------------------------------------------------------------------- /ZR.Tasks/JobFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Tasks/JobFactory.cs -------------------------------------------------------------------------------- /ZR.Tasks/TaskScheduler/JobBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Tasks/TaskScheduler/JobBase.cs -------------------------------------------------------------------------------- /ZR.Tasks/TaskScheduler/Job_HttpRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Tasks/TaskScheduler/Job_HttpRequest.cs -------------------------------------------------------------------------------- /ZR.Tasks/TaskScheduler/Job_SqlExecute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Tasks/TaskScheduler/Job_SqlExecute.cs -------------------------------------------------------------------------------- /ZR.Tasks/TaskScheduler/Job_SyncTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Tasks/TaskScheduler/Job_SyncTest.cs -------------------------------------------------------------------------------- /ZR.Tasks/TaskSchedulerServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Tasks/TaskSchedulerServer.cs -------------------------------------------------------------------------------- /ZR.Tasks/ZR.Tasks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Tasks/ZR.Tasks.csproj -------------------------------------------------------------------------------- /ZR.Vue/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/.editorconfig -------------------------------------------------------------------------------- /ZR.Vue/.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/.env.development -------------------------------------------------------------------------------- /ZR.Vue/.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/.env.production -------------------------------------------------------------------------------- /ZR.Vue/.env.staging: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/.env.staging -------------------------------------------------------------------------------- /ZR.Vue/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/.eslintignore -------------------------------------------------------------------------------- /ZR.Vue/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/.eslintrc.js -------------------------------------------------------------------------------- /ZR.Vue/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/.gitignore -------------------------------------------------------------------------------- /ZR.Vue/.jsbeautifyrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/.jsbeautifyrc -------------------------------------------------------------------------------- /ZR.Vue/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/.prettierrc.js -------------------------------------------------------------------------------- /ZR.Vue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/README.md -------------------------------------------------------------------------------- /ZR.Vue/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/babel.config.js -------------------------------------------------------------------------------- /ZR.Vue/bat/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/bat/build.bat -------------------------------------------------------------------------------- /ZR.Vue/bat/package.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/bat/package.bat -------------------------------------------------------------------------------- /ZR.Vue/bat/run-web.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/bat/run-web.bat -------------------------------------------------------------------------------- /ZR.Vue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/package.json -------------------------------------------------------------------------------- /ZR.Vue/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/public/favicon.ico -------------------------------------------------------------------------------- /ZR.Vue/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/public/index.html -------------------------------------------------------------------------------- /ZR.Vue/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / -------------------------------------------------------------------------------- /ZR.Vue/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/App.vue -------------------------------------------------------------------------------- /ZR.Vue/src/api/business/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/api/business/demo.js -------------------------------------------------------------------------------- /ZR.Vue/src/api/business/genDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/api/business/genDemo.js -------------------------------------------------------------------------------- /ZR.Vue/src/api/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/api/common.js -------------------------------------------------------------------------------- /ZR.Vue/src/api/monitor/cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/api/monitor/cache.js -------------------------------------------------------------------------------- /ZR.Vue/src/api/monitor/job.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/api/monitor/job.js -------------------------------------------------------------------------------- /ZR.Vue/src/api/monitor/jobLog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/api/monitor/jobLog.js -------------------------------------------------------------------------------- /ZR.Vue/src/api/monitor/logininfor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/api/monitor/logininfor.js -------------------------------------------------------------------------------- /ZR.Vue/src/api/monitor/online.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/api/monitor/online.js -------------------------------------------------------------------------------- /ZR.Vue/src/api/monitor/operlog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/api/monitor/operlog.js -------------------------------------------------------------------------------- /ZR.Vue/src/api/monitor/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/api/monitor/server.js -------------------------------------------------------------------------------- /ZR.Vue/src/api/system/article.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/api/system/article.js -------------------------------------------------------------------------------- /ZR.Vue/src/api/system/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/api/system/config.js -------------------------------------------------------------------------------- /ZR.Vue/src/api/system/dept.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/api/system/dept.js -------------------------------------------------------------------------------- /ZR.Vue/src/api/system/dict/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/api/system/dict/data.js -------------------------------------------------------------------------------- /ZR.Vue/src/api/system/dict/type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/api/system/dict/type.js -------------------------------------------------------------------------------- /ZR.Vue/src/api/system/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/api/system/login.js -------------------------------------------------------------------------------- /ZR.Vue/src/api/system/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/api/system/menu.js -------------------------------------------------------------------------------- /ZR.Vue/src/api/system/notice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/api/system/notice.js -------------------------------------------------------------------------------- /ZR.Vue/src/api/system/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/api/system/post.js -------------------------------------------------------------------------------- /ZR.Vue/src/api/system/role.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/api/system/role.js -------------------------------------------------------------------------------- /ZR.Vue/src/api/system/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/api/system/user.js -------------------------------------------------------------------------------- /ZR.Vue/src/api/system/userRoles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/api/system/userRoles.js -------------------------------------------------------------------------------- /ZR.Vue/src/api/tool/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/api/tool/file.js -------------------------------------------------------------------------------- /ZR.Vue/src/api/tool/gen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/api/tool/gen.js -------------------------------------------------------------------------------- /ZR.Vue/src/assets/401_images/401.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/401_images/401.gif -------------------------------------------------------------------------------- /ZR.Vue/src/assets/404_images/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/404_images/404.png -------------------------------------------------------------------------------- /ZR.Vue/src/assets/404_images/404_cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/404_images/404_cloud.png -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/index.js -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/404.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/Steve-Jobs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/Steve-Jobs.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/alipay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/alipay.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/anq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/anq.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/app.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/app.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/backup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/backup.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/bug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/bug.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/build.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/build.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/button.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/cascader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/cascader.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/chain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/chain.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/chart.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/checkbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/checkbox.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/clipboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/clipboard.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/code.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/codeConsole.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/codeConsole.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/color.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/component.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/component.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/dashboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/dashboard.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/database.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/database.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/date-range.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/date-range.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/date.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/date.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/deploy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/deploy.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/dept.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/dept.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/develop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/develop.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/dict.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/dict.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/dictionary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/dictionary.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/doc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/doc.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/documentation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/documentation.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/download.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/drag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/drag.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/druid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/druid.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/edit.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/education.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/education.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/email.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/error.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/example.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/excel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/excel.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/exit-fullscreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/exit-fullscreen.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/eye-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/eye-open.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/eye.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/form.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/form.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/fullscreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/fullscreen.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/fwb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/fwb.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/github.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/gonggao.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/gonggao.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/guide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/guide.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/icon.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/icon1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/icon1.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/image.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/index.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/index.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/input.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/input.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/international.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/international.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/ipvisits.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/ipvisits.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/java.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/java.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/job.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/job.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/language.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/language.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/link.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/list.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/lock.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/log.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/log.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/login.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/login.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/logininfor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/logininfor.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/markdown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/markdown.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/menu.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/message.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/mnt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/mnt.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/money.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/money.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/monitor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/monitor.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/nested.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/nested.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/number.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/number.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/online.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/online.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/password.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/password.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/pdf.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/people.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/people.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/peoples.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/peoples.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/permission.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/permission.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/phone.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/post.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/post.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/qiniu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/qiniu.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/qq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/qq.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/question.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/question.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/radio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/radio.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/rate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/rate.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/redis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/redis.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/role.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/role.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/row.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/row.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/search.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/select.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/select.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/server.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/server.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/shopping.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/shopping.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/size.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/size.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/skill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/skill.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/slider.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/slider.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/source.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/source.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/sqlMonitor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/sqlMonitor.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/star.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/swagger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/swagger.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/switch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/switch.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/sys-tools.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/sys-tools.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/system.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/system.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/system1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/system1.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/tab.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/table.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/textarea.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/textarea.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/theme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/theme.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/time-range.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/time-range.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/time.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/time.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/tool.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/tool.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/tools.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/tools.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/tree-table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/tree-table.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/tree.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/unlock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/unlock.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/upload.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/user.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/validCode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/validCode.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/visits.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/visits.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/web.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/web.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/wechat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/wechat.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/weixin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/weixin.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/zip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/zip.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svg/zujian.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svg/zujian.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/icons/svgo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/icons/svgo.yml -------------------------------------------------------------------------------- /ZR.Vue/src/assets/image/dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/image/dark.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/image/light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/image/light.svg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/image/login-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/image/login-background.jpg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/image/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/image/profile.jpg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/image/reward.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/image/reward.jpg -------------------------------------------------------------------------------- /ZR.Vue/src/assets/logo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/logo/logo.png -------------------------------------------------------------------------------- /ZR.Vue/src/assets/styles/btn.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/styles/btn.scss -------------------------------------------------------------------------------- /ZR.Vue/src/assets/styles/element-ui.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/styles/element-ui.scss -------------------------------------------------------------------------------- /ZR.Vue/src/assets/styles/element-variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/styles/element-variables.scss -------------------------------------------------------------------------------- /ZR.Vue/src/assets/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/styles/index.scss -------------------------------------------------------------------------------- /ZR.Vue/src/assets/styles/mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/styles/mixin.scss -------------------------------------------------------------------------------- /ZR.Vue/src/assets/styles/sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/styles/sidebar.scss -------------------------------------------------------------------------------- /ZR.Vue/src/assets/styles/transition.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/styles/transition.scss -------------------------------------------------------------------------------- /ZR.Vue/src/assets/styles/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/assets/styles/variables.scss -------------------------------------------------------------------------------- /ZR.Vue/src/components/Breadcrumb/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/components/Breadcrumb/index.vue -------------------------------------------------------------------------------- /ZR.Vue/src/components/Crontab/day.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/components/Crontab/day.vue -------------------------------------------------------------------------------- /ZR.Vue/src/components/Crontab/hour.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/components/Crontab/hour.vue -------------------------------------------------------------------------------- /ZR.Vue/src/components/Crontab/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/components/Crontab/index.vue -------------------------------------------------------------------------------- /ZR.Vue/src/components/Crontab/min.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/components/Crontab/min.vue -------------------------------------------------------------------------------- /ZR.Vue/src/components/Crontab/month.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/components/Crontab/month.vue -------------------------------------------------------------------------------- /ZR.Vue/src/components/Crontab/result.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/components/Crontab/result.vue -------------------------------------------------------------------------------- /ZR.Vue/src/components/Crontab/second.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/components/Crontab/second.vue -------------------------------------------------------------------------------- /ZR.Vue/src/components/Crontab/week.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/components/Crontab/week.vue -------------------------------------------------------------------------------- /ZR.Vue/src/components/Crontab/year.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/components/Crontab/year.vue -------------------------------------------------------------------------------- /ZR.Vue/src/components/DictData/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/components/DictData/index.js -------------------------------------------------------------------------------- /ZR.Vue/src/components/DictTag/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/components/DictTag/index.vue -------------------------------------------------------------------------------- /ZR.Vue/src/components/Echarts/Category.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/components/Echarts/Category.vue -------------------------------------------------------------------------------- /ZR.Vue/src/components/Echarts/Funnel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/components/Echarts/Funnel.vue -------------------------------------------------------------------------------- /ZR.Vue/src/components/Echarts/Gauge.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/components/Echarts/Gauge.vue -------------------------------------------------------------------------------- /ZR.Vue/src/components/Echarts/Graph.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/components/Echarts/Graph.vue -------------------------------------------------------------------------------- /ZR.Vue/src/components/Echarts/HeatMap.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/components/Echarts/HeatMap.vue -------------------------------------------------------------------------------- /ZR.Vue/src/components/Echarts/Line3D.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/components/Echarts/Line3D.vue -------------------------------------------------------------------------------- /ZR.Vue/src/components/Echarts/Point.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/components/Echarts/Point.vue -------------------------------------------------------------------------------- /ZR.Vue/src/components/Echarts/Rich.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/components/Echarts/Rich.vue -------------------------------------------------------------------------------- /ZR.Vue/src/components/Echarts/Sankey.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/components/Echarts/Sankey.vue -------------------------------------------------------------------------------- /ZR.Vue/src/components/Echarts/Scatter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/components/Echarts/Scatter.vue -------------------------------------------------------------------------------- /ZR.Vue/src/components/Echarts/Sunburst.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/components/Echarts/Sunburst.vue -------------------------------------------------------------------------------- /ZR.Vue/src/components/Echarts/ThemeRiver.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/components/Echarts/ThemeRiver.vue -------------------------------------------------------------------------------- /ZR.Vue/src/components/Echarts/WordCloud.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/components/Echarts/WordCloud.vue -------------------------------------------------------------------------------- /ZR.Vue/src/components/Editor/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/components/Editor/index.vue -------------------------------------------------------------------------------- /ZR.Vue/src/components/FileUpload/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/components/FileUpload/index.vue -------------------------------------------------------------------------------- /ZR.Vue/src/components/Hamburger/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/components/Hamburger/index.vue -------------------------------------------------------------------------------- /ZR.Vue/src/components/HeaderSearch/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/components/HeaderSearch/index.vue -------------------------------------------------------------------------------- /ZR.Vue/src/components/IconSelect/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/components/IconSelect/index.vue -------------------------------------------------------------------------------- /ZR.Vue/src/components/IconSelect/requireIcons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/components/IconSelect/requireIcons.js -------------------------------------------------------------------------------- /ZR.Vue/src/components/Notice/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/components/Notice/Index.vue -------------------------------------------------------------------------------- /ZR.Vue/src/components/Pagination/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/components/Pagination/index.vue -------------------------------------------------------------------------------- /ZR.Vue/src/components/PanThumb/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/components/PanThumb/index.vue -------------------------------------------------------------------------------- /ZR.Vue/src/components/ParentView/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/components/ParentView/index.vue -------------------------------------------------------------------------------- /ZR.Vue/src/components/RightPanel/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/components/RightPanel/index.vue -------------------------------------------------------------------------------- /ZR.Vue/src/components/RightToolbar/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/components/RightToolbar/index.vue -------------------------------------------------------------------------------- /ZR.Vue/src/components/Screenfull/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/components/Screenfull/index.vue -------------------------------------------------------------------------------- /ZR.Vue/src/components/SizeSelect/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/components/SizeSelect/index.vue -------------------------------------------------------------------------------- /ZR.Vue/src/components/SvgIcon/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/components/SvgIcon/index.vue -------------------------------------------------------------------------------- /ZR.Vue/src/components/ThemePicker/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/components/ThemePicker/index.vue -------------------------------------------------------------------------------- /ZR.Vue/src/components/TopNav/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/components/TopNav/index.vue -------------------------------------------------------------------------------- /ZR.Vue/src/components/UploadImage/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/components/UploadImage/index.vue -------------------------------------------------------------------------------- /ZR.Vue/src/components/Zr/Doc/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/components/Zr/Doc/index.vue -------------------------------------------------------------------------------- /ZR.Vue/src/components/Zr/Git/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/components/Zr/Git/index.vue -------------------------------------------------------------------------------- /ZR.Vue/src/directive/module/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/directive/module/clipboard.js -------------------------------------------------------------------------------- /ZR.Vue/src/directive/permission/hasPermi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/directive/permission/hasPermi.js -------------------------------------------------------------------------------- /ZR.Vue/src/directive/permission/hasRole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/directive/permission/hasRole.js -------------------------------------------------------------------------------- /ZR.Vue/src/directive/permission/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/directive/permission/index.js -------------------------------------------------------------------------------- /ZR.Vue/src/layout/components/AppMain.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/layout/components/AppMain.vue -------------------------------------------------------------------------------- /ZR.Vue/src/layout/components/Navbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/layout/components/Navbar.vue -------------------------------------------------------------------------------- /ZR.Vue/src/layout/components/Settings/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/layout/components/Settings/index.vue -------------------------------------------------------------------------------- /ZR.Vue/src/layout/components/Sidebar/FixiOSBug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/layout/components/Sidebar/FixiOSBug.js -------------------------------------------------------------------------------- /ZR.Vue/src/layout/components/Sidebar/Item.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/layout/components/Sidebar/Item.vue -------------------------------------------------------------------------------- /ZR.Vue/src/layout/components/Sidebar/Link.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/layout/components/Sidebar/Link.vue -------------------------------------------------------------------------------- /ZR.Vue/src/layout/components/Sidebar/Logo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/layout/components/Sidebar/Logo.vue -------------------------------------------------------------------------------- /ZR.Vue/src/layout/components/Sidebar/SidebarItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/layout/components/Sidebar/SidebarItem.vue -------------------------------------------------------------------------------- /ZR.Vue/src/layout/components/Sidebar/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/layout/components/Sidebar/index.vue -------------------------------------------------------------------------------- /ZR.Vue/src/layout/components/TagsView/ScrollPane.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/layout/components/TagsView/ScrollPane.vue -------------------------------------------------------------------------------- /ZR.Vue/src/layout/components/TagsView/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/layout/components/TagsView/index.vue -------------------------------------------------------------------------------- /ZR.Vue/src/layout/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/layout/components/index.js -------------------------------------------------------------------------------- /ZR.Vue/src/layout/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/layout/index.vue -------------------------------------------------------------------------------- /ZR.Vue/src/layout/mixin/ResizeHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/layout/mixin/ResizeHandler.js -------------------------------------------------------------------------------- /ZR.Vue/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/main.js -------------------------------------------------------------------------------- /ZR.Vue/src/permission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/permission.js -------------------------------------------------------------------------------- /ZR.Vue/src/plugins/cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/plugins/cache.js -------------------------------------------------------------------------------- /ZR.Vue/src/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/plugins/index.js -------------------------------------------------------------------------------- /ZR.Vue/src/plugins/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/plugins/modal.js -------------------------------------------------------------------------------- /ZR.Vue/src/plugins/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/plugins/tab.js -------------------------------------------------------------------------------- /ZR.Vue/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/router/index.js -------------------------------------------------------------------------------- /ZR.Vue/src/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/settings.js -------------------------------------------------------------------------------- /ZR.Vue/src/store/getters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/store/getters.js -------------------------------------------------------------------------------- /ZR.Vue/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/store/index.js -------------------------------------------------------------------------------- /ZR.Vue/src/store/modules/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/store/modules/app.js -------------------------------------------------------------------------------- /ZR.Vue/src/store/modules/permission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/store/modules/permission.js -------------------------------------------------------------------------------- /ZR.Vue/src/store/modules/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/store/modules/settings.js -------------------------------------------------------------------------------- /ZR.Vue/src/store/modules/socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/store/modules/socket.js -------------------------------------------------------------------------------- /ZR.Vue/src/store/modules/tagsView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/store/modules/tagsView.js -------------------------------------------------------------------------------- /ZR.Vue/src/store/modules/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/store/modules/user.js -------------------------------------------------------------------------------- /ZR.Vue/src/utils/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/utils/auth.js -------------------------------------------------------------------------------- /ZR.Vue/src/utils/errorCode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/utils/errorCode.js -------------------------------------------------------------------------------- /ZR.Vue/src/utils/generator/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/utils/generator/config.js -------------------------------------------------------------------------------- /ZR.Vue/src/utils/generator/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/utils/generator/css.js -------------------------------------------------------------------------------- /ZR.Vue/src/utils/generator/drawingDefalut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/utils/generator/drawingDefalut.js -------------------------------------------------------------------------------- /ZR.Vue/src/utils/generator/html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/utils/generator/html.js -------------------------------------------------------------------------------- /ZR.Vue/src/utils/generator/icon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/utils/generator/icon.json -------------------------------------------------------------------------------- /ZR.Vue/src/utils/generator/js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/utils/generator/js.js -------------------------------------------------------------------------------- /ZR.Vue/src/utils/generator/render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/utils/generator/render.js -------------------------------------------------------------------------------- /ZR.Vue/src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/utils/index.js -------------------------------------------------------------------------------- /ZR.Vue/src/utils/jsencrypt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/utils/jsencrypt.js -------------------------------------------------------------------------------- /ZR.Vue/src/utils/permission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/utils/permission.js -------------------------------------------------------------------------------- /ZR.Vue/src/utils/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/utils/request.js -------------------------------------------------------------------------------- /ZR.Vue/src/utils/ruoyi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/utils/ruoyi.js -------------------------------------------------------------------------------- /ZR.Vue/src/utils/scroll-to.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/utils/scroll-to.js -------------------------------------------------------------------------------- /ZR.Vue/src/utils/signalR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/utils/signalR.js -------------------------------------------------------------------------------- /ZR.Vue/src/utils/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/utils/validate.js -------------------------------------------------------------------------------- /ZR.Vue/src/utils/zipdownload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/utils/zipdownload.js -------------------------------------------------------------------------------- /ZR.Vue/src/views/components/Echarts.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/components/Echarts.vue -------------------------------------------------------------------------------- /ZR.Vue/src/views/components/dictData.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/components/dictData.vue -------------------------------------------------------------------------------- /ZR.Vue/src/views/components/icons/element-icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/components/icons/element-icons.js -------------------------------------------------------------------------------- /ZR.Vue/src/views/components/icons/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/components/icons/index.vue -------------------------------------------------------------------------------- /ZR.Vue/src/views/components/icons/svg-icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/components/icons/svg-icons.js -------------------------------------------------------------------------------- /ZR.Vue/src/views/dashboard/BarChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/dashboard/BarChart.vue -------------------------------------------------------------------------------- /ZR.Vue/src/views/dashboard/LineChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/dashboard/LineChart.vue -------------------------------------------------------------------------------- /ZR.Vue/src/views/dashboard/PanelGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/dashboard/PanelGroup.vue -------------------------------------------------------------------------------- /ZR.Vue/src/views/dashboard/PieChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/dashboard/PieChart.vue -------------------------------------------------------------------------------- /ZR.Vue/src/views/dashboard/RaddarChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/dashboard/RaddarChart.vue -------------------------------------------------------------------------------- /ZR.Vue/src/views/dashboard/mixins/resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/dashboard/mixins/resize.js -------------------------------------------------------------------------------- /ZR.Vue/src/views/error/401.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/error/401.vue -------------------------------------------------------------------------------- /ZR.Vue/src/views/error/404.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/error/404.vue -------------------------------------------------------------------------------- /ZR.Vue/src/views/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/index.vue -------------------------------------------------------------------------------- /ZR.Vue/src/views/index_v1.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/index_v1.vue -------------------------------------------------------------------------------- /ZR.Vue/src/views/login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/login.vue -------------------------------------------------------------------------------- /ZR.Vue/src/views/monitor/job/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/monitor/job/index.vue -------------------------------------------------------------------------------- /ZR.Vue/src/views/monitor/job/log.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/monitor/job/log.vue -------------------------------------------------------------------------------- /ZR.Vue/src/views/monitor/logininfor/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/monitor/logininfor/index.vue -------------------------------------------------------------------------------- /ZR.Vue/src/views/monitor/operlog/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/monitor/operlog/index.vue -------------------------------------------------------------------------------- /ZR.Vue/src/views/monitor/server/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/monitor/server/index.vue -------------------------------------------------------------------------------- /ZR.Vue/src/views/redirect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/redirect.vue -------------------------------------------------------------------------------- /ZR.Vue/src/views/register.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/register.vue -------------------------------------------------------------------------------- /ZR.Vue/src/views/system/article/articleCategory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/system/article/articleCategory.vue -------------------------------------------------------------------------------- /ZR.Vue/src/views/system/article/manager.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/system/article/manager.vue -------------------------------------------------------------------------------- /ZR.Vue/src/views/system/article/publish.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/system/article/publish.vue -------------------------------------------------------------------------------- /ZR.Vue/src/views/system/commonLang/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/system/commonLang/index.vue -------------------------------------------------------------------------------- /ZR.Vue/src/views/system/config/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/system/config/index.vue -------------------------------------------------------------------------------- /ZR.Vue/src/views/system/dept/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/system/dept/index.vue -------------------------------------------------------------------------------- /ZR.Vue/src/views/system/dict/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/system/dict/index.vue -------------------------------------------------------------------------------- /ZR.Vue/src/views/system/menu/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/system/menu/index.vue -------------------------------------------------------------------------------- /ZR.Vue/src/views/system/notice/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/system/notice/index.vue -------------------------------------------------------------------------------- /ZR.Vue/src/views/system/post/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/system/post/index.vue -------------------------------------------------------------------------------- /ZR.Vue/src/views/system/role/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/system/role/index.vue -------------------------------------------------------------------------------- /ZR.Vue/src/views/system/roleusers/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/system/roleusers/index.vue -------------------------------------------------------------------------------- /ZR.Vue/src/views/system/user/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/system/user/index.vue -------------------------------------------------------------------------------- /ZR.Vue/src/views/system/user/profile/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/system/user/profile/index.vue -------------------------------------------------------------------------------- /ZR.Vue/src/views/system/user/profile/operLog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/system/user/profile/operLog.vue -------------------------------------------------------------------------------- /ZR.Vue/src/views/system/user/profile/resetPwd.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/system/user/profile/resetPwd.vue -------------------------------------------------------------------------------- /ZR.Vue/src/views/system/user/profile/userAvatar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/system/user/profile/userAvatar.vue -------------------------------------------------------------------------------- /ZR.Vue/src/views/system/user/profile/userInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/system/user/profile/userInfo.vue -------------------------------------------------------------------------------- /ZR.Vue/src/views/tool/build/CodeTypeDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/tool/build/CodeTypeDialog.vue -------------------------------------------------------------------------------- /ZR.Vue/src/views/tool/build/DraggableItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/tool/build/DraggableItem.vue -------------------------------------------------------------------------------- /ZR.Vue/src/views/tool/build/IconsDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/tool/build/IconsDialog.vue -------------------------------------------------------------------------------- /ZR.Vue/src/views/tool/build/RightPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/tool/build/RightPanel.vue -------------------------------------------------------------------------------- /ZR.Vue/src/views/tool/build/TreeNodeDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/tool/build/TreeNodeDialog.vue -------------------------------------------------------------------------------- /ZR.Vue/src/views/tool/build/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/tool/build/index.vue -------------------------------------------------------------------------------- /ZR.Vue/src/views/tool/email/sendEmail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/tool/email/sendEmail.vue -------------------------------------------------------------------------------- /ZR.Vue/src/views/tool/file/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/tool/file/index.vue -------------------------------------------------------------------------------- /ZR.Vue/src/views/tool/gen/basicInfoForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/tool/gen/basicInfoForm.vue -------------------------------------------------------------------------------- /ZR.Vue/src/views/tool/gen/editTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/tool/gen/editTable.vue -------------------------------------------------------------------------------- /ZR.Vue/src/views/tool/gen/genInfoForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/tool/gen/genInfoForm.vue -------------------------------------------------------------------------------- /ZR.Vue/src/views/tool/gen/importTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/tool/gen/importTable.vue -------------------------------------------------------------------------------- /ZR.Vue/src/views/tool/gen/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/tool/gen/index.vue -------------------------------------------------------------------------------- /ZR.Vue/src/views/tool/swagger/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/src/views/tool/swagger/index.vue -------------------------------------------------------------------------------- /ZR.Vue/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZR.Vue/vue.config.js -------------------------------------------------------------------------------- /ZRAdmin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/ZRAdmin.sln -------------------------------------------------------------------------------- /document/admin-mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/document/admin-mysql.sql -------------------------------------------------------------------------------- /document/admin-sqlserver-表字段说明导入.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/document/admin-sqlserver-表字段说明导入.sql -------------------------------------------------------------------------------- /document/admin-sqlserver.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/document/admin-sqlserver.sql -------------------------------------------------------------------------------- /document/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/document/images/1.png -------------------------------------------------------------------------------- /document/images/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/document/images/10.png -------------------------------------------------------------------------------- /document/images/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/document/images/11.png -------------------------------------------------------------------------------- /document/images/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/document/images/12.png -------------------------------------------------------------------------------- /document/images/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/document/images/13.png -------------------------------------------------------------------------------- /document/images/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/document/images/14.png -------------------------------------------------------------------------------- /document/images/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/document/images/15.png -------------------------------------------------------------------------------- /document/images/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/document/images/16.png -------------------------------------------------------------------------------- /document/images/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/document/images/17.png -------------------------------------------------------------------------------- /document/images/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/document/images/18.png -------------------------------------------------------------------------------- /document/images/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/document/images/19.png -------------------------------------------------------------------------------- /document/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/document/images/2.png -------------------------------------------------------------------------------- /document/images/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/document/images/20.png -------------------------------------------------------------------------------- /document/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/document/images/3.png -------------------------------------------------------------------------------- /document/images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/document/images/4.png -------------------------------------------------------------------------------- /document/images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/document/images/5.png -------------------------------------------------------------------------------- /document/images/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/document/images/6.png -------------------------------------------------------------------------------- /document/images/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/document/images/7.png -------------------------------------------------------------------------------- /document/images/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/document/images/8.png -------------------------------------------------------------------------------- /document/images/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/document/images/9.png -------------------------------------------------------------------------------- /document/images/pay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/document/images/pay.jpg -------------------------------------------------------------------------------- /document/zradmin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy19870827/ZrAdminNetCore/HEAD/document/zradmin.ini -------------------------------------------------------------------------------- /startup.bat: -------------------------------------------------------------------------------- 1 | dotnet watch --project ZR.Admin.WebApi run --------------------------------------------------------------------------------