├── .gitattributes ├── .gitignore ├── Docs ├── 关于文章权限.docx ├── 前端开发 │ ├── 1 基本介绍.docx │ ├── 2 模块开发.docx │ ├── 3 组件开发.docx │ ├── 4 开发规范.docx │ ├── 交互式组件.docx │ ├── 引用的包.docx │ └── 组件编写注意要点.docx ├── 前端设计图.EAP ├── 后端开发文档.docx ├── 后端设计图.EAP └── 读我 readme.txt ├── IEManageSystem.sln ├── LICENSE ├── README.md ├── img ├── show1.png ├── show2.png └── show3.png ├── src ├── IEManageSystem.ApiAuthorization │ ├── DomainModel │ │ ├── ApiScopes │ │ │ ├── ApiScope.cs │ │ │ ├── ApiScopeManager.cs │ │ │ ├── ApiScopePermission.cs │ │ │ ├── AuthorizationNodes │ │ │ │ ├── ApiManageScope.cs │ │ │ │ ├── ApiQueryScope.cs │ │ │ │ └── ApiScopeNode.cs │ │ │ └── UserScopeAccessAuthority.cs │ │ └── CheckPermissionService.cs │ ├── IEApiAuthorizationModule.cs │ └── IEManageSystem.ApiAuthorization.csproj ├── IEManageSystem.Application │ ├── ApiScopeProviders │ │ └── ApiScopeProvider.cs │ ├── Attributes │ │ ├── ApiAuthorizationAttribute.cs │ │ └── ApiAuthorizationQueryAttribute.cs │ ├── Dtos │ │ ├── ApiAuthorization │ │ │ └── ApiScopeDto.cs │ │ ├── CMS │ │ │ ├── ComponentDataDto.cs │ │ │ ├── ContentPagePeimissionCollectionDto.cs │ │ │ ├── ContentPagePermissionDto.cs │ │ │ ├── EntityEditDto.cs │ │ │ ├── LogicDto.cs │ │ │ ├── MenuDto.cs │ │ │ ├── PageDataDto.cs │ │ │ ├── PageDto.cs │ │ │ ├── PictureDto.cs │ │ │ ├── SingleComponentDataDto.cs │ │ │ └── TagDto.cs │ │ ├── Common │ │ │ └── SiteSettingDto.cs │ │ └── Core │ │ │ ├── PermissionDto.cs │ │ │ ├── RoleDto.cs │ │ │ └── Users │ │ │ ├── AccountDto.cs │ │ │ ├── SafetyProblemDto.cs │ │ │ └── UserDto.cs │ ├── IEManageSystem.Application.csproj │ ├── IEManageSystemAppServiceBase.cs │ ├── IEManageSystemApplicationModule.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Services │ │ ├── Accounts │ │ ├── AccountAppService.cs │ │ ├── Dto │ │ │ ├── LoginInput.cs │ │ │ ├── LoginOutput.cs │ │ │ ├── RegisterInput.cs │ │ │ └── RegisterOutput.cs │ │ └── IAccountAppService.cs │ │ ├── ManageHome │ │ ├── AuthorizeManage │ │ │ ├── Admins │ │ │ │ ├── AdminManageAppService.cs │ │ │ │ ├── Dto │ │ │ │ │ ├── AddRoleInput.cs │ │ │ │ │ ├── AddRoleOutput.cs │ │ │ │ │ ├── CreateAdminInput.cs │ │ │ │ │ ├── CreateAdminOutput.cs │ │ │ │ │ ├── DeleteAdminInput.cs │ │ │ │ │ ├── DeleteAdminOutput.cs │ │ │ │ │ ├── GetAdminNumInput.cs │ │ │ │ │ ├── GetAdminNumOutput.cs │ │ │ │ │ ├── GetAdminRolesInput.cs │ │ │ │ │ ├── GetAdminRolesOutput.cs │ │ │ │ │ ├── GetAdminsInput.cs │ │ │ │ │ ├── GetAdminsOutput.cs │ │ │ │ │ ├── GetPermissionsInput.cs │ │ │ │ │ ├── GetPermissionsOutput.cs │ │ │ │ │ ├── RemoveRoleInput.cs │ │ │ │ │ ├── RemoveRoleOutput.cs │ │ │ │ │ ├── UpdateAdminInput.cs │ │ │ │ │ └── UpdateAdminOutput.cs │ │ │ │ └── IAdminManageAppService.cs │ │ │ ├── ApiScopes │ │ │ │ ├── ApiScopeManageAppService.cs │ │ │ │ ├── Dto │ │ │ │ │ ├── AddManagePermissionInput.cs │ │ │ │ │ ├── AddManagePermissionOutput.cs │ │ │ │ │ ├── AddQueryPermissionInput.cs │ │ │ │ │ ├── AddQueryPermissionOutput.cs │ │ │ │ │ ├── GetApiScopesInput.cs │ │ │ │ │ ├── GetApiScopesOutput.cs │ │ │ │ │ ├── GetManagePermissionsByNameInput.cs │ │ │ │ │ ├── GetManagePermissionsByNameOutput.cs │ │ │ │ │ ├── GetManagePermissionsInput.cs │ │ │ │ │ ├── GetManagePermissionsOutput.cs │ │ │ │ │ ├── GetQueryPermissionsByNameInput.cs │ │ │ │ │ ├── GetQueryPermissionsByNameOutput.cs │ │ │ │ │ ├── GetQueryPermissionsInput.cs │ │ │ │ │ ├── GetQueryPermissionsOutput.cs │ │ │ │ │ ├── RemoveManagePermissionInput.cs │ │ │ │ │ ├── RemoveManagePermissionOutput.cs │ │ │ │ │ ├── RemoveQueryPermissionInput.cs │ │ │ │ │ └── RemoveQueryPermissionOutput.cs │ │ │ │ └── IApiScopeManageAppService.cs │ │ │ ├── Permissions │ │ │ │ ├── Dto │ │ │ │ │ ├── AddPermissionInput.cs │ │ │ │ │ ├── AddPermissionOutput.cs │ │ │ │ │ ├── DeletePermissionInput.cs │ │ │ │ │ ├── DeletePermissionOutput.cs │ │ │ │ │ ├── GetPermissionNumInput.cs │ │ │ │ │ ├── GetPermissionNumOutput.cs │ │ │ │ │ ├── GetPermissionsInput.cs │ │ │ │ │ ├── GetPermissionsOutput.cs │ │ │ │ │ ├── UpdatePermissionInput.cs │ │ │ │ │ └── UpdatePermissionOutput.cs │ │ │ │ ├── IPermissionManageAppService.cs │ │ │ │ └── PermissionManageAppService.cs │ │ │ └── Roles │ │ │ │ ├── Dto │ │ │ │ ├── AddPermissionInput.cs │ │ │ │ ├── AddPermissionOutput.cs │ │ │ │ ├── AddRoleInput.cs │ │ │ │ ├── AddRoleOutput.cs │ │ │ │ ├── DeleteRoleInput.cs │ │ │ │ ├── DeleteRoleOutput.cs │ │ │ │ ├── GetPermissionsInput.cs │ │ │ │ ├── GetPermissionsOutput.cs │ │ │ │ ├── GetRoleNumInput.cs │ │ │ │ ├── GetRoleNumOutput.cs │ │ │ │ ├── GetRolesInput.cs │ │ │ │ ├── GetRolesOutput.cs │ │ │ │ ├── RemovePermissionInput.cs │ │ │ │ ├── RemovePermissionOutput.cs │ │ │ │ ├── UpdateRoleInput.cs │ │ │ │ └── UpdateRoleOutput.cs │ │ │ │ ├── IRoleManageAppService.cs │ │ │ │ └── RoleManageAppService.cs │ │ ├── CMS │ │ │ ├── Logics │ │ │ │ ├── Dto │ │ │ │ │ ├── ExecLogicInput.cs │ │ │ │ │ ├── ExecLogicOutput.cs │ │ │ │ │ ├── GetLogicsInput.cs │ │ │ │ │ ├── GetLogicsOutput.cs │ │ │ │ │ ├── RegisterLogicInput.cs │ │ │ │ │ └── RegisterLogicOutput.cs │ │ │ │ ├── ILogicAppService.cs │ │ │ │ ├── ILogicExecAppService.cs │ │ │ │ ├── LogicAppService.cs │ │ │ │ └── LogicExecAppService.cs │ │ │ ├── Menus │ │ │ │ ├── Dto │ │ │ │ │ ├── AddCompositeMenuInput.cs │ │ │ │ │ ├── AddCompositeMenuOutput.cs │ │ │ │ │ ├── AddLeafMenuInput.cs │ │ │ │ │ ├── AddLeafMenuOutput.cs │ │ │ │ │ ├── AddMenuInput.cs │ │ │ │ │ ├── AddMenuOutput.cs │ │ │ │ │ ├── GetMenuInput.cs │ │ │ │ │ ├── GetMenuOutput.cs │ │ │ │ │ ├── GetMenusInput.cs │ │ │ │ │ ├── GetMenusOutput.cs │ │ │ │ │ ├── RemoveMenuInput.cs │ │ │ │ │ ├── RemoveMenuOutput.cs │ │ │ │ │ ├── UpdateMenuInput.cs │ │ │ │ │ └── UpdateMenuOutput.cs │ │ │ │ ├── IMenuAppService.cs │ │ │ │ ├── IMenuManageAppService.cs │ │ │ │ ├── MenuAppService.cs │ │ │ │ └── MenuManageAppService.cs │ │ │ ├── Pages │ │ │ │ ├── Dto │ │ │ │ │ ├── AddPageDataInput.cs │ │ │ │ │ ├── AddPageDataOutput.cs │ │ │ │ │ ├── AddPageInput.cs │ │ │ │ │ ├── AddPageOutput.cs │ │ │ │ │ ├── DeletePageDataInput.cs │ │ │ │ │ ├── DeletePageDataOutput.cs │ │ │ │ │ ├── DeletePageInput.cs │ │ │ │ │ ├── DeletePageOutput.cs │ │ │ │ │ ├── GetPageDataInput.cs │ │ │ │ │ ├── GetPageDataOutput.cs │ │ │ │ │ ├── GetPageDatasInput.cs │ │ │ │ │ ├── GetPageDatasOutput.cs │ │ │ │ │ ├── GetPagePermissionsInput.cs │ │ │ │ │ ├── GetPagePermissionsOutput.cs │ │ │ │ │ ├── GetPagesInput.cs │ │ │ │ │ ├── GetPagesOutput.cs │ │ │ │ │ ├── UpdateComponentDataInput.cs │ │ │ │ │ ├── UpdateComponentDataOutput.cs │ │ │ │ │ ├── UpdateContentPagePermissionInput.cs │ │ │ │ │ ├── UpdateContentPagePermissionOutput.cs │ │ │ │ │ ├── UpdatePageDataInput.cs │ │ │ │ │ ├── UpdatePageDataOutput.cs │ │ │ │ │ ├── UpdatePageInput.cs │ │ │ │ │ └── UpdatePageOutput.cs │ │ │ │ ├── IPageDataManageAppService.cs │ │ │ │ ├── IPageDataQueryAppService.cs │ │ │ │ ├── IPageManageAppService.cs │ │ │ │ ├── IPageQueryAppService.cs │ │ │ │ ├── PageDataManageAppService.cs │ │ │ │ ├── PageDataQueryAppService.cs │ │ │ │ ├── PageManageAppService.cs │ │ │ │ └── PageQueryAppService.cs │ │ │ └── Pictures │ │ │ │ ├── Dto │ │ │ │ ├── CreateDirInput.cs │ │ │ │ ├── CreateDirOutput.cs │ │ │ │ ├── DeleteDirInput.cs │ │ │ │ ├── DeleteDirOutput.cs │ │ │ │ ├── DeletePictureInput.cs │ │ │ │ ├── DeletePictureOutput.cs │ │ │ │ ├── GetFileAndDirsInput.cs │ │ │ │ ├── GetFileAndDirsOutput.cs │ │ │ │ ├── SavePictureInput.cs │ │ │ │ └── SavePictureOutput.cs │ │ │ │ ├── IPictureManageAppService.cs │ │ │ │ └── PictureManageAppService.cs │ │ └── Setting │ │ │ ├── SiteSettingQuerys │ │ │ ├── Dto │ │ │ │ ├── GetSiteSettingsInput.cs │ │ │ │ └── GetSiteSettingsOutput.cs │ │ │ ├── ISiteSettingQueryAppService.cs │ │ │ └── SiteSettingQueryAppService.cs │ │ │ └── SiteSettings │ │ │ ├── Dto │ │ │ ├── DeleteSiteSettingsInput.cs │ │ │ ├── DeleteSiteSettingsOutput.cs │ │ │ ├── SetSiteSettingsInput.cs │ │ │ └── SetSiteSettingsOutput.cs │ │ │ ├── ISiteSettingManageAppService.cs │ │ │ └── SiteSettingManageAppService.cs │ │ └── Users │ │ ├── Dto │ │ ├── GetUserInfoInput.cs │ │ ├── GetUserInfoOutput.cs │ │ ├── SetPassageInput.cs │ │ ├── SetPassageOutput.cs │ │ ├── SetSafetyProblemInput.cs │ │ ├── SetSafetyProblemOutput.cs │ │ ├── SetUserInfoInput.cs │ │ └── SetUserInfoOutput.cs │ │ ├── IUserAppService.cs │ │ └── UserAppService.cs ├── IEManageSystem.CMS │ ├── DomainModel │ │ ├── CmsComponent.cs │ │ ├── ComponentDatas │ │ │ ├── ComponentDataManager.cs │ │ │ ├── ComponentSingleData.cs │ │ │ └── ContentComponentData.cs │ │ ├── ContentPagePermissionCollections │ │ │ ├── ContentPagePermission.cs │ │ │ └── ContentPagePermissionCollection.cs │ │ ├── DeletePageDataService.cs │ │ ├── DeletePageService.cs │ │ ├── EntityEdit.cs │ │ ├── ISingleData.cs │ │ ├── Logics │ │ │ ├── ExecLogicService.cs │ │ │ ├── IActuator.cs │ │ │ ├── IActuatorFactory.cs │ │ │ ├── IExecLogicService.cs │ │ │ ├── IRegisterLogicService.cs │ │ │ ├── Logic.cs │ │ │ └── RegisterLogicService.cs │ │ ├── Menus │ │ │ ├── CompositeMenu.cs │ │ │ ├── LeafMenu.cs │ │ │ ├── MenuBase.cs │ │ │ └── MenuManager.cs │ │ ├── PageDatas │ │ │ ├── PageData.cs │ │ │ ├── PageDataManager.cs │ │ │ └── Tag.cs │ │ ├── Pages │ │ │ ├── Page.cs │ │ │ └── PageManager.cs │ │ ├── Pictures │ │ │ ├── Picture.cs │ │ │ └── PictureManager.cs │ │ └── UpdateContentComponentDataService.cs │ ├── IEManageSystem.CMS.csproj │ ├── IEManageSystemCMSModule.cs │ └── Repositorys │ │ └── IPageDataRepository.cs ├── IEManageSystem.Common │ ├── DomainModel │ │ └── SiteSetting.cs │ └── IEManageSystem.Common.csproj ├── IEManageSystem.CommonInfrastructure │ ├── CMS │ │ ├── Actuator.cs │ │ ├── ActuatorAssemblyLoadContext.cs │ │ ├── ActuatorFactory.cs │ │ ├── BaseActuator.cs │ │ └── WriteLogicCodeFile.cs │ ├── Core │ │ └── IEMemoryCache.cs │ ├── IEManageSystem.CommonInfrastructure.csproj │ └── IEManageSystemCommonInfrastructureModule.cs ├── IEManageSystem.Core │ ├── Configuration │ │ └── AppConfigurations.cs │ ├── Entitys │ │ └── Authorization │ │ │ ├── Identitys │ │ │ └── IdentityUser.cs │ │ │ ├── LoginManagers │ │ │ ├── AbpLoginResult.cs │ │ │ ├── AbpLoginResultType.cs │ │ │ └── LoginManager.cs │ │ │ ├── Permissions │ │ │ ├── Permission.cs │ │ │ ├── PermissionDeleteEventData.cs │ │ │ └── PermissionManager.cs │ │ │ ├── Roles │ │ │ ├── Role.cs │ │ │ ├── RoleManager.cs │ │ │ └── RolePermission.cs │ │ │ └── Users │ │ │ ├── Accounts │ │ │ ├── Account.cs │ │ │ └── SafetyProblem.cs │ │ │ ├── AdminManager.cs │ │ │ ├── RegisterManager.cs │ │ │ ├── User.cs │ │ │ ├── UserManager.cs │ │ │ └── UserRole.cs │ ├── IEManageSystem.Core.csproj │ ├── IEManageSystemConsts.cs │ ├── IEManageSystemCoreModule.cs │ ├── Localization │ │ ├── IEManageSystemLocalizationConfigurer.cs │ │ └── SourceFiles │ │ │ ├── IEManageSystem-en.json │ │ │ ├── IEManageSystem-tr.json │ │ │ ├── IEManageSystem-zh-CHS.json │ │ │ └── IEManageSystem.json │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Repositorys │ │ └── IEfRepository.cs │ └── Web │ │ ├── IIEMemoryCache.cs │ │ └── WebContentFolderHelper.cs ├── IEManageSystem.EntityFrameworkCore │ ├── Configures │ │ ├── ApiAuthorization │ │ │ └── ApiScopeNodeConfigure.cs │ │ ├── CMS │ │ │ ├── ComponentDataConfigure.cs │ │ │ ├── CompositeMenuConfigure.cs │ │ │ ├── ContentPagePeimissionCollectionConfigure.cs │ │ │ ├── LeafMenuConfigure.cs │ │ │ ├── MenuBaseConfigure.cs │ │ │ └── PageDataConfigure.cs │ │ └── Core │ │ │ ├── AccountConfigure.cs │ │ │ ├── PermissionConfigure.cs │ │ │ ├── RoleConfigure.cs │ │ │ ├── RolePermissionConfigure.cs │ │ │ ├── UserConfigure.cs │ │ │ └── UserRoleConfigure.cs │ ├── EntityFrameworkCore │ │ ├── DbContextOptionsConfigurer.cs │ │ ├── IEManageSystemDbContext.cs │ │ ├── IEManageSystemDbContextFactory.cs │ │ └── IEManageSystemEntityFrameworkCoreModule.cs │ ├── IEManageSystem.EntityFrameworkCore.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Repositorys │ │ ├── CMSRepositorys │ │ └── PageDataRepository.cs │ │ ├── EfRepository.cs │ │ └── EfRepositoryBase.cs ├── IEManageSystem.JwtAuthentication │ ├── Authorizations │ │ ├── IEAuthorizationPolicy.cs │ │ └── IEAuthorizationRequirement.cs │ ├── ClaimManager.cs │ ├── Configuration │ │ └── JwtAuthenConfiguration.cs │ ├── IEJwtAuthenticationModule.cs │ ├── IEManageSystem.JwtAuthentication.csproj │ ├── JwtAuthenticationExtensions.cs │ ├── JwtTokenHandler.cs │ └── Model │ │ ├── JwtClaimType.cs │ │ └── UserClaimInfo.cs ├── IEManageSystem.Web │ ├── ClientApp │ │ ├── .gitignore │ │ ├── .vscode │ │ │ └── launch.json │ │ ├── babel.config.js │ │ ├── createModulesFile.js │ │ ├── index.js │ │ ├── package.json │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── logo.png │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ ├── react-native.config.js │ │ ├── src │ │ │ ├── Assets │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ ├── common.css │ │ │ │ │ └── open-iconic-bootstrap.min.css │ │ │ │ ├── fonts │ │ │ │ │ ├── fontawesome │ │ │ │ │ │ ├── fa-brands-400.eot │ │ │ │ │ │ ├── fa-brands-400.html │ │ │ │ │ │ ├── fa-brands-400.svg │ │ │ │ │ │ ├── fa-brands-400.woff │ │ │ │ │ │ ├── fa-brands-400d41d.eot │ │ │ │ │ │ ├── fa-brands-401.html │ │ │ │ │ │ ├── fa-light-300.eot │ │ │ │ │ │ ├── fa-light-300.html │ │ │ │ │ │ ├── fa-light-300.svg │ │ │ │ │ │ ├── fa-light-300.woff │ │ │ │ │ │ ├── fa-light-300d41d.eot │ │ │ │ │ │ ├── fa-light-301.html │ │ │ │ │ │ ├── fa-regular-400.eot │ │ │ │ │ │ ├── fa-regular-400.html │ │ │ │ │ │ ├── fa-regular-400.svg │ │ │ │ │ │ ├── fa-regular-400.woff │ │ │ │ │ │ ├── fa-regular-400d41d.eot │ │ │ │ │ │ ├── fa-regular-401.html │ │ │ │ │ │ ├── fa-solid-900.eot │ │ │ │ │ │ ├── fa-solid-900.html │ │ │ │ │ │ ├── fa-solid-900.svg │ │ │ │ │ │ ├── fa-solid-900.woff │ │ │ │ │ │ ├── fa-solid-900d41d.eot │ │ │ │ │ │ └── fa-solid-901.html │ │ │ │ │ ├── gt-walsheim │ │ │ │ │ │ ├── GTWalsheim.html │ │ │ │ │ │ ├── GTWalsheim.svg │ │ │ │ │ │ ├── GTWalsheim.woff │ │ │ │ │ │ ├── GTWalsheimBold.html │ │ │ │ │ │ ├── GTWalsheimBold.svg │ │ │ │ │ │ ├── GTWalsheimBold.woff │ │ │ │ │ │ ├── GTWalsheimBoldd41d.eot │ │ │ │ │ │ ├── GTWalsheimLight.html │ │ │ │ │ │ ├── GTWalsheimLight.svg │ │ │ │ │ │ ├── GTWalsheimLight.woff │ │ │ │ │ │ ├── GTWalsheimLightd41d.eot │ │ │ │ │ │ ├── GTWalsheimProTrial-Thin-2.html │ │ │ │ │ │ ├── GTWalsheimProTrial-Thin.html │ │ │ │ │ │ ├── GTWalsheimProTrial-Thin.svg │ │ │ │ │ │ ├── GTWalsheimProTrial-Thin.woff │ │ │ │ │ │ ├── GTWalsheimProTrial-Thind41d.eot │ │ │ │ │ │ └── GTWalsheimd41d.eot │ │ │ │ │ ├── open-iconic.eot │ │ │ │ │ ├── open-iconic.otf │ │ │ │ │ ├── open-iconic.svg │ │ │ │ │ ├── open-iconic.ttf │ │ │ │ │ └── open-iconic.woff │ │ │ │ └── images │ │ │ │ │ ├── background.jpg │ │ │ │ │ ├── default_avatar.png │ │ │ │ │ ├── default_avatar2.png │ │ │ │ │ ├── default_post_img.jpg │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── nofind.jpg │ │ │ │ │ └── nofind480x300.jpg │ │ │ ├── Common │ │ │ │ ├── BaseCMSManage │ │ │ │ │ ├── ComponentContainerBoxs │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── ComponentContext │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── Components │ │ │ │ │ │ ├── BaseComponents │ │ │ │ │ │ │ ├── BaseComponent │ │ │ │ │ │ │ │ ├── BaseComponent.js │ │ │ │ │ │ │ │ ├── BaseComponentSettingConfig.js │ │ │ │ │ │ │ │ ├── BaseConfig.js │ │ │ │ │ │ │ │ ├── BasicComponentSettingConfig.js │ │ │ │ │ │ │ │ ├── CommonStyleSettingConfig │ │ │ │ │ │ │ │ │ ├── Setting.ts │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ ├── ComponentContainer.js │ │ │ │ │ │ │ │ ├── ComponentSettingConfig.js │ │ │ │ │ │ │ │ ├── DeleteConfig.js │ │ │ │ │ │ │ │ ├── FontComponentSettingConfig │ │ │ │ │ │ │ │ │ ├── Setting.ts │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ ├── IEditConfig.js │ │ │ │ │ │ │ │ ├── PostFieldSettingConfig │ │ │ │ │ │ │ │ │ ├── Setting.ts │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ ├── BaseContainerComponent │ │ │ │ │ │ │ │ ├── ComponentContainer.js │ │ │ │ │ │ │ │ └── ContainerConfig.js │ │ │ │ │ │ │ ├── BaseContentLeafComponent │ │ │ │ │ │ │ │ ├── ComponentContainer.js │ │ │ │ │ │ │ │ └── ComponentDataConfig.js │ │ │ │ │ │ │ ├── BaseMenuComponent │ │ │ │ │ │ │ │ ├── ComponentContainer.js │ │ │ │ │ │ │ │ └── MenuComponentSettingConfig.js │ │ │ │ │ │ │ ├── BasePageLeafComponent │ │ │ │ │ │ │ │ ├── ComponentContainer.js │ │ │ │ │ │ │ │ └── PageLeafComponentSettingConfig.js │ │ │ │ │ │ │ └── InteractiveComponent │ │ │ │ │ │ │ │ ├── ComponentComponentContainer.js │ │ │ │ │ │ │ │ ├── ContainerComponentContainer.js │ │ │ │ │ │ │ │ ├── InteractivConfigFeature.js │ │ │ │ │ │ │ │ ├── InteractiveComponentConfig.js │ │ │ │ │ │ │ │ ├── InteractiveContainerConfig.js │ │ │ │ │ │ │ │ └── InteractiveType.js │ │ │ │ │ │ ├── ComponentDescribe.js │ │ │ │ │ │ ├── ComponentFactory.js │ │ │ │ │ │ ├── Template.js │ │ │ │ │ │ └── TemplatePage.js │ │ │ │ │ ├── IEReduxs │ │ │ │ │ │ ├── Actions.ts │ │ │ │ │ │ ├── CmsRedux.ts │ │ │ │ │ │ ├── ContentComponentDatas │ │ │ │ │ │ │ ├── Action.ts │ │ │ │ │ │ │ └── Reducer.ts │ │ │ │ │ │ ├── DefaultComponentDatas │ │ │ │ │ │ │ ├── Action.ts │ │ │ │ │ │ │ └── Reducer.ts │ │ │ │ │ │ ├── Menus │ │ │ │ │ │ │ ├── Action.ts │ │ │ │ │ │ │ └── Reducer.ts │ │ │ │ │ │ ├── PageComponents │ │ │ │ │ │ │ ├── Action.ts │ │ │ │ │ │ │ ├── Reducer.ts │ │ │ │ │ │ │ └── Specs │ │ │ │ │ │ │ │ ├── BindSpec.ts │ │ │ │ │ │ │ │ ├── ISpec.ts │ │ │ │ │ │ │ │ ├── RNSpec.ts │ │ │ │ │ │ │ │ ├── SpecResult.ts │ │ │ │ │ │ │ │ └── SpecsChecker.ts │ │ │ │ │ │ ├── PageDatas │ │ │ │ │ │ │ ├── Action.ts │ │ │ │ │ │ │ └── Reducer.ts │ │ │ │ │ │ ├── Pages │ │ │ │ │ │ │ ├── Action.ts │ │ │ │ │ │ │ └── Reducer.ts │ │ │ │ │ │ ├── Reducers.ts │ │ │ │ │ │ └── StateStuct.json │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── ComponentDataModel.ts │ │ │ │ │ │ ├── ContentPagePermissionCollection.ts │ │ │ │ │ │ ├── DataCollectionBase.ts │ │ │ │ │ │ ├── EntityEdit.ts │ │ │ │ │ │ ├── LogicModel.ts │ │ │ │ │ │ ├── MenuModel.ts │ │ │ │ │ │ ├── PageDatas │ │ │ │ │ │ │ ├── PageDataModel.ts │ │ │ │ │ │ │ └── TagModel.ts │ │ │ │ │ │ ├── Pages │ │ │ │ │ │ │ ├── CreatePageComponentService.ts │ │ │ │ │ │ │ ├── PageComponentBaseSettingModel.ts │ │ │ │ │ │ │ ├── PageComponentModel.ts │ │ │ │ │ │ │ ├── PageComponentSettingModel.ts │ │ │ │ │ │ │ ├── PageLeafSettingModel.ts │ │ │ │ │ │ │ └── PageModel.ts │ │ │ │ │ │ ├── PictureModel.ts │ │ │ │ │ │ └── SingleDataModel.ts │ │ │ │ │ ├── Module.js │ │ │ │ │ ├── RootComponentContainerBox │ │ │ │ │ │ └── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── BaseLayout │ │ │ │ │ ├── IEReduxs │ │ │ │ │ │ ├── Actions.ts │ │ │ │ │ │ ├── LayoutRedux.ts │ │ │ │ │ │ └── Reducers.ts │ │ │ │ │ ├── ILayoutInstance.js │ │ │ │ │ ├── Menu │ │ │ │ │ │ ├── Menu.ts │ │ │ │ │ │ └── MenuProvider.ts │ │ │ │ │ ├── Module.js │ │ │ │ │ ├── NavTools │ │ │ │ │ │ └── NavToolProvider.ts │ │ │ │ │ └── package.json │ │ │ │ ├── BasePerson │ │ │ │ │ ├── IEReduxs │ │ │ │ │ │ ├── Actions.ts │ │ │ │ │ │ ├── PersonalRedux.ts │ │ │ │ │ │ └── Reducers.ts │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── AccountModel.ts │ │ │ │ │ │ ├── PermissionModel.ts │ │ │ │ │ │ ├── RoleModel.ts │ │ │ │ │ │ ├── SafetyProblemModel.ts │ │ │ │ │ │ └── UserModel.ts │ │ │ │ │ ├── Module.js │ │ │ │ │ └── package.json │ │ │ │ ├── BaseSetting │ │ │ │ │ ├── IEReduxs │ │ │ │ │ │ ├── Actions.ts │ │ │ │ │ │ ├── IERedux.ts │ │ │ │ │ │ └── Reducer.ts │ │ │ │ │ ├── Models │ │ │ │ │ │ └── SiteSettingModel.ts │ │ │ │ │ ├── Module.js │ │ │ │ │ ├── SiteSettings │ │ │ │ │ │ ├── SiteSettingConfig.ts │ │ │ │ │ │ ├── SiteSettingGroupConfig.ts │ │ │ │ │ │ └── SiteSettingManager.ts │ │ │ │ │ └── package.json │ │ │ │ ├── Core │ │ │ │ │ ├── ApiScopeAuthority │ │ │ │ │ │ ├── AccessScope.ts │ │ │ │ │ │ ├── ApiScopeAuthorityManager.ts │ │ │ │ │ │ └── UserScopeAccessAuthority.ts │ │ │ │ │ ├── IEReduxFetch.ts │ │ │ │ │ ├── IEReduxs │ │ │ │ │ │ ├── Actions.ts │ │ │ │ │ │ ├── Reducer.ts │ │ │ │ │ │ └── RootRedux.ts │ │ │ │ │ ├── IEToken.ts │ │ │ │ │ ├── Middlewares │ │ │ │ │ │ └── FecthMiddlewares.ts │ │ │ │ │ ├── Module.js │ │ │ │ │ ├── Weburl │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── package.json │ │ │ │ └── ice-common │ │ │ │ │ ├── AntIcons │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── BaseIERedux.ts │ │ │ │ │ ├── IEStore.ts │ │ │ │ │ ├── IocContainer │ │ │ │ │ └── index.ts │ │ │ │ │ ├── MiddlewareFactory.ts │ │ │ │ │ ├── Modules │ │ │ │ │ ├── BaseModule.js │ │ │ │ │ └── ModuleFactory.js │ │ │ │ │ ├── Page │ │ │ │ │ ├── Page.ts │ │ │ │ │ └── PageProvider.ts │ │ │ │ │ ├── Theme │ │ │ │ │ └── index.ts │ │ │ │ │ ├── ToolLibrary │ │ │ │ │ └── IETool.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ ├── RNApp │ │ │ │ ├── ModuleList.js │ │ │ │ ├── RNCMS │ │ │ │ │ ├── Component │ │ │ │ │ │ ├── ComponentContainerBoxs │ │ │ │ │ │ │ └── ComponentContainerBoxShow.js │ │ │ │ │ │ └── Components │ │ │ │ │ │ │ ├── InvalidOSComponent.js │ │ │ │ │ │ │ ├── RegisterTemplateManager.js │ │ │ │ │ │ │ └── Templates.js │ │ │ │ │ ├── Home │ │ │ │ │ │ ├── PageContainer.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── Module.js │ │ │ │ │ ├── SearchBar │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── StyleCheck │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── package.json │ │ │ │ ├── RNCommon │ │ │ │ │ ├── AntIcons │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Module.js │ │ │ │ │ ├── ProgressBar │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── Theme │ │ │ │ │ │ ├── NativeBaseTheme │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ ├── Badge.js │ │ │ │ │ │ │ │ ├── Body.js │ │ │ │ │ │ │ │ ├── Button.js │ │ │ │ │ │ │ │ ├── Card.js │ │ │ │ │ │ │ │ ├── CardItem.js │ │ │ │ │ │ │ │ ├── CheckBox.js │ │ │ │ │ │ │ │ ├── Container.js │ │ │ │ │ │ │ │ ├── Content.js │ │ │ │ │ │ │ │ ├── Fab.js │ │ │ │ │ │ │ │ ├── Footer.js │ │ │ │ │ │ │ │ ├── FooterTab.js │ │ │ │ │ │ │ │ ├── Form.js │ │ │ │ │ │ │ │ ├── H1.js │ │ │ │ │ │ │ │ ├── H2.js │ │ │ │ │ │ │ │ ├── H3.js │ │ │ │ │ │ │ │ ├── Header.js │ │ │ │ │ │ │ │ ├── Icon.js │ │ │ │ │ │ │ │ ├── Input.js │ │ │ │ │ │ │ │ ├── InputGroup.js │ │ │ │ │ │ │ │ ├── Item.js │ │ │ │ │ │ │ │ ├── Label.js │ │ │ │ │ │ │ │ ├── Left.js │ │ │ │ │ │ │ │ ├── ListItem.js │ │ │ │ │ │ │ │ ├── Picker.android.js │ │ │ │ │ │ │ │ ├── Picker.ios.js │ │ │ │ │ │ │ │ ├── Picker.js │ │ │ │ │ │ │ │ ├── Radio.js │ │ │ │ │ │ │ │ ├── Right.js │ │ │ │ │ │ │ │ ├── Segment.js │ │ │ │ │ │ │ │ ├── Separator.js │ │ │ │ │ │ │ │ ├── Spinner.js │ │ │ │ │ │ │ │ ├── Subtitle.js │ │ │ │ │ │ │ │ ├── SwipeRow.js │ │ │ │ │ │ │ │ ├── Switch.js │ │ │ │ │ │ │ │ ├── Tab.js │ │ │ │ │ │ │ │ ├── TabBar.js │ │ │ │ │ │ │ │ ├── TabContainer.js │ │ │ │ │ │ │ │ ├── TabHeading.js │ │ │ │ │ │ │ │ ├── Text.js │ │ │ │ │ │ │ │ ├── Textarea.js │ │ │ │ │ │ │ │ ├── Thumbnail.js │ │ │ │ │ │ │ │ ├── Title.js │ │ │ │ │ │ │ │ ├── Toast.js │ │ │ │ │ │ │ │ ├── View.js │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ └── variables │ │ │ │ │ │ │ │ ├── commonColor.js │ │ │ │ │ │ │ │ ├── material.js │ │ │ │ │ │ │ │ └── platform.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── ToolLibrary │ │ │ │ │ │ └── IETool.js │ │ │ │ │ └── package.json │ │ │ │ ├── RNInfrastructure │ │ │ │ │ ├── Camera │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Device.js │ │ │ │ │ ├── IEWebView │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Module.js │ │ │ │ │ └── package.json │ │ │ │ ├── RNLayout │ │ │ │ │ ├── Layout.js │ │ │ │ │ ├── Module.js │ │ │ │ │ └── package.json │ │ │ │ ├── RNPerson │ │ │ │ │ ├── Login │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── Module.js │ │ │ │ │ ├── Person.js │ │ │ │ │ ├── UserInfo │ │ │ │ │ │ └── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── RNSetting │ │ │ │ │ ├── Module.js │ │ │ │ │ ├── Setting.js │ │ │ │ │ └── package.json │ │ │ │ └── RNStart │ │ │ │ │ ├── .buckconfig │ │ │ │ │ ├── .flowconfig │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── .prettierrc.js │ │ │ │ │ ├── .watchmanconfig │ │ │ │ │ ├── android │ │ │ │ │ ├── app │ │ │ │ │ │ ├── BUCK │ │ │ │ │ │ ├── build.gradle │ │ │ │ │ │ ├── build_defs.bzl │ │ │ │ │ │ ├── debug.keystore │ │ │ │ │ │ ├── proguard-rules.pro │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── debug │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ └── java │ │ │ │ │ │ │ │ └── com │ │ │ │ │ │ │ │ └── iceemblem │ │ │ │ │ │ │ │ └── ReactNativeFlipper.java │ │ │ │ │ │ │ └── main │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ ├── config.json │ │ │ │ │ │ │ └── fonts │ │ │ │ │ │ │ │ ├── AntDesign.ttf │ │ │ │ │ │ │ │ ├── Entypo.ttf │ │ │ │ │ │ │ │ ├── EvilIcons.ttf │ │ │ │ │ │ │ │ ├── Feather.ttf │ │ │ │ │ │ │ │ ├── FontAwesome.ttf │ │ │ │ │ │ │ │ ├── FontAwesome5_Brands.ttf │ │ │ │ │ │ │ │ ├── FontAwesome5_Regular.ttf │ │ │ │ │ │ │ │ ├── FontAwesome5_Solid.ttf │ │ │ │ │ │ │ │ ├── Fontisto.ttf │ │ │ │ │ │ │ │ ├── Foundation.ttf │ │ │ │ │ │ │ │ ├── Ionicons.ttf │ │ │ │ │ │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ │ │ │ │ │ ├── MaterialIcons.ttf │ │ │ │ │ │ │ │ ├── Octicons.ttf │ │ │ │ │ │ │ │ ├── Roboto.ttf │ │ │ │ │ │ │ │ ├── Roboto_medium.ttf │ │ │ │ │ │ │ │ ├── SimpleLineIcons.ttf │ │ │ │ │ │ │ │ ├── Zocial.ttf │ │ │ │ │ │ │ │ └── rubicon-icon-font.ttf │ │ │ │ │ │ │ ├── java │ │ │ │ │ │ │ └── com │ │ │ │ │ │ │ │ └── iceemblem │ │ │ │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ │ │ │ └── MainApplication.java │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ │ └── styles.xml │ │ │ │ │ ├── build.gradle │ │ │ │ │ ├── gradle.properties │ │ │ │ │ ├── gradle │ │ │ │ │ │ └── wrapper │ │ │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ │ ├── gradlew │ │ │ │ │ ├── gradlew.bat │ │ │ │ │ └── settings.gradle │ │ │ │ │ ├── app.json │ │ │ │ │ ├── index.js │ │ │ │ │ ├── ios │ │ │ │ │ ├── IceEmblem-tvOS │ │ │ │ │ │ └── Info.plist │ │ │ │ │ ├── IceEmblem-tvOSTests │ │ │ │ │ │ └── Info.plist │ │ │ │ │ ├── IceEmblem.xcodeproj │ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ │ ├── IceEmblem-tvOS.xcscheme │ │ │ │ │ │ │ └── IceEmblem.xcscheme │ │ │ │ │ ├── IceEmblem │ │ │ │ │ │ ├── AppDelegate.h │ │ │ │ │ │ ├── AppDelegate.m │ │ │ │ │ │ ├── Images.xcassets │ │ │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ │ │ └── main.m │ │ │ │ │ ├── IceEmblemTests │ │ │ │ │ │ ├── IceEmblemTests.m │ │ │ │ │ │ └── Info.plist │ │ │ │ │ └── Podfile │ │ │ │ │ ├── metro.config.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── src │ │ │ │ │ ├── Module.js │ │ │ │ │ └── index.js │ │ │ ├── Resource.d.ts │ │ │ ├── Templates │ │ │ │ ├── IETemplateComponents │ │ │ │ │ ├── Chart.json │ │ │ │ │ ├── Container │ │ │ │ │ │ ├── IComponent.js │ │ │ │ │ │ ├── Setting.ts │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── Home.json │ │ │ │ │ ├── IEAnimation │ │ │ │ │ │ ├── Setting.ts │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IEAudio │ │ │ │ │ │ ├── Data.ts │ │ │ │ │ │ ├── IComponent.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IEBottomNav │ │ │ │ │ │ ├── BeianIcon.png │ │ │ │ │ │ ├── Setting.ts │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IEButton │ │ │ │ │ │ ├── IComponent.js │ │ │ │ │ │ ├── Setting.ts │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IECalendar │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IECard │ │ │ │ │ │ ├── Data.ts │ │ │ │ │ │ ├── describe.jpg │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IECarousel │ │ │ │ │ │ ├── Data.ts │ │ │ │ │ │ ├── IComponent.js │ │ │ │ │ │ ├── Setting.ts │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IECategoryLabel │ │ │ │ │ │ ├── IComponent.js │ │ │ │ │ │ ├── Setting.ts │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IEComment │ │ │ │ │ │ ├── IComponent.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IEImg │ │ │ │ │ │ ├── Data.ts │ │ │ │ │ │ ├── IComponent.js │ │ │ │ │ │ ├── Setting.ts │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IEInfoGroup │ │ │ │ │ │ ├── Data.ts │ │ │ │ │ │ ├── IComponent.js │ │ │ │ │ │ ├── Setting.ts │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IELayout │ │ │ │ │ │ ├── IComponent.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IELine │ │ │ │ │ │ ├── Data.ts │ │ │ │ │ │ ├── Preview.png │ │ │ │ │ │ ├── Setting.ts │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IEMenu │ │ │ │ │ │ ├── IComponent.js │ │ │ │ │ │ ├── Setting.ts │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IEPlaceholder │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IEPostList │ │ │ │ │ │ ├── IComponent.js │ │ │ │ │ │ ├── Setting.ts │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IERankingList │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IERate │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IEScrollbar │ │ │ │ │ │ ├── IComponent.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IESearch │ │ │ │ │ │ ├── IComponent.js │ │ │ │ │ │ ├── Setting.ts │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IESelect │ │ │ │ │ │ ├── Setting.ts │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IETab │ │ │ │ │ │ ├── IComponent.js │ │ │ │ │ │ ├── Setting.ts │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IETheme │ │ │ │ │ │ ├── IComponent.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IETwoDimensionalCode │ │ │ │ │ │ ├── IComponent.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IEVideo │ │ │ │ │ │ ├── Data.ts │ │ │ │ │ │ ├── IComponent.js │ │ │ │ │ │ ├── Setting.ts │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── NotFind │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── Post.json │ │ │ │ │ ├── PostList.json │ │ │ │ │ ├── RichTextEditor │ │ │ │ │ │ ├── IComponent.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── Tencent.json │ │ │ │ │ ├── Text │ │ │ │ │ │ ├── Data.ts │ │ │ │ │ │ ├── IComponent.js │ │ │ │ │ │ ├── Setting.ts │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── WBolt.json │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── RNIETemplateComponents │ │ │ │ │ ├── Container │ │ │ │ │ │ ├── Component.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IEAudio │ │ │ │ │ │ ├── Component.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IEButton │ │ │ │ │ │ ├── Component.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IECard │ │ │ │ │ │ ├── Component.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IECarousel │ │ │ │ │ │ ├── Component.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IECategoryLabel │ │ │ │ │ │ ├── Component.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IEComment │ │ │ │ │ │ ├── Component.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IEImg │ │ │ │ │ │ ├── Component.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IEInfoGroup │ │ │ │ │ │ ├── Component.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IELayout │ │ │ │ │ │ ├── Component.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IELine │ │ │ │ │ │ ├── Component.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IEMenu │ │ │ │ │ │ ├── Component.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IEPlaceholder │ │ │ │ │ │ ├── Component.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IEPostList │ │ │ │ │ │ ├── Component.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IERankingList │ │ │ │ │ │ ├── Component.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IEScrollbar │ │ │ │ │ │ ├── Component.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IESearch │ │ │ │ │ │ ├── Component.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IETab │ │ │ │ │ │ ├── Component.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IETheme │ │ │ │ │ │ ├── Component.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IETwoDimensionalCode │ │ │ │ │ │ ├── Component.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IEVideo │ │ │ │ │ │ ├── Component.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── NotFind │ │ │ │ │ │ ├── Component.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── RichTextEditor │ │ │ │ │ │ ├── Component.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── Text │ │ │ │ │ │ ├── Component.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ └── WebIETemplateComponents │ │ │ │ │ ├── Container │ │ │ │ │ ├── Component.jsx │ │ │ │ │ ├── Container.css │ │ │ │ │ ├── Preview.jsx │ │ │ │ │ ├── SettingConfig.jsx │ │ │ │ │ └── index.js │ │ │ │ │ ├── IEAnimation │ │ │ │ │ ├── Component.jsx │ │ │ │ │ ├── Preview.jsx │ │ │ │ │ ├── SettingConfig.jsx │ │ │ │ │ └── index.js │ │ │ │ │ ├── IEAudio │ │ │ │ │ ├── Component.jsx │ │ │ │ │ ├── DataConfig.jsx │ │ │ │ │ ├── Preview.jsx │ │ │ │ │ └── index.js │ │ │ │ │ ├── IEBottomNav │ │ │ │ │ ├── Component.jsx │ │ │ │ │ ├── IEBottomNav.css │ │ │ │ │ ├── Preview.jsx │ │ │ │ │ ├── SettingConfig.jsx │ │ │ │ │ └── index.js │ │ │ │ │ ├── IEButton │ │ │ │ │ ├── Component.jsx │ │ │ │ │ ├── Preview.jsx │ │ │ │ │ ├── SettingConfig.jsx │ │ │ │ │ └── index.js │ │ │ │ │ ├── IECalendar │ │ │ │ │ ├── Component.jsx │ │ │ │ │ ├── Preview.jsx │ │ │ │ │ └── index.js │ │ │ │ │ ├── IECard │ │ │ │ │ ├── Component.jsx │ │ │ │ │ ├── DataConfig.jsx │ │ │ │ │ ├── Preview.jsx │ │ │ │ │ └── index.js │ │ │ │ │ ├── IECarousel │ │ │ │ │ ├── Component.jsx │ │ │ │ │ ├── DataConfig.jsx │ │ │ │ │ ├── Preview.jsx │ │ │ │ │ ├── SettingConfig.jsx │ │ │ │ │ └── index.js │ │ │ │ │ ├── IECategoryLabel │ │ │ │ │ ├── Component.jsx │ │ │ │ │ ├── Preview.jsx │ │ │ │ │ ├── SettingConfig.jsx │ │ │ │ │ └── index.js │ │ │ │ │ ├── IEComment │ │ │ │ │ ├── Component.jsx │ │ │ │ │ ├── Preview.jsx │ │ │ │ │ └── index.js │ │ │ │ │ ├── IEImg │ │ │ │ │ ├── Component.jsx │ │ │ │ │ ├── DataConfig.jsx │ │ │ │ │ ├── Preview.jsx │ │ │ │ │ ├── SettingConfig.jsx │ │ │ │ │ ├── index.css │ │ │ │ │ └── index.js │ │ │ │ │ ├── IEInfoGroup │ │ │ │ │ ├── Component.jsx │ │ │ │ │ ├── DataConfig.jsx │ │ │ │ │ ├── Preview.jsx │ │ │ │ │ ├── SettingConfig.jsx │ │ │ │ │ └── index.js │ │ │ │ │ ├── IELayout │ │ │ │ │ ├── Priview.jsx │ │ │ │ │ └── index.js │ │ │ │ │ ├── IELine │ │ │ │ │ ├── Component.jsx │ │ │ │ │ ├── DataConfig.jsx │ │ │ │ │ ├── Preview.jsx │ │ │ │ │ ├── SettingConfig.jsx │ │ │ │ │ └── index.js │ │ │ │ │ ├── IEMenu │ │ │ │ │ ├── Component.jsx │ │ │ │ │ ├── Preview.jsx │ │ │ │ │ ├── SettingConfig.jsx │ │ │ │ │ └── index.js │ │ │ │ │ ├── IEPlaceholder │ │ │ │ │ ├── Component.js │ │ │ │ │ ├── Preview.jsx │ │ │ │ │ └── index.js │ │ │ │ │ ├── IEPostList │ │ │ │ │ ├── Component.jsx │ │ │ │ │ ├── Preview.jsx │ │ │ │ │ ├── SettingConfig.jsx │ │ │ │ │ └── index.js │ │ │ │ │ ├── IERankingList │ │ │ │ │ ├── Component.jsx │ │ │ │ │ ├── IERankingList.css │ │ │ │ │ ├── Preview.jsx │ │ │ │ │ └── index.js │ │ │ │ │ ├── IERate │ │ │ │ │ ├── Component.jsx │ │ │ │ │ ├── Preview.jsx │ │ │ │ │ └── index.js │ │ │ │ │ ├── IEScrollbar │ │ │ │ │ ├── Preview.jsx │ │ │ │ │ └── index.js │ │ │ │ │ ├── IESearch │ │ │ │ │ ├── Component.jsx │ │ │ │ │ ├── IESearch.css │ │ │ │ │ ├── Preview.jsx │ │ │ │ │ ├── SettingConfig.jsx │ │ │ │ │ └── index.js │ │ │ │ │ ├── IESelect │ │ │ │ │ ├── Component.jsx │ │ │ │ │ ├── Preview.jsx │ │ │ │ │ ├── SettingConfig.jsx │ │ │ │ │ └── index.js │ │ │ │ │ ├── IETab │ │ │ │ │ ├── Component.jsx │ │ │ │ │ ├── Preview.jsx │ │ │ │ │ ├── SettingConfig.jsx │ │ │ │ │ ├── index.js │ │ │ │ │ └── preview.png │ │ │ │ │ ├── IETheme │ │ │ │ │ ├── Component.jsx │ │ │ │ │ ├── Preview.jsx │ │ │ │ │ └── index.js │ │ │ │ │ ├── IETwoDimensionalCode │ │ │ │ │ ├── Preview.jsx │ │ │ │ │ └── index.js │ │ │ │ │ ├── IEVideo │ │ │ │ │ ├── Component.jsx │ │ │ │ │ ├── DataConfig.jsx │ │ │ │ │ ├── Preview.jsx │ │ │ │ │ ├── SettingConfig.jsx │ │ │ │ │ ├── index.css │ │ │ │ │ └── index.js │ │ │ │ │ ├── NotFind │ │ │ │ │ ├── Component.jsx │ │ │ │ │ ├── Preview.jsx │ │ │ │ │ └── index.js │ │ │ │ │ ├── RichTextEditor │ │ │ │ │ ├── Component.jsx │ │ │ │ │ ├── DataConfig.jsx │ │ │ │ │ ├── Preview.jsx │ │ │ │ │ ├── RichTextEditor.css │ │ │ │ │ ├── SettingConfig.jsx │ │ │ │ │ └── index.js │ │ │ │ │ ├── Text │ │ │ │ │ ├── Component.jsx │ │ │ │ │ ├── DataConfig.jsx │ │ │ │ │ ├── Preview.jsx │ │ │ │ │ ├── SettingConfig.jsx │ │ │ │ │ └── index.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ ├── WebApp │ │ │ │ ├── Account │ │ │ │ │ ├── Content.jsx │ │ │ │ │ ├── LogoutBtnNavTool.jsx │ │ │ │ │ ├── Module.js │ │ │ │ │ ├── Title.jsx │ │ │ │ │ ├── account.css │ │ │ │ │ ├── account.jsx │ │ │ │ │ ├── login_back.jpg │ │ │ │ │ └── package.json │ │ │ │ ├── Adapters │ │ │ │ │ ├── IECamera.jsx │ │ │ │ │ ├── IEReactNativeVideo │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ └── videoImg.png │ │ │ │ │ ├── IEReactNativeWeb.tsx │ │ │ │ │ ├── Module.js │ │ │ │ │ ├── RNComponentContainerBoxShow.js │ │ │ │ │ ├── RNPageLayout.js │ │ │ │ │ ├── WebView.tsx │ │ │ │ │ └── package.json │ │ │ │ ├── AuthorizeManage │ │ │ │ │ ├── AdminManage │ │ │ │ │ │ └── AdminManage.jsx │ │ │ │ │ ├── AdminPermissionManage │ │ │ │ │ │ └── AdminPermissionManage.jsx │ │ │ │ │ ├── AdminRoleManage │ │ │ │ │ │ └── AdminRoleManage.jsx │ │ │ │ │ ├── ApiScopePermission │ │ │ │ │ │ └── ApiScopePermission.jsx │ │ │ │ │ ├── AuthorizeManage.jsx │ │ │ │ │ ├── MenuPermission │ │ │ │ │ │ ├── MenuPermission.css │ │ │ │ │ │ └── MenuPermission.jsx │ │ │ │ │ ├── Module.js │ │ │ │ │ ├── Permission │ │ │ │ │ │ └── Permission.jsx │ │ │ │ │ ├── RoleManage │ │ │ │ │ │ └── RoleManage.jsx │ │ │ │ │ ├── RolePermissionManage │ │ │ │ │ │ └── RolePermissionManage.jsx │ │ │ │ │ └── package.json │ │ │ │ ├── CMSManage │ │ │ │ │ ├── CMSManage.jsx │ │ │ │ │ ├── Component │ │ │ │ │ │ ├── ComponentContainerBoxs │ │ │ │ │ │ │ ├── ComponentContainerBoxShow.jsx │ │ │ │ │ │ │ ├── PageEditFrame.jsx │ │ │ │ │ │ │ └── PostEditFrame.jsx │ │ │ │ │ │ └── Components │ │ │ │ │ │ │ ├── BaseComponents │ │ │ │ │ │ │ ├── BaseComponent │ │ │ │ │ │ │ │ ├── BasicSettingConfig.jsx │ │ │ │ │ │ │ │ ├── CommonStyleSettingConfig │ │ │ │ │ │ │ │ │ └── CommonStyleConfigComponent.jsx │ │ │ │ │ │ │ │ ├── ComponentSettingConfigBtnComponent.js │ │ │ │ │ │ │ │ ├── DeleteConfigBtnComponent.js │ │ │ │ │ │ │ │ ├── FontComponentSettingConfig │ │ │ │ │ │ │ │ │ └── FontConfigComponent.jsx │ │ │ │ │ │ │ │ └── PostFieldSettingConfig │ │ │ │ │ │ │ │ │ └── PostFieldConfigComponent.js │ │ │ │ │ │ │ ├── BaseContainerComponent │ │ │ │ │ │ │ │ ├── ComponentListBox │ │ │ │ │ │ │ │ │ ├── ComponentFrame.jsx │ │ │ │ │ │ │ │ │ ├── index.css │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ └── ContainerConfigBtnComponent.js │ │ │ │ │ │ │ ├── BaseContentLeafComponent │ │ │ │ │ │ │ │ └── ComponentDataConfigBtnComponent.js │ │ │ │ │ │ │ ├── BaseMenuComponent │ │ │ │ │ │ │ │ └── MenuSettingConfig.jsx │ │ │ │ │ │ │ ├── BasePageLeafComponent │ │ │ │ │ │ │ │ └── PageLeafSettingConfig.jsx │ │ │ │ │ │ │ ├── InteractiveComponent │ │ │ │ │ │ │ │ └── InteractiveComponentConfigBtnComponent.js │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ ├── InvalidOSComponent.js │ │ │ │ │ │ │ ├── RNTemplates.js │ │ │ │ │ │ │ ├── RegisterTemplateManager.js │ │ │ │ │ │ │ └── WebTemplates.js │ │ │ │ │ ├── Home │ │ │ │ │ │ ├── Page.jsx │ │ │ │ │ │ ├── PageContainer.jsx │ │ │ │ │ │ ├── index.css │ │ │ │ │ │ └── index.jsx │ │ │ │ │ ├── LogicManage │ │ │ │ │ │ ├── index.css │ │ │ │ │ │ └── index.jsx │ │ │ │ │ ├── Menu │ │ │ │ │ │ ├── Menu.css │ │ │ │ │ │ └── Menu.jsx │ │ │ │ │ ├── MenuListManage │ │ │ │ │ │ └── index.jsx │ │ │ │ │ ├── Module.js │ │ │ │ │ ├── PageData │ │ │ │ │ │ ├── CustomizeOperateBtnList.jsx │ │ │ │ │ │ └── PageData.jsx │ │ │ │ │ ├── PageEdit │ │ │ │ │ │ ├── BtnLists.css │ │ │ │ │ │ ├── BtnLists.jsx │ │ │ │ │ │ ├── CancelAndReload.jsx │ │ │ │ │ │ ├── ClipBoard.jsx │ │ │ │ │ │ ├── ComponentContainer │ │ │ │ │ │ │ ├── CurrentToolBtns.jsx │ │ │ │ │ │ │ ├── EditComponentContainerBoxShow.jsx │ │ │ │ │ │ │ ├── SignSquareFrame.jsx │ │ │ │ │ │ │ └── ToolBtns.jsx │ │ │ │ │ │ ├── Hotkey.jsx │ │ │ │ │ │ ├── index.css │ │ │ │ │ │ └── index.jsx │ │ │ │ │ ├── PageManage │ │ │ │ │ │ ├── PageManage.jsx │ │ │ │ │ │ └── PostPermissionEdit.jsx │ │ │ │ │ ├── PictureManage │ │ │ │ │ │ ├── PictureBox.css │ │ │ │ │ │ ├── PictureBox.jsx │ │ │ │ │ │ ├── PicturePopupBox.jsx │ │ │ │ │ │ ├── folder.png │ │ │ │ │ │ ├── index.css │ │ │ │ │ │ └── index.jsx │ │ │ │ │ ├── PostEdit │ │ │ │ │ │ ├── ToolBtns.css │ │ │ │ │ │ ├── ToolBtns.jsx │ │ │ │ │ │ ├── index.css │ │ │ │ │ │ └── index.jsx │ │ │ │ │ ├── SearchBoxTool │ │ │ │ │ │ └── index.jsx │ │ │ │ │ ├── TemplateManage │ │ │ │ │ │ └── index.jsx │ │ │ │ │ ├── TemplatePageManage │ │ │ │ │ │ └── index.jsx │ │ │ │ │ ├── TemplatePageShow │ │ │ │ │ │ └── index.jsx │ │ │ │ │ └── package.json │ │ │ │ ├── Common │ │ │ │ │ ├── AntIcons │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── IEBraftEditor │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IESideNav │ │ │ │ │ │ ├── index.css │ │ │ │ │ │ └── index.jsx │ │ │ │ │ ├── ListBtn │ │ │ │ │ │ ├── index.css │ │ │ │ │ │ └── index.jsx │ │ │ │ │ ├── Logo │ │ │ │ │ │ ├── Logo.jsx │ │ │ │ │ │ ├── logo - 副本.png │ │ │ │ │ │ ├── logo.css │ │ │ │ │ │ └── logo.png │ │ │ │ │ ├── Module.js │ │ │ │ │ ├── Preview │ │ │ │ │ │ ├── Preview.css │ │ │ │ │ │ └── Preview.jsx │ │ │ │ │ ├── Resource │ │ │ │ │ │ ├── Paging.jsx │ │ │ │ │ │ ├── Resource.css │ │ │ │ │ │ ├── Resource.jsx │ │ │ │ │ │ ├── ResourceDelete.jsx │ │ │ │ │ │ ├── ResourceDescribe.js │ │ │ │ │ │ └── ResourceList.jsx │ │ │ │ │ ├── ResourceChildList │ │ │ │ │ │ ├── ResourceChildList.css │ │ │ │ │ │ └── ResourceChildList.jsx │ │ │ │ │ ├── ResourceForm │ │ │ │ │ │ ├── DateTime.jsx │ │ │ │ │ │ ├── Describe.js │ │ │ │ │ │ ├── FormCheck.jsx │ │ │ │ │ │ ├── FormRadio.jsx │ │ │ │ │ │ ├── FormSelect.jsx │ │ │ │ │ │ ├── ResourceDescribeValueType.js │ │ │ │ │ │ ├── ResourceForm.css │ │ │ │ │ │ ├── ResourceForm.jsx │ │ │ │ │ │ ├── RichText.jsx │ │ │ │ │ │ ├── Text.jsx │ │ │ │ │ │ └── TextGroup.jsx │ │ │ │ │ ├── Tab │ │ │ │ │ │ ├── Tab.css │ │ │ │ │ │ └── Tab.jsx │ │ │ │ │ ├── Theme │ │ │ │ │ │ ├── blue.less │ │ │ │ │ │ ├── cyan.less │ │ │ │ │ │ ├── geekblue.less │ │ │ │ │ │ ├── gold.less │ │ │ │ │ │ ├── green.less │ │ │ │ │ │ ├── grey.less │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── lime.less │ │ │ │ │ │ ├── magenta.less │ │ │ │ │ │ ├── orange.less │ │ │ │ │ │ ├── purple.less │ │ │ │ │ │ ├── red.less │ │ │ │ │ │ ├── volcano.less │ │ │ │ │ │ └── yellow.less │ │ │ │ │ ├── ToolLibrary │ │ │ │ │ │ └── IETool.ts │ │ │ │ │ └── package.json │ │ │ │ ├── Init │ │ │ │ │ ├── DBConfigure.jsx │ │ │ │ │ ├── InitSite.jsx │ │ │ │ │ ├── Introduce.jsx │ │ │ │ │ ├── Module.js │ │ │ │ │ ├── Show1.jpg │ │ │ │ │ ├── Show2.jpg │ │ │ │ │ ├── Show3.jpg │ │ │ │ │ ├── Show4.jpg │ │ │ │ │ ├── Show5.jpg │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── package.json │ │ │ │ ├── Layout │ │ │ │ │ ├── BodyDiv │ │ │ │ │ │ ├── BodyDiv.css │ │ │ │ │ │ ├── BodyDiv.jsx │ │ │ │ │ │ └── Index │ │ │ │ │ │ │ ├── CarouselDemo.css │ │ │ │ │ │ │ ├── CarouselDemo.jsx │ │ │ │ │ │ │ ├── IECommentDemo.jsx │ │ │ │ │ │ │ ├── IEGroupedColumnDemo.jsx │ │ │ │ │ │ │ ├── IELinePlotDemo.jsx │ │ │ │ │ │ │ ├── IEProgressDemo.jsx │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ ├── ManageHome.css │ │ │ │ │ ├── ManageHome.jsx │ │ │ │ │ ├── Module.js │ │ │ │ │ ├── Nav │ │ │ │ │ │ ├── Nav.css │ │ │ │ │ │ └── Nav.jsx │ │ │ │ │ ├── SideNav │ │ │ │ │ │ ├── SideNav.css │ │ │ │ │ │ └── SideNav.jsx │ │ │ │ │ └── package.json │ │ │ │ ├── ModuleList.js │ │ │ │ ├── Personal │ │ │ │ │ ├── AccountSecurity │ │ │ │ │ │ ├── AccountSecurity.css │ │ │ │ │ │ └── AccountSecurity.jsx │ │ │ │ │ ├── Module.js │ │ │ │ │ ├── Personal.jsx │ │ │ │ │ ├── UserInfo │ │ │ │ │ │ ├── UserInfo.css │ │ │ │ │ │ └── UserInfo.jsx │ │ │ │ │ ├── UserTagNavTools │ │ │ │ │ │ └── index.jsx │ │ │ │ │ └── package.json │ │ │ │ ├── Setting │ │ │ │ │ ├── Module.js │ │ │ │ │ ├── Setting.jsx │ │ │ │ │ ├── SiteSetting │ │ │ │ │ │ ├── index.css │ │ │ │ │ │ └── index.jsx │ │ │ │ │ ├── ThemeSetting │ │ │ │ │ │ ├── blue.png │ │ │ │ │ │ ├── cyan.png │ │ │ │ │ │ ├── default.png │ │ │ │ │ │ ├── geekblue.png │ │ │ │ │ │ ├── gold.png │ │ │ │ │ │ ├── green.png │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ ├── lime.png │ │ │ │ │ │ ├── magenta.png │ │ │ │ │ │ ├── orange.png │ │ │ │ │ │ ├── purple.png │ │ │ │ │ │ ├── red.png │ │ │ │ │ │ ├── volcano.png │ │ │ │ │ │ └── yellow.png │ │ │ │ │ └── package.json │ │ │ │ ├── Start │ │ │ │ │ ├── config │ │ │ │ │ │ ├── AnalogData │ │ │ │ │ │ │ ├── AdminManage.json │ │ │ │ │ │ │ ├── ApiResourceManage.json │ │ │ │ │ │ │ ├── ApiScopeManage.json │ │ │ │ │ │ │ ├── ClaimManage.json │ │ │ │ │ │ │ ├── ClientManage.json │ │ │ │ │ │ │ ├── IdentityResourceManage.json │ │ │ │ │ │ │ ├── Logic.json │ │ │ │ │ │ │ ├── Menu.json │ │ │ │ │ │ │ ├── PageDataQuery.json │ │ │ │ │ │ │ ├── PageQuery.json │ │ │ │ │ │ │ ├── PermissionManage.json │ │ │ │ │ │ │ ├── PictureManage.json │ │ │ │ │ │ │ ├── RoleManage.json │ │ │ │ │ │ │ ├── SiteSettingQuery.json │ │ │ │ │ │ │ └── User.json │ │ │ │ │ │ ├── env.js │ │ │ │ │ │ ├── getHttpsConfig.js │ │ │ │ │ │ ├── jest │ │ │ │ │ │ │ ├── cssTransform.js │ │ │ │ │ │ │ └── fileTransform.js │ │ │ │ │ │ ├── modules.js │ │ │ │ │ │ ├── pathmap.json │ │ │ │ │ │ ├── paths.js │ │ │ │ │ │ ├── pnpTs.js │ │ │ │ │ │ ├── webpack.config.js │ │ │ │ │ │ └── webpackDevServer.config.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── scripts │ │ │ │ │ │ ├── build.js │ │ │ │ │ │ ├── start.js │ │ │ │ │ │ └── test.js │ │ │ │ │ └── src │ │ │ │ │ │ ├── Middlewares │ │ │ │ │ │ └── ReduxErrorMiddleware.ts │ │ │ │ │ │ ├── Module.js │ │ │ │ │ │ ├── Parts │ │ │ │ │ │ ├── Error.jsx │ │ │ │ │ │ └── Loading.jsx │ │ │ │ │ │ ├── index.css │ │ │ │ │ │ └── index.js │ │ │ │ ├── Test │ │ │ │ │ ├── Module.js │ │ │ │ │ ├── Test.css │ │ │ │ │ ├── Test.jsx │ │ │ │ │ └── package.json │ │ │ │ ├── __tests │ │ │ │ │ ├── CMSManage │ │ │ │ │ │ └── Component │ │ │ │ │ │ │ └── ComponentContainers │ │ │ │ │ │ │ ├── PageEditComponentContainer │ │ │ │ │ │ │ └── EditFrame.test.js │ │ │ │ │ │ │ ├── PostEditComponentContainer │ │ │ │ │ │ │ └── EditFrame.test.js │ │ │ │ │ │ │ └── TestComponent.jsx │ │ │ │ │ ├── IEEnzyme.js │ │ │ │ │ ├── ResourceFilter.js │ │ │ │ │ └── core │ │ │ │ │ │ ├── ApiScopeAuthorityManager.test.ts │ │ │ │ │ │ ├── BaseIERedux.test.ts │ │ │ │ │ │ ├── IEToken.test.ts │ │ │ │ │ │ ├── ModuleFactory.test.js │ │ │ │ │ │ └── PageProvide.test.ts │ │ │ │ └── index.js │ │ │ └── react-app-env.d.ts │ │ ├── tsconfig.json │ │ └── yarn.lock │ ├── Configuration │ │ ├── HostingEnvironmentExtensions.cs │ │ └── WebConfiguration.cs │ ├── Controllers │ │ ├── AccountController.cs │ │ ├── CMS │ │ │ ├── Logics │ │ │ │ ├── Dto │ │ │ │ │ └── ExecLogicInput.cs │ │ │ │ └── LogicExecController.cs │ │ │ └── Pages │ │ │ │ ├── Dto │ │ │ │ ├── GetPageDatasInput.cs │ │ │ │ ├── GetPagesOfUserCanAccessPostInput.cs │ │ │ │ ├── GetPagesOfUserCanAccessPostOutput.cs │ │ │ │ ├── ScorePageDataInput.cs │ │ │ │ ├── ScorePageDataOutput.cs │ │ │ │ ├── VisitPageDataInput.cs │ │ │ │ └── VisitPageDataOutput.cs │ │ │ │ ├── PageDataManageController.cs │ │ │ │ └── PageDataQueryController.cs │ │ ├── IEManageSystemControllerBase.cs │ │ ├── InitSites │ │ │ ├── Dto │ │ │ │ ├── InitInput.cs │ │ │ │ └── InitOutput.cs │ │ │ └── InitSiteController.cs │ │ └── Users │ │ │ ├── Dto │ │ │ ├── GetUserScopeAccessAuthoritiesInput.cs │ │ │ └── GetUserScopeAccessAuthoritiesOutput.cs │ │ │ └── UserController.cs │ ├── Conventions │ │ └── IEApiConvention.cs │ ├── Filters │ │ └── ApiAuthorizationFilter.cs │ ├── Help │ │ └── IEUrlHelper.cs │ ├── IEManageSystem.Web.csproj │ ├── IEManageSystem.Web.csproj.user │ ├── IceEmblem.db │ ├── Models │ │ ├── AccountModels │ │ │ ├── LoginApiModel.cs │ │ │ └── RegisterApiModel.cs │ │ └── ConsentModels │ │ │ ├── ConsentInputModel.cs │ │ │ ├── ConsentModel.cs │ │ │ ├── ConsentOptions.cs │ │ │ └── ScopeModel.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup │ │ ├── IEManageSystemWebModule.cs │ │ ├── Program.cs │ │ └── Startup.cs │ ├── app.config │ ├── appsettings.json │ ├── log4net.config │ ├── web.config │ └── wwwroot │ │ ├── JavaScript │ │ ├── g2plot.js │ │ └── g2plot.js.map │ │ ├── Pages │ │ ├── Chart.Page.json │ │ ├── Chart.json │ │ ├── Home.Page.json │ │ ├── Home.json │ │ ├── Music.Page.json │ │ ├── Music.json │ │ ├── MusicList.Page.json │ │ ├── MusicList.json │ │ ├── Post.Page.json │ │ ├── Post.json │ │ ├── PostList.Page.json │ │ ├── PostList.json │ │ ├── Tencent.Page.json │ │ ├── Tencent.json │ │ ├── Test.Page.json │ │ ├── Test.json │ │ ├── Video.Page.json │ │ ├── Video.json │ │ ├── VideoList.Page.json │ │ ├── VideoList.json │ │ ├── WBolt.Page.json │ │ └── WBolt.json │ │ ├── Picture │ │ ├── BanGongIcon │ │ │ ├── baifang.png │ │ │ ├── baogao.png │ │ │ ├── biji.png │ │ │ ├── chuchai.png │ │ │ ├── dianhua.png │ │ │ ├── dinwei.png │ │ │ ├── icon_app_attendance_96.png │ │ │ ├── icon_app_calendar_96.png │ │ │ ├── icon_app_message_96.png │ │ │ ├── jiedai.png │ │ │ ├── kehu.png │ │ │ ├── luxian.png │ │ │ ├── luyin.png │ │ │ ├── richeng.png │ │ │ ├── shenpi.png │ │ │ ├── tianj.png │ │ │ ├── tongji.png │ │ │ ├── tongshi.png │ │ │ ├── tongxunlu.png │ │ │ ├── xiangmu.png │ │ │ ├── xiaoliang.png │ │ │ ├── xinxi.png │ │ │ └── xuexi.png │ │ ├── Icon │ │ │ ├── add.png │ │ │ ├── android.png │ │ │ ├── answer.png │ │ │ ├── app.png │ │ │ ├── browser.png │ │ │ ├── camera.png │ │ │ ├── cart.png │ │ │ ├── check.png │ │ │ ├── code.png │ │ │ ├── computer.png │ │ │ ├── copy.png │ │ │ ├── delete.png │ │ │ ├── deliver.png │ │ │ ├── display.png │ │ │ ├── down.png │ │ │ ├── download.png │ │ │ ├── edit.png │ │ │ ├── emoji.png │ │ │ ├── enclosure.png │ │ │ ├── eraser.png │ │ │ ├── favor.png │ │ │ ├── favorite.png │ │ │ ├── file.png │ │ │ ├── fill.png │ │ │ ├── fold.png │ │ │ ├── folder.png │ │ │ ├── font.png │ │ │ ├── hide.png │ │ │ ├── home.png │ │ │ ├── information.png │ │ │ ├── left.png │ │ │ ├── like.png │ │ │ ├── link.png │ │ │ ├── loading.png │ │ │ ├── lock.png │ │ │ ├── mac.png │ │ │ ├── mail.png │ │ │ ├── mark.png │ │ │ ├── menu.png │ │ │ ├── message.png │ │ │ ├── minus.png │ │ │ ├── money.png │ │ │ ├── more.png │ │ │ ├── my.png │ │ │ ├── natice.png │ │ │ ├── notification.png │ │ │ ├── order.png │ │ │ ├── people3.png │ │ │ ├── person2.png │ │ │ ├── phone.png │ │ │ ├── record.png │ │ │ ├── refresh.png │ │ │ ├── rest.png │ │ │ ├── right.png │ │ │ ├── ring pause.png │ │ │ ├── rotate.png │ │ │ ├── round_check.png │ │ │ ├── search.png │ │ │ ├── service.png │ │ │ ├── shopping.png │ │ │ ├── sitting.png │ │ │ ├── tag.png │ │ │ ├── telephone.png │ │ │ ├── time.png │ │ │ ├── to down.png │ │ │ ├── to left.png │ │ │ ├── to right.png │ │ │ ├── top.png │ │ │ ├── unfold.png │ │ │ ├── unlock.png │ │ │ ├── upload.png │ │ │ ├── video.png │ │ │ ├── wangwang.png │ │ │ ├── windows.png │ │ │ ├── women.png │ │ │ ├── 亲淘.png │ │ │ ├── 千牛.png │ │ │ └── 旺信.png │ │ ├── OtherIcon │ │ │ ├── Clion.png │ │ │ ├── Game.png │ │ │ ├── OneDrive.png │ │ │ ├── Terminal.png │ │ │ ├── UTools.png │ │ │ ├── Visual Studio.png │ │ │ ├── Windows Terminal_PRE.png │ │ │ ├── Windows.png │ │ │ └── adobe-photoshop.png │ │ ├── Posts │ │ │ └── 4 │ │ │ │ └── green.png │ │ └── SheJi │ │ │ ├── antimg1.png │ │ │ ├── antimg2.png │ │ │ ├── antimg3.png │ │ │ ├── background.jpg │ │ │ ├── banner │ │ │ ├── banner1.jpg │ │ │ ├── banner2.jpg │ │ │ ├── banner3.jpg │ │ │ ├── banner4.jpg │ │ │ ├── banner5.jpg │ │ │ ├── banner6.jpg │ │ │ ├── banner7.jpg │ │ │ └── banner8.jpg │ │ │ ├── default_avatar.png │ │ │ ├── favicon.ico │ │ │ ├── logo.png │ │ │ ├── nofind.jpg │ │ │ └── post │ │ │ ├── post1.jpg │ │ │ ├── post2.jpg │ │ │ ├── post3.jpg │ │ │ ├── post4.jpg │ │ │ └── post5.jpg │ │ └── Sonarqube │ │ └── 1.png └── UtilityAction │ ├── Class1.cs │ ├── FileHandle │ └── ImageHandle.cs │ ├── Other │ ├── Encrypt.cs │ └── Regular.cs │ ├── UtilityAction.csproj │ ├── ValidateFun │ ├── ValidateModel.cs │ └── VerificationCode.cs │ └── Web │ ├── FileContentType.cs │ └── WebModelBinding.cs └── test ├── IEManageSystem.ApiAuthorization.Tests ├── DomainModels │ └── CheckPermissionServiceTest.cs └── IEManageSystem.ApiAuthorization.Tests.csproj ├── IEManageSystem.Application.Tests ├── IEManageSystem.Application.Tests.csproj └── Services │ ├── Logics │ ├── LogicAppServiceTest.cs │ └── LogicExecAppServiceTest.cs │ ├── Menus │ ├── MenuAppServiceTest.cs │ └── MenuManageAppServiceTest.cs │ └── Pages │ ├── PageDataManageAppServiceTest.cs │ ├── PageDataQueryAppServiceTest.cs │ ├── PageManageAppServiceTest.cs │ └── PageQueryAppServiceTest.cs ├── IEManageSystem.CommonInfrastructure.Tests ├── CMS │ └── ActuatorFactoryTest.cs └── IEManageSystem.CommonInfrastructure.Tests.csproj ├── IEManageSystem.Tests ├── IEManageSystem.Tests.csproj ├── IEManageSystemTestBase.cs ├── IEManageSystemTestModule.cs ├── Properties │ └── AssemblyInfo.cs ├── TestDatas │ ├── ApiScopeBuilder.cs │ ├── ContentPagePermissionCollectionBuilder.cs │ ├── DBBuilder.cs │ ├── LogicBuilder.cs │ ├── MenuBuilder.cs │ ├── PageDataBuilder.cs │ ├── PermissionBuilder.cs │ ├── RoleBuilder.cs │ └── UserBuilder.cs └── wwwroot │ └── Pages │ ├── ContentPage1Name.Page.json │ └── ContentPage1Name.json └── IEManageSystem.Web.Tests ├── Controllers └── HomeController_Tests.cs ├── IEManageSystem.Web.Tests.csproj ├── IEManageSystemWebTestBase.cs ├── IEManageSystemWebTestModule.cs ├── Properties └── AssemblyInfo.cs ├── Startup.cs └── xunit.runner.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/.gitignore -------------------------------------------------------------------------------- /Docs/关于文章权限.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/Docs/关于文章权限.docx -------------------------------------------------------------------------------- /Docs/前端开发/1 基本介绍.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/Docs/前端开发/1 基本介绍.docx -------------------------------------------------------------------------------- /Docs/前端开发/2 模块开发.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/Docs/前端开发/2 模块开发.docx -------------------------------------------------------------------------------- /Docs/前端开发/3 组件开发.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/Docs/前端开发/3 组件开发.docx -------------------------------------------------------------------------------- /Docs/前端开发/4 开发规范.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/Docs/前端开发/4 开发规范.docx -------------------------------------------------------------------------------- /Docs/前端开发/交互式组件.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/Docs/前端开发/交互式组件.docx -------------------------------------------------------------------------------- /Docs/前端开发/引用的包.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/Docs/前端开发/引用的包.docx -------------------------------------------------------------------------------- /Docs/前端开发/组件编写注意要点.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/Docs/前端开发/组件编写注意要点.docx -------------------------------------------------------------------------------- /Docs/前端设计图.EAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/Docs/前端设计图.EAP -------------------------------------------------------------------------------- /Docs/后端开发文档.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/Docs/后端开发文档.docx -------------------------------------------------------------------------------- /Docs/后端设计图.EAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/Docs/后端设计图.EAP -------------------------------------------------------------------------------- /Docs/读我 readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/Docs/读我 readme.txt -------------------------------------------------------------------------------- /IEManageSystem.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/IEManageSystem.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/README.md -------------------------------------------------------------------------------- /img/show1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/img/show1.png -------------------------------------------------------------------------------- /img/show2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/img/show2.png -------------------------------------------------------------------------------- /img/show3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/img/show3.png -------------------------------------------------------------------------------- /src/IEManageSystem.ApiAuthorization/DomainModel/ApiScopes/ApiScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.ApiAuthorization/DomainModel/ApiScopes/ApiScope.cs -------------------------------------------------------------------------------- /src/IEManageSystem.ApiAuthorization/DomainModel/ApiScopes/ApiScopeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.ApiAuthorization/DomainModel/ApiScopes/ApiScopeManager.cs -------------------------------------------------------------------------------- /src/IEManageSystem.ApiAuthorization/DomainModel/ApiScopes/ApiScopePermission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.ApiAuthorization/DomainModel/ApiScopes/ApiScopePermission.cs -------------------------------------------------------------------------------- /src/IEManageSystem.ApiAuthorization/DomainModel/CheckPermissionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.ApiAuthorization/DomainModel/CheckPermissionService.cs -------------------------------------------------------------------------------- /src/IEManageSystem.ApiAuthorization/IEApiAuthorizationModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.ApiAuthorization/IEApiAuthorizationModule.cs -------------------------------------------------------------------------------- /src/IEManageSystem.ApiAuthorization/IEManageSystem.ApiAuthorization.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.ApiAuthorization/IEManageSystem.ApiAuthorization.csproj -------------------------------------------------------------------------------- /src/IEManageSystem.Application/ApiScopeProviders/ApiScopeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Application/ApiScopeProviders/ApiScopeProvider.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Application/Attributes/ApiAuthorizationAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Application/Attributes/ApiAuthorizationAttribute.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Application/Attributes/ApiAuthorizationQueryAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Application/Attributes/ApiAuthorizationQueryAttribute.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Application/Dtos/ApiAuthorization/ApiScopeDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Application/Dtos/ApiAuthorization/ApiScopeDto.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Application/Dtos/CMS/ComponentDataDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Application/Dtos/CMS/ComponentDataDto.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Application/Dtos/CMS/ContentPagePeimissionCollectionDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Application/Dtos/CMS/ContentPagePeimissionCollectionDto.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Application/Dtos/CMS/ContentPagePermissionDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Application/Dtos/CMS/ContentPagePermissionDto.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Application/Dtos/CMS/EntityEditDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Application/Dtos/CMS/EntityEditDto.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Application/Dtos/CMS/LogicDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Application/Dtos/CMS/LogicDto.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Application/Dtos/CMS/MenuDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Application/Dtos/CMS/MenuDto.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Application/Dtos/CMS/PageDataDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Application/Dtos/CMS/PageDataDto.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Application/Dtos/CMS/PageDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Application/Dtos/CMS/PageDto.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Application/Dtos/CMS/PictureDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Application/Dtos/CMS/PictureDto.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Application/Dtos/CMS/SingleComponentDataDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Application/Dtos/CMS/SingleComponentDataDto.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Application/Dtos/CMS/TagDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Application/Dtos/CMS/TagDto.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Application/Dtos/Common/SiteSettingDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Application/Dtos/Common/SiteSettingDto.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Application/Dtos/Core/PermissionDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Application/Dtos/Core/PermissionDto.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Application/Dtos/Core/RoleDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Application/Dtos/Core/RoleDto.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Application/Dtos/Core/Users/AccountDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Application/Dtos/Core/Users/AccountDto.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Application/Dtos/Core/Users/SafetyProblemDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Application/Dtos/Core/Users/SafetyProblemDto.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Application/Dtos/Core/Users/UserDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Application/Dtos/Core/Users/UserDto.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Application/IEManageSystem.Application.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Application/IEManageSystem.Application.csproj -------------------------------------------------------------------------------- /src/IEManageSystem.Application/IEManageSystemAppServiceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Application/IEManageSystemAppServiceBase.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Application/IEManageSystemApplicationModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Application/IEManageSystemApplicationModule.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Application/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Application/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Application/Services/Accounts/AccountAppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Application/Services/Accounts/AccountAppService.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Application/Services/Accounts/Dto/LoginInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Application/Services/Accounts/Dto/LoginInput.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Application/Services/Accounts/Dto/LoginOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Application/Services/Accounts/Dto/LoginOutput.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Application/Services/Accounts/Dto/RegisterInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Application/Services/Accounts/Dto/RegisterInput.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Application/Services/Accounts/Dto/RegisterOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Application/Services/Accounts/Dto/RegisterOutput.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Application/Services/Accounts/IAccountAppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Application/Services/Accounts/IAccountAppService.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Application/Services/ManageHome/CMS/Menus/IMenuAppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Application/Services/ManageHome/CMS/Menus/IMenuAppService.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Application/Services/ManageHome/CMS/Menus/MenuAppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Application/Services/ManageHome/CMS/Menus/MenuAppService.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Application/Services/Users/Dto/GetUserInfoInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Application/Services/Users/Dto/GetUserInfoInput.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Application/Services/Users/Dto/GetUserInfoOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Application/Services/Users/Dto/GetUserInfoOutput.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Application/Services/Users/Dto/SetPassageInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Application/Services/Users/Dto/SetPassageInput.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Application/Services/Users/Dto/SetPassageOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Application/Services/Users/Dto/SetPassageOutput.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Application/Services/Users/Dto/SetSafetyProblemInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Application/Services/Users/Dto/SetSafetyProblemInput.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Application/Services/Users/Dto/SetSafetyProblemOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Application/Services/Users/Dto/SetSafetyProblemOutput.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Application/Services/Users/Dto/SetUserInfoInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Application/Services/Users/Dto/SetUserInfoInput.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Application/Services/Users/Dto/SetUserInfoOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Application/Services/Users/Dto/SetUserInfoOutput.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Application/Services/Users/IUserAppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Application/Services/Users/IUserAppService.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Application/Services/Users/UserAppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Application/Services/Users/UserAppService.cs -------------------------------------------------------------------------------- /src/IEManageSystem.CMS/DomainModel/CmsComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.CMS/DomainModel/CmsComponent.cs -------------------------------------------------------------------------------- /src/IEManageSystem.CMS/DomainModel/ComponentDatas/ComponentDataManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.CMS/DomainModel/ComponentDatas/ComponentDataManager.cs -------------------------------------------------------------------------------- /src/IEManageSystem.CMS/DomainModel/ComponentDatas/ComponentSingleData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.CMS/DomainModel/ComponentDatas/ComponentSingleData.cs -------------------------------------------------------------------------------- /src/IEManageSystem.CMS/DomainModel/ComponentDatas/ContentComponentData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.CMS/DomainModel/ComponentDatas/ContentComponentData.cs -------------------------------------------------------------------------------- /src/IEManageSystem.CMS/DomainModel/DeletePageDataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.CMS/DomainModel/DeletePageDataService.cs -------------------------------------------------------------------------------- /src/IEManageSystem.CMS/DomainModel/DeletePageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.CMS/DomainModel/DeletePageService.cs -------------------------------------------------------------------------------- /src/IEManageSystem.CMS/DomainModel/EntityEdit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.CMS/DomainModel/EntityEdit.cs -------------------------------------------------------------------------------- /src/IEManageSystem.CMS/DomainModel/ISingleData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.CMS/DomainModel/ISingleData.cs -------------------------------------------------------------------------------- /src/IEManageSystem.CMS/DomainModel/Logics/ExecLogicService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.CMS/DomainModel/Logics/ExecLogicService.cs -------------------------------------------------------------------------------- /src/IEManageSystem.CMS/DomainModel/Logics/IActuator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.CMS/DomainModel/Logics/IActuator.cs -------------------------------------------------------------------------------- /src/IEManageSystem.CMS/DomainModel/Logics/IActuatorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.CMS/DomainModel/Logics/IActuatorFactory.cs -------------------------------------------------------------------------------- /src/IEManageSystem.CMS/DomainModel/Logics/IExecLogicService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.CMS/DomainModel/Logics/IExecLogicService.cs -------------------------------------------------------------------------------- /src/IEManageSystem.CMS/DomainModel/Logics/IRegisterLogicService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.CMS/DomainModel/Logics/IRegisterLogicService.cs -------------------------------------------------------------------------------- /src/IEManageSystem.CMS/DomainModel/Logics/Logic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.CMS/DomainModel/Logics/Logic.cs -------------------------------------------------------------------------------- /src/IEManageSystem.CMS/DomainModel/Logics/RegisterLogicService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.CMS/DomainModel/Logics/RegisterLogicService.cs -------------------------------------------------------------------------------- /src/IEManageSystem.CMS/DomainModel/Menus/CompositeMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.CMS/DomainModel/Menus/CompositeMenu.cs -------------------------------------------------------------------------------- /src/IEManageSystem.CMS/DomainModel/Menus/LeafMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.CMS/DomainModel/Menus/LeafMenu.cs -------------------------------------------------------------------------------- /src/IEManageSystem.CMS/DomainModel/Menus/MenuBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.CMS/DomainModel/Menus/MenuBase.cs -------------------------------------------------------------------------------- /src/IEManageSystem.CMS/DomainModel/Menus/MenuManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.CMS/DomainModel/Menus/MenuManager.cs -------------------------------------------------------------------------------- /src/IEManageSystem.CMS/DomainModel/PageDatas/PageData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.CMS/DomainModel/PageDatas/PageData.cs -------------------------------------------------------------------------------- /src/IEManageSystem.CMS/DomainModel/PageDatas/PageDataManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.CMS/DomainModel/PageDatas/PageDataManager.cs -------------------------------------------------------------------------------- /src/IEManageSystem.CMS/DomainModel/PageDatas/Tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.CMS/DomainModel/PageDatas/Tag.cs -------------------------------------------------------------------------------- /src/IEManageSystem.CMS/DomainModel/Pages/Page.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.CMS/DomainModel/Pages/Page.cs -------------------------------------------------------------------------------- /src/IEManageSystem.CMS/DomainModel/Pages/PageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.CMS/DomainModel/Pages/PageManager.cs -------------------------------------------------------------------------------- /src/IEManageSystem.CMS/DomainModel/Pictures/Picture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.CMS/DomainModel/Pictures/Picture.cs -------------------------------------------------------------------------------- /src/IEManageSystem.CMS/DomainModel/Pictures/PictureManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.CMS/DomainModel/Pictures/PictureManager.cs -------------------------------------------------------------------------------- /src/IEManageSystem.CMS/DomainModel/UpdateContentComponentDataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.CMS/DomainModel/UpdateContentComponentDataService.cs -------------------------------------------------------------------------------- /src/IEManageSystem.CMS/IEManageSystem.CMS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.CMS/IEManageSystem.CMS.csproj -------------------------------------------------------------------------------- /src/IEManageSystem.CMS/IEManageSystemCMSModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.CMS/IEManageSystemCMSModule.cs -------------------------------------------------------------------------------- /src/IEManageSystem.CMS/Repositorys/IPageDataRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.CMS/Repositorys/IPageDataRepository.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Common/DomainModel/SiteSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Common/DomainModel/SiteSetting.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Common/IEManageSystem.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Common/IEManageSystem.Common.csproj -------------------------------------------------------------------------------- /src/IEManageSystem.CommonInfrastructure/CMS/Actuator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.CommonInfrastructure/CMS/Actuator.cs -------------------------------------------------------------------------------- /src/IEManageSystem.CommonInfrastructure/CMS/ActuatorAssemblyLoadContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.CommonInfrastructure/CMS/ActuatorAssemblyLoadContext.cs -------------------------------------------------------------------------------- /src/IEManageSystem.CommonInfrastructure/CMS/ActuatorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.CommonInfrastructure/CMS/ActuatorFactory.cs -------------------------------------------------------------------------------- /src/IEManageSystem.CommonInfrastructure/CMS/BaseActuator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.CommonInfrastructure/CMS/BaseActuator.cs -------------------------------------------------------------------------------- /src/IEManageSystem.CommonInfrastructure/CMS/WriteLogicCodeFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.CommonInfrastructure/CMS/WriteLogicCodeFile.cs -------------------------------------------------------------------------------- /src/IEManageSystem.CommonInfrastructure/Core/IEMemoryCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.CommonInfrastructure/Core/IEMemoryCache.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Core/Configuration/AppConfigurations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Core/Configuration/AppConfigurations.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Core/Entitys/Authorization/Identitys/IdentityUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Core/Entitys/Authorization/Identitys/IdentityUser.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Core/Entitys/Authorization/LoginManagers/AbpLoginResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Core/Entitys/Authorization/LoginManagers/AbpLoginResult.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Core/Entitys/Authorization/LoginManagers/LoginManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Core/Entitys/Authorization/LoginManagers/LoginManager.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Core/Entitys/Authorization/Permissions/Permission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Core/Entitys/Authorization/Permissions/Permission.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Core/Entitys/Authorization/Permissions/PermissionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Core/Entitys/Authorization/Permissions/PermissionManager.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Core/Entitys/Authorization/Roles/Role.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Core/Entitys/Authorization/Roles/Role.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Core/Entitys/Authorization/Roles/RoleManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Core/Entitys/Authorization/Roles/RoleManager.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Core/Entitys/Authorization/Roles/RolePermission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Core/Entitys/Authorization/Roles/RolePermission.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Core/Entitys/Authorization/Users/Accounts/Account.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Core/Entitys/Authorization/Users/Accounts/Account.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Core/Entitys/Authorization/Users/Accounts/SafetyProblem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Core/Entitys/Authorization/Users/Accounts/SafetyProblem.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Core/Entitys/Authorization/Users/AdminManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Core/Entitys/Authorization/Users/AdminManager.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Core/Entitys/Authorization/Users/RegisterManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Core/Entitys/Authorization/Users/RegisterManager.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Core/Entitys/Authorization/Users/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Core/Entitys/Authorization/Users/User.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Core/Entitys/Authorization/Users/UserManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Core/Entitys/Authorization/Users/UserManager.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Core/Entitys/Authorization/Users/UserRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Core/Entitys/Authorization/Users/UserRole.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Core/IEManageSystem.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Core/IEManageSystem.Core.csproj -------------------------------------------------------------------------------- /src/IEManageSystem.Core/IEManageSystemConsts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Core/IEManageSystemConsts.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Core/IEManageSystemCoreModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Core/IEManageSystemCoreModule.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Core/Localization/IEManageSystemLocalizationConfigurer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Core/Localization/IEManageSystemLocalizationConfigurer.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Core/Localization/SourceFiles/IEManageSystem-en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Core/Localization/SourceFiles/IEManageSystem-en.json -------------------------------------------------------------------------------- /src/IEManageSystem.Core/Localization/SourceFiles/IEManageSystem-tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Core/Localization/SourceFiles/IEManageSystem-tr.json -------------------------------------------------------------------------------- /src/IEManageSystem.Core/Localization/SourceFiles/IEManageSystem-zh-CHS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Core/Localization/SourceFiles/IEManageSystem-zh-CHS.json -------------------------------------------------------------------------------- /src/IEManageSystem.Core/Localization/SourceFiles/IEManageSystem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Core/Localization/SourceFiles/IEManageSystem.json -------------------------------------------------------------------------------- /src/IEManageSystem.Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Core/Repositorys/IEfRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Core/Repositorys/IEfRepository.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Core/Web/IIEMemoryCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Core/Web/IIEMemoryCache.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Core/Web/WebContentFolderHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Core/Web/WebContentFolderHelper.cs -------------------------------------------------------------------------------- /src/IEManageSystem.EntityFrameworkCore/Configures/CMS/ComponentDataConfigure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.EntityFrameworkCore/Configures/CMS/ComponentDataConfigure.cs -------------------------------------------------------------------------------- /src/IEManageSystem.EntityFrameworkCore/Configures/CMS/CompositeMenuConfigure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.EntityFrameworkCore/Configures/CMS/CompositeMenuConfigure.cs -------------------------------------------------------------------------------- /src/IEManageSystem.EntityFrameworkCore/Configures/CMS/LeafMenuConfigure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.EntityFrameworkCore/Configures/CMS/LeafMenuConfigure.cs -------------------------------------------------------------------------------- /src/IEManageSystem.EntityFrameworkCore/Configures/CMS/MenuBaseConfigure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.EntityFrameworkCore/Configures/CMS/MenuBaseConfigure.cs -------------------------------------------------------------------------------- /src/IEManageSystem.EntityFrameworkCore/Configures/CMS/PageDataConfigure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.EntityFrameworkCore/Configures/CMS/PageDataConfigure.cs -------------------------------------------------------------------------------- /src/IEManageSystem.EntityFrameworkCore/Configures/Core/AccountConfigure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.EntityFrameworkCore/Configures/Core/AccountConfigure.cs -------------------------------------------------------------------------------- /src/IEManageSystem.EntityFrameworkCore/Configures/Core/PermissionConfigure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.EntityFrameworkCore/Configures/Core/PermissionConfigure.cs -------------------------------------------------------------------------------- /src/IEManageSystem.EntityFrameworkCore/Configures/Core/RoleConfigure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.EntityFrameworkCore/Configures/Core/RoleConfigure.cs -------------------------------------------------------------------------------- /src/IEManageSystem.EntityFrameworkCore/Configures/Core/UserConfigure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.EntityFrameworkCore/Configures/Core/UserConfigure.cs -------------------------------------------------------------------------------- /src/IEManageSystem.EntityFrameworkCore/Configures/Core/UserRoleConfigure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.EntityFrameworkCore/Configures/Core/UserRoleConfigure.cs -------------------------------------------------------------------------------- /src/IEManageSystem.EntityFrameworkCore/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.EntityFrameworkCore/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/IEManageSystem.EntityFrameworkCore/Repositorys/EfRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.EntityFrameworkCore/Repositorys/EfRepository.cs -------------------------------------------------------------------------------- /src/IEManageSystem.EntityFrameworkCore/Repositorys/EfRepositoryBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.EntityFrameworkCore/Repositorys/EfRepositoryBase.cs -------------------------------------------------------------------------------- /src/IEManageSystem.JwtAuthentication/Authorizations/IEAuthorizationPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.JwtAuthentication/Authorizations/IEAuthorizationPolicy.cs -------------------------------------------------------------------------------- /src/IEManageSystem.JwtAuthentication/ClaimManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.JwtAuthentication/ClaimManager.cs -------------------------------------------------------------------------------- /src/IEManageSystem.JwtAuthentication/Configuration/JwtAuthenConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.JwtAuthentication/Configuration/JwtAuthenConfiguration.cs -------------------------------------------------------------------------------- /src/IEManageSystem.JwtAuthentication/IEJwtAuthenticationModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.JwtAuthentication/IEJwtAuthenticationModule.cs -------------------------------------------------------------------------------- /src/IEManageSystem.JwtAuthentication/IEManageSystem.JwtAuthentication.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.JwtAuthentication/IEManageSystem.JwtAuthentication.csproj -------------------------------------------------------------------------------- /src/IEManageSystem.JwtAuthentication/JwtAuthenticationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.JwtAuthentication/JwtAuthenticationExtensions.cs -------------------------------------------------------------------------------- /src/IEManageSystem.JwtAuthentication/JwtTokenHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.JwtAuthentication/JwtTokenHandler.cs -------------------------------------------------------------------------------- /src/IEManageSystem.JwtAuthentication/Model/JwtClaimType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.JwtAuthentication/Model/JwtClaimType.cs -------------------------------------------------------------------------------- /src/IEManageSystem.JwtAuthentication/Model/UserClaimInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.JwtAuthentication/Model/UserClaimInfo.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/.gitignore -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/.vscode/launch.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/babel.config.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/createModulesFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/createModulesFile.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/index.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/package.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/public/favicon.ico -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/public/index.html -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/public/logo.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/public/manifest.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/public/robots.txt -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/react-native.config.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Assets/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Assets/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Assets/css/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Assets/css/common.css -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Assets/css/open-iconic-bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Assets/css/open-iconic-bootstrap.min.css -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Assets/fonts/fontawesome/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Assets/fonts/fontawesome/fa-brands-400.eot -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Assets/fonts/fontawesome/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Assets/fonts/fontawesome/fa-brands-400.svg -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Assets/fonts/fontawesome/fa-light-300.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Assets/fonts/fontawesome/fa-light-300.eot -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Assets/fonts/fontawesome/fa-light-300.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Assets/fonts/fontawesome/fa-light-300.html -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Assets/fonts/fontawesome/fa-light-300.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Assets/fonts/fontawesome/fa-light-300.svg -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Assets/fonts/fontawesome/fa-light-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Assets/fonts/fontawesome/fa-light-300.woff -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Assets/fonts/fontawesome/fa-light-301.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Assets/fonts/fontawesome/fa-light-301.html -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Assets/fonts/fontawesome/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Assets/fonts/fontawesome/fa-solid-900.eot -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Assets/fonts/fontawesome/fa-solid-900.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Assets/fonts/fontawesome/fa-solid-900.html -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Assets/fonts/fontawesome/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Assets/fonts/fontawesome/fa-solid-900.svg -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Assets/fonts/fontawesome/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Assets/fonts/fontawesome/fa-solid-900.woff -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Assets/fonts/fontawesome/fa-solid-901.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Assets/fonts/fontawesome/fa-solid-901.html -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Assets/fonts/gt-walsheim/GTWalsheim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Assets/fonts/gt-walsheim/GTWalsheim.html -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Assets/fonts/gt-walsheim/GTWalsheim.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Assets/fonts/gt-walsheim/GTWalsheim.svg -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Assets/fonts/gt-walsheim/GTWalsheim.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Assets/fonts/gt-walsheim/GTWalsheim.woff -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Assets/fonts/open-iconic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Assets/fonts/open-iconic.eot -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Assets/fonts/open-iconic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Assets/fonts/open-iconic.otf -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Assets/fonts/open-iconic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Assets/fonts/open-iconic.svg -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Assets/fonts/open-iconic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Assets/fonts/open-iconic.ttf -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Assets/fonts/open-iconic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Assets/fonts/open-iconic.woff -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Assets/images/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Assets/images/background.jpg -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Assets/images/default_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Assets/images/default_avatar.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Assets/images/default_avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Assets/images/default_avatar2.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Assets/images/default_post_img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Assets/images/default_post_img.jpg -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Assets/images/logo.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Assets/images/nofind.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Assets/images/nofind.jpg -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Assets/images/nofind480x300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Assets/images/nofind480x300.jpg -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Common/BaseCMSManage/IEReduxs/Actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Common/BaseCMSManage/IEReduxs/Actions.ts -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Common/BaseCMSManage/IEReduxs/CmsRedux.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Common/BaseCMSManage/IEReduxs/CmsRedux.ts -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Common/BaseCMSManage/IEReduxs/PageDatas/Action.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Common/BaseCMSManage/IEReduxs/Pages/Action.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Common/BaseCMSManage/IEReduxs/Reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Common/BaseCMSManage/IEReduxs/Reducers.ts -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Common/BaseCMSManage/Models/EntityEdit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Common/BaseCMSManage/Models/EntityEdit.ts -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Common/BaseCMSManage/Models/LogicModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Common/BaseCMSManage/Models/LogicModel.ts -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Common/BaseCMSManage/Models/MenuModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Common/BaseCMSManage/Models/MenuModel.ts -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Common/BaseCMSManage/Module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Common/BaseCMSManage/Module.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Common/BaseCMSManage/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Common/BaseCMSManage/package.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Common/BaseLayout/IEReduxs/Actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Common/BaseLayout/IEReduxs/Actions.ts -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Common/BaseLayout/IEReduxs/LayoutRedux.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Common/BaseLayout/IEReduxs/LayoutRedux.ts -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Common/BaseLayout/IEReduxs/Reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Common/BaseLayout/IEReduxs/Reducers.ts -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Common/BaseLayout/ILayoutInstance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Common/BaseLayout/ILayoutInstance.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Common/BaseLayout/Menu/Menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Common/BaseLayout/Menu/Menu.ts -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Common/BaseLayout/Menu/MenuProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Common/BaseLayout/Menu/MenuProvider.ts -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Common/BaseLayout/Module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Common/BaseLayout/Module.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Common/BaseLayout/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Common/BaseLayout/package.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Common/BasePerson/IEReduxs/Actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Common/BasePerson/IEReduxs/Actions.ts -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Common/BasePerson/IEReduxs/Reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Common/BasePerson/IEReduxs/Reducers.ts -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Common/BasePerson/Models/AccountModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Common/BasePerson/Models/AccountModel.ts -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Common/BasePerson/Models/RoleModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Common/BasePerson/Models/RoleModel.ts -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Common/BasePerson/Models/UserModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Common/BasePerson/Models/UserModel.ts -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Common/BasePerson/Module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Common/BasePerson/Module.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Common/BasePerson/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Common/BasePerson/package.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Common/BaseSetting/IEReduxs/Actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Common/BaseSetting/IEReduxs/Actions.ts -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Common/BaseSetting/IEReduxs/IERedux.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Common/BaseSetting/IEReduxs/IERedux.ts -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Common/BaseSetting/IEReduxs/Reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Common/BaseSetting/IEReduxs/Reducer.ts -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Common/BaseSetting/Module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Common/BaseSetting/Module.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Common/BaseSetting/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Common/BaseSetting/package.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Common/Core/IEReduxFetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Common/Core/IEReduxFetch.ts -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Common/Core/IEReduxs/Actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Common/Core/IEReduxs/Actions.ts -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Common/Core/IEReduxs/Reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Common/Core/IEReduxs/Reducer.ts -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Common/Core/IEReduxs/RootRedux.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Common/Core/IEReduxs/RootRedux.ts -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Common/Core/IEToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Common/Core/IEToken.ts -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Common/Core/Module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Common/Core/Module.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Common/Core/Weburl/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Common/Core/Weburl/index.ts -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Common/Core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Common/Core/package.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Common/ice-common/AntIcons/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Common/ice-common/AntIcons/index.tsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Common/ice-common/BaseIERedux.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Common/ice-common/BaseIERedux.ts -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Common/ice-common/IEStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Common/ice-common/IEStore.ts -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Common/ice-common/IocContainer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Common/ice-common/IocContainer/index.ts -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Common/ice-common/MiddlewareFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Common/ice-common/MiddlewareFactory.ts -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Common/ice-common/Modules/BaseModule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Common/ice-common/Modules/BaseModule.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Common/ice-common/Modules/ModuleFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Common/ice-common/Modules/ModuleFactory.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Common/ice-common/Page/Page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Common/ice-common/Page/Page.ts -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Common/ice-common/Page/PageProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Common/ice-common/Page/PageProvider.ts -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Common/ice-common/Theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Common/ice-common/Theme/index.ts -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Common/ice-common/ToolLibrary/IETool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Common/ice-common/ToolLibrary/IETool.ts -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Common/ice-common/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Common/ice-common/index.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Common/ice-common/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Common/ice-common/package.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/ModuleList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/RNApp/ModuleList.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNCMS/Home/PageContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/RNApp/RNCMS/Home/PageContainer.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNCMS/Home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/RNApp/RNCMS/Home/index.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNCMS/Module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/RNApp/RNCMS/Module.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNCMS/SearchBar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/RNApp/RNCMS/SearchBar/index.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNCMS/StyleCheck/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/RNApp/RNCMS/StyleCheck/index.ts -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNCMS/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/RNApp/RNCMS/package.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNCommon/AntIcons/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/RNApp/RNCommon/AntIcons/index.tsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNCommon/Module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/RNApp/RNCommon/Module.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNCommon/ProgressBar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/RNApp/RNCommon/ProgressBar/index.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNCommon/Theme/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/RNApp/RNCommon/Theme/index.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNCommon/ToolLibrary/IETool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/RNApp/RNCommon/ToolLibrary/IETool.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNCommon/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/RNApp/RNCommon/package.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNInfrastructure/Camera/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/RNApp/RNInfrastructure/Camera/index.tsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNInfrastructure/Device.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/RNApp/RNInfrastructure/Device.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNInfrastructure/IEWebView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/RNApp/RNInfrastructure/IEWebView/index.tsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNInfrastructure/Module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/RNApp/RNInfrastructure/Module.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNInfrastructure/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/RNApp/RNInfrastructure/package.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNLayout/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/RNApp/RNLayout/Layout.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNLayout/Module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/RNApp/RNLayout/Module.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNLayout/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/RNApp/RNLayout/package.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNPerson/Login/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/RNApp/RNPerson/Login/index.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNPerson/Module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/RNApp/RNPerson/Module.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNPerson/Person.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/RNApp/RNPerson/Person.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNPerson/UserInfo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/RNApp/RNPerson/UserInfo/index.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNPerson/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/RNApp/RNPerson/package.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNSetting/Module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/RNApp/RNSetting/Module.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNSetting/Setting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/RNApp/RNSetting/Setting.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNSetting/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/RNApp/RNSetting/package.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNStart/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/RNApp/RNStart/.buckconfig -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNStart/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/RNApp/RNStart/.flowconfig -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNStart/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNStart/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/RNApp/RNStart/.prettierrc.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNStart/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNStart/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/RNApp/RNStart/android/app/BUCK -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNStart/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/RNApp/RNStart/android/app/build.gradle -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNStart/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/RNApp/RNStart/android/app/build_defs.bzl -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNStart/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/RNApp/RNStart/android/app/debug.keystore -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNStart/android/app/src/main/assets/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "baseUrl": "http://192.168.31.234:5000" 3 | } -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNStart/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/RNApp/RNStart/android/build.gradle -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNStart/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/RNApp/RNStart/android/gradle.properties -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNStart/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/RNApp/RNStart/android/gradlew -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNStart/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/RNApp/RNStart/android/gradlew.bat -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNStart/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/RNApp/RNStart/android/settings.gradle -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNStart/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/RNApp/RNStart/app.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNStart/index.js: -------------------------------------------------------------------------------- 1 | import './src/index'; 2 | -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNStart/ios/IceEmblem/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/RNApp/RNStart/ios/IceEmblem/AppDelegate.h -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNStart/ios/IceEmblem/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/RNApp/RNStart/ios/IceEmblem/AppDelegate.m -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNStart/ios/IceEmblem/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/RNApp/RNStart/ios/IceEmblem/Info.plist -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNStart/ios/IceEmblem/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/RNApp/RNStart/ios/IceEmblem/main.m -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNStart/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/RNApp/RNStart/ios/Podfile -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNStart/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/RNApp/RNStart/metro.config.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNStart/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/RNApp/RNStart/package.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNStart/src/Module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/RNApp/RNStart/src/Module.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/RNApp/RNStart/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/RNApp/RNStart/src/index.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Resource.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Resource.d.ts -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Templates/IETemplateComponents/Chart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Templates/IETemplateComponents/Chart.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Templates/IETemplateComponents/Home.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Templates/IETemplateComponents/Home.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Templates/IETemplateComponents/Post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Templates/IETemplateComponents/Post.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Templates/IETemplateComponents/WBolt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Templates/IETemplateComponents/WBolt.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Templates/IETemplateComponents/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Templates/IETemplateComponents/index.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Templates/RNIETemplateComponents/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Templates/RNIETemplateComponents/index.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Templates/WebIETemplateComponents/IEImg/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/Templates/WebIETemplateComponents/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/Templates/WebIETemplateComponents/index.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Account/Content.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Account/Content.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Account/LogoutBtnNavTool.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Account/LogoutBtnNavTool.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Account/Module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Account/Module.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Account/Title.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Account/Title.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Account/account.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Account/account.css -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Account/account.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Account/account.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Account/login_back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Account/login_back.jpg -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Account/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Account/package.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Adapters/IECamera.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Adapters/IECamera.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Adapters/IEReactNativeWeb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Adapters/IEReactNativeWeb.tsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Adapters/Module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Adapters/Module.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Adapters/RNPageLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Adapters/RNPageLayout.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Adapters/WebView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Adapters/WebView.tsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Adapters/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Adapters/package.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/AuthorizeManage/AuthorizeManage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/AuthorizeManage/AuthorizeManage.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/AuthorizeManage/Module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/AuthorizeManage/Module.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/AuthorizeManage/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/AuthorizeManage/package.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/CMSManage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/CMSManage.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/Home/Page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/Home/Page.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/Home/PageContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/Home/PageContainer.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/Home/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/Home/index.css -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/Home/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/Home/index.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/LogicManage/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/LogicManage/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/LogicManage/index.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/Menu/Menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/Menu/Menu.css -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/Menu/Menu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/Menu/Menu.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/MenuListManage/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/MenuListManage/index.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/Module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/Module.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/PageData/PageData.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/PageData/PageData.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/PageEdit/BtnLists.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/PageEdit/BtnLists.css -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/PageEdit/BtnLists.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/PageEdit/BtnLists.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/PageEdit/ClipBoard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/PageEdit/ClipBoard.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/PageEdit/Hotkey.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/PageEdit/Hotkey.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/PageEdit/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/PageEdit/index.css -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/PageEdit/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/PageEdit/index.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/PageManage/PageManage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/PageManage/PageManage.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/PictureManage/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/PictureManage/folder.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/PictureManage/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/PictureManage/index.css -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/PictureManage/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/PictureManage/index.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/PostEdit/ToolBtns.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/PostEdit/ToolBtns.css -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/PostEdit/ToolBtns.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/PostEdit/ToolBtns.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/PostEdit/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/PostEdit/index.css -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/PostEdit/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/PostEdit/index.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/SearchBoxTool/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/SearchBoxTool/index.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/TemplateManage/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/TemplateManage/index.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/CMSManage/package.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Common/AntIcons/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Common/AntIcons/index.tsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Common/IEBraftEditor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Common/IEBraftEditor/index.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Common/IESideNav/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Common/IESideNav/index.css -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Common/IESideNav/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Common/IESideNav/index.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Common/ListBtn/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Common/ListBtn/index.css -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Common/ListBtn/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Common/ListBtn/index.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Logo/Logo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Logo/Logo.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Logo/logo - 副本.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Logo/logo - 副本.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Logo/logo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Logo/logo.css -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Logo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Logo/logo.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Module.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Preview/Preview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Preview/Preview.css -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Preview/Preview.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Preview/Preview.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Resource/Paging.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Resource/Paging.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Resource/Resource.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Resource/Resource.css -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Resource/Resource.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Resource/Resource.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Resource/ResourceDelete.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Resource/ResourceDelete.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Resource/ResourceDescribe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Resource/ResourceDescribe.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Resource/ResourceList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Resource/ResourceList.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Common/ResourceForm/DateTime.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Common/ResourceForm/DateTime.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Common/ResourceForm/Describe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Common/ResourceForm/Describe.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Common/ResourceForm/FormCheck.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Common/ResourceForm/FormCheck.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Common/ResourceForm/FormRadio.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Common/ResourceForm/FormRadio.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Common/ResourceForm/RichText.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Common/ResourceForm/RichText.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Common/ResourceForm/Text.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Common/ResourceForm/Text.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Tab/Tab.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Tab/Tab.css -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Tab/Tab.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Tab/Tab.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Theme/blue.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Theme/blue.less -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Theme/cyan.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Theme/cyan.less -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Theme/geekblue.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Theme/geekblue.less -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Theme/gold.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Theme/gold.less -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Theme/green.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Theme/green.less -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Theme/grey.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Theme/grey.less -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Theme/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Theme/index.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Theme/lime.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Theme/lime.less -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Theme/magenta.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Theme/magenta.less -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Theme/orange.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Theme/orange.less -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Theme/purple.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Theme/purple.less -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Theme/red.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Theme/red.less -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Theme/volcano.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Theme/volcano.less -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Theme/yellow.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Common/Theme/yellow.less -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Common/ToolLibrary/IETool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Common/ToolLibrary/IETool.ts -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Common/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Common/package.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Init/DBConfigure.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Init/DBConfigure.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Init/InitSite.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Init/InitSite.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Init/Introduce.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Init/Introduce.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Init/Module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Init/Module.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Init/Show1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Init/Show1.jpg -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Init/Show2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Init/Show2.jpg -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Init/Show3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Init/Show3.jpg -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Init/Show4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Init/Show4.jpg -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Init/Show5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Init/Show5.jpg -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Init/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Init/index.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Init/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Init/package.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Layout/BodyDiv/BodyDiv.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Layout/BodyDiv/BodyDiv.css -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Layout/BodyDiv/BodyDiv.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Layout/BodyDiv/BodyDiv.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Layout/BodyDiv/Index/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Layout/BodyDiv/Index/index.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Layout/ManageHome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Layout/ManageHome.css -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Layout/ManageHome.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Layout/ManageHome.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Layout/Module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Layout/Module.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Layout/Nav/Nav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Layout/Nav/Nav.css -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Layout/Nav/Nav.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Layout/Nav/Nav.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Layout/SideNav/SideNav.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Layout/SideNav/SideNav.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Layout/SideNav/SideNav.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Layout/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Layout/package.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/ModuleList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/ModuleList.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Personal/Module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Personal/Module.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Personal/Personal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Personal/Personal.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Personal/UserInfo/UserInfo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Personal/UserInfo/UserInfo.css -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Personal/UserInfo/UserInfo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Personal/UserInfo/UserInfo.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Personal/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Personal/package.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Setting/Module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Setting/Module.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Setting/Setting.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Setting/Setting.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Setting/SiteSetting/index.css: -------------------------------------------------------------------------------- 1 | .sitesetting{ 2 | 3 | } -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Setting/SiteSetting/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Setting/SiteSetting/index.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Setting/ThemeSetting/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Setting/ThemeSetting/blue.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Setting/ThemeSetting/cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Setting/ThemeSetting/cyan.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Setting/ThemeSetting/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Setting/ThemeSetting/default.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Setting/ThemeSetting/gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Setting/ThemeSetting/gold.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Setting/ThemeSetting/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Setting/ThemeSetting/green.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Setting/ThemeSetting/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Setting/ThemeSetting/index.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Setting/ThemeSetting/lime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Setting/ThemeSetting/lime.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Setting/ThemeSetting/magenta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Setting/ThemeSetting/magenta.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Setting/ThemeSetting/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Setting/ThemeSetting/orange.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Setting/ThemeSetting/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Setting/ThemeSetting/purple.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Setting/ThemeSetting/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Setting/ThemeSetting/red.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Setting/ThemeSetting/volcano.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Setting/ThemeSetting/volcano.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Setting/ThemeSetting/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Setting/ThemeSetting/yellow.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Setting/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Setting/package.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Start/config/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Start/config/env.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Start/config/getHttpsConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Start/config/getHttpsConfig.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Start/config/modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Start/config/modules.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Start/config/pathmap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Start/config/pathmap.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Start/config/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Start/config/paths.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Start/config/pnpTs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Start/config/pnpTs.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Start/config/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Start/config/webpack.config.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Start/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Start/package.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Start/scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Start/scripts/build.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Start/scripts/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Start/scripts/start.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Start/scripts/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Start/scripts/test.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Start/src/Module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Start/src/Module.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Start/src/Parts/Error.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Start/src/Parts/Error.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Start/src/Parts/Loading.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Start/src/Parts/Loading.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Start/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Start/src/index.css -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Start/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Start/src/index.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Test/Module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Test/Module.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Test/Test.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Test/Test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Test/Test.jsx -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/Test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/Test/package.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/__tests/IEEnzyme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/__tests/IEEnzyme.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/__tests/ResourceFilter.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/__tests/core/BaseIERedux.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/__tests/core/BaseIERedux.test.ts -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/__tests/core/IEToken.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/__tests/core/IEToken.test.ts -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/__tests/core/PageProvide.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/WebApp/__tests/core/PageProvide.test.ts -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/WebApp/index.js: -------------------------------------------------------------------------------- 1 | require('./Start/src/index.js'); -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/src/react-app-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/src/react-app-env.d.ts -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/tsconfig.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/ClientApp/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/ClientApp/yarn.lock -------------------------------------------------------------------------------- /src/IEManageSystem.Web/Configuration/HostingEnvironmentExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/Configuration/HostingEnvironmentExtensions.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Web/Configuration/WebConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/Configuration/WebConfiguration.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Web/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/Controllers/AccountController.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Web/Controllers/CMS/Logics/Dto/ExecLogicInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/Controllers/CMS/Logics/Dto/ExecLogicInput.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Web/Controllers/CMS/Logics/LogicExecController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/Controllers/CMS/Logics/LogicExecController.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Web/Controllers/CMS/Pages/Dto/GetPageDatasInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/Controllers/CMS/Pages/Dto/GetPageDatasInput.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Web/Controllers/CMS/Pages/Dto/ScorePageDataInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/Controllers/CMS/Pages/Dto/ScorePageDataInput.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Web/Controllers/CMS/Pages/Dto/ScorePageDataOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/Controllers/CMS/Pages/Dto/ScorePageDataOutput.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Web/Controllers/CMS/Pages/Dto/VisitPageDataInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/Controllers/CMS/Pages/Dto/VisitPageDataInput.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Web/Controllers/CMS/Pages/Dto/VisitPageDataOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/Controllers/CMS/Pages/Dto/VisitPageDataOutput.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Web/Controllers/CMS/Pages/PageDataManageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/Controllers/CMS/Pages/PageDataManageController.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Web/Controllers/CMS/Pages/PageDataQueryController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/Controllers/CMS/Pages/PageDataQueryController.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Web/Controllers/IEManageSystemControllerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/Controllers/IEManageSystemControllerBase.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Web/Controllers/InitSites/Dto/InitInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/Controllers/InitSites/Dto/InitInput.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Web/Controllers/InitSites/Dto/InitOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/Controllers/InitSites/Dto/InitOutput.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Web/Controllers/InitSites/InitSiteController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/Controllers/InitSites/InitSiteController.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Web/Controllers/Users/UserController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/Controllers/Users/UserController.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Web/Conventions/IEApiConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/Conventions/IEApiConvention.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Web/Filters/ApiAuthorizationFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/Filters/ApiAuthorizationFilter.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Web/Help/IEUrlHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/Help/IEUrlHelper.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Web/IEManageSystem.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/IEManageSystem.Web.csproj -------------------------------------------------------------------------------- /src/IEManageSystem.Web/IEManageSystem.Web.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/IEManageSystem.Web.csproj.user -------------------------------------------------------------------------------- /src/IEManageSystem.Web/IceEmblem.db: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/IEManageSystem.Web/Models/AccountModels/LoginApiModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/Models/AccountModels/LoginApiModel.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Web/Models/AccountModels/RegisterApiModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/Models/AccountModels/RegisterApiModel.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Web/Models/ConsentModels/ConsentInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/Models/ConsentModels/ConsentInputModel.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Web/Models/ConsentModels/ConsentModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/Models/ConsentModels/ConsentModel.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Web/Models/ConsentModels/ConsentOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/Models/ConsentModels/ConsentOptions.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Web/Models/ConsentModels/ScopeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/Models/ConsentModels/ScopeModel.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Web/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/Startup/IEManageSystemWebModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/Startup/IEManageSystemWebModule.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Web/Startup/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/Startup/Program.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Web/Startup/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/Startup/Startup.cs -------------------------------------------------------------------------------- /src/IEManageSystem.Web/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/app.config -------------------------------------------------------------------------------- /src/IEManageSystem.Web/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/appsettings.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/log4net.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/log4net.config -------------------------------------------------------------------------------- /src/IEManageSystem.Web/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/web.config -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/JavaScript/g2plot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/JavaScript/g2plot.js -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/JavaScript/g2plot.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/JavaScript/g2plot.js.map -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Pages/Chart.Page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Pages/Chart.Page.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Pages/Chart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Pages/Chart.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Pages/Home.Page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Pages/Home.Page.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Pages/Home.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Pages/Home.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Pages/Music.Page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Pages/Music.Page.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Pages/Music.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Pages/Music.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Pages/MusicList.Page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Pages/MusicList.Page.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Pages/MusicList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Pages/MusicList.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Pages/Post.Page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Pages/Post.Page.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Pages/Post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Pages/Post.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Pages/PostList.Page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Pages/PostList.Page.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Pages/PostList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Pages/PostList.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Pages/Tencent.Page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Pages/Tencent.Page.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Pages/Tencent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Pages/Tencent.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Pages/Test.Page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Pages/Test.Page.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Pages/Test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Pages/Test.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Pages/Video.Page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Pages/Video.Page.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Pages/Video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Pages/Video.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Pages/VideoList.Page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Pages/VideoList.Page.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Pages/VideoList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Pages/VideoList.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Pages/WBolt.Page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Pages/WBolt.Page.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Pages/WBolt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Pages/WBolt.json -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/BanGongIcon/baifang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/BanGongIcon/baifang.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/BanGongIcon/baogao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/BanGongIcon/baogao.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/BanGongIcon/biji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/BanGongIcon/biji.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/BanGongIcon/chuchai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/BanGongIcon/chuchai.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/BanGongIcon/dianhua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/BanGongIcon/dianhua.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/BanGongIcon/dinwei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/BanGongIcon/dinwei.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/BanGongIcon/icon_app_calendar_96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/BanGongIcon/icon_app_calendar_96.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/BanGongIcon/icon_app_message_96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/BanGongIcon/icon_app_message_96.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/BanGongIcon/jiedai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/BanGongIcon/jiedai.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/BanGongIcon/kehu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/BanGongIcon/kehu.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/BanGongIcon/luxian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/BanGongIcon/luxian.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/BanGongIcon/luyin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/BanGongIcon/luyin.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/BanGongIcon/richeng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/BanGongIcon/richeng.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/BanGongIcon/shenpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/BanGongIcon/shenpi.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/BanGongIcon/tianj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/BanGongIcon/tianj.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/BanGongIcon/tongji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/BanGongIcon/tongji.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/BanGongIcon/tongshi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/BanGongIcon/tongshi.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/BanGongIcon/tongxunlu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/BanGongIcon/tongxunlu.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/BanGongIcon/xiangmu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/BanGongIcon/xiangmu.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/BanGongIcon/xiaoliang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/BanGongIcon/xiaoliang.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/BanGongIcon/xinxi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/BanGongIcon/xinxi.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/BanGongIcon/xuexi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/BanGongIcon/xuexi.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/add.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/android.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/answer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/answer.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/app.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/browser.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/camera.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/cart.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/check.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/code.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/computer.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/copy.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/delete.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/deliver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/deliver.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/display.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/down.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/download.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/edit.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/emoji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/emoji.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/enclosure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/enclosure.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/eraser.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/favor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/favor.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/favorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/favorite.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/file.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/fill.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/fold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/fold.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/folder.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/font.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/hide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/hide.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/home.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/information.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/left.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/like.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/link.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/loading.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/lock.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/mac.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/mail.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/mark.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/menu.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/message.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/minus.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/money.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/more.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/my.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/my.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/natice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/natice.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/notification.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/order.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/people3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/people3.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/person2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/person2.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/phone.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/record.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/refresh.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/rest.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/right.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/ring pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/ring pause.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/rotate.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/round_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/round_check.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/search.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/service.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/shopping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/shopping.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/sitting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/sitting.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/tag.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/telephone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/telephone.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/time.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/to down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/to down.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/to left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/to left.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/to right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/to right.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/top.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/unfold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/unfold.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/unlock.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/upload.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/video.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/wangwang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/wangwang.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/windows.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/women.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/women.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/亲淘.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/亲淘.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/千牛.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/千牛.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Icon/旺信.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Icon/旺信.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/OtherIcon/Clion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/OtherIcon/Clion.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/OtherIcon/Game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/OtherIcon/Game.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/OtherIcon/OneDrive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/OtherIcon/OneDrive.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/OtherIcon/Terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/OtherIcon/Terminal.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/OtherIcon/UTools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/OtherIcon/UTools.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/OtherIcon/Visual Studio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/OtherIcon/Visual Studio.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/OtherIcon/Windows Terminal_PRE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/OtherIcon/Windows Terminal_PRE.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/OtherIcon/Windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/OtherIcon/Windows.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/OtherIcon/adobe-photoshop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/OtherIcon/adobe-photoshop.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/Posts/4/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/Posts/4/green.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/SheJi/antimg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/SheJi/antimg1.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/SheJi/antimg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/SheJi/antimg2.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/SheJi/antimg3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/SheJi/antimg3.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/SheJi/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/SheJi/background.jpg -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/SheJi/banner/banner1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/SheJi/banner/banner1.jpg -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/SheJi/banner/banner2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/SheJi/banner/banner2.jpg -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/SheJi/banner/banner3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/SheJi/banner/banner3.jpg -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/SheJi/banner/banner4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/SheJi/banner/banner4.jpg -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/SheJi/banner/banner5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/SheJi/banner/banner5.jpg -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/SheJi/banner/banner6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/SheJi/banner/banner6.jpg -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/SheJi/banner/banner7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/SheJi/banner/banner7.jpg -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/SheJi/banner/banner8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/SheJi/banner/banner8.jpg -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/SheJi/default_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/SheJi/default_avatar.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/SheJi/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/SheJi/favicon.ico -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/SheJi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/SheJi/logo.png -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/SheJi/nofind.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/SheJi/nofind.jpg -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/SheJi/post/post1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/SheJi/post/post1.jpg -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/SheJi/post/post2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/SheJi/post/post2.jpg -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/SheJi/post/post3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/SheJi/post/post3.jpg -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/SheJi/post/post4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/SheJi/post/post4.jpg -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Picture/SheJi/post/post5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Picture/SheJi/post/post5.jpg -------------------------------------------------------------------------------- /src/IEManageSystem.Web/wwwroot/Sonarqube/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/IEManageSystem.Web/wwwroot/Sonarqube/1.png -------------------------------------------------------------------------------- /src/UtilityAction/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/UtilityAction/Class1.cs -------------------------------------------------------------------------------- /src/UtilityAction/FileHandle/ImageHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/UtilityAction/FileHandle/ImageHandle.cs -------------------------------------------------------------------------------- /src/UtilityAction/Other/Encrypt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/UtilityAction/Other/Encrypt.cs -------------------------------------------------------------------------------- /src/UtilityAction/Other/Regular.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/UtilityAction/Other/Regular.cs -------------------------------------------------------------------------------- /src/UtilityAction/UtilityAction.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/UtilityAction/UtilityAction.csproj -------------------------------------------------------------------------------- /src/UtilityAction/ValidateFun/ValidateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/UtilityAction/ValidateFun/ValidateModel.cs -------------------------------------------------------------------------------- /src/UtilityAction/ValidateFun/VerificationCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/UtilityAction/ValidateFun/VerificationCode.cs -------------------------------------------------------------------------------- /src/UtilityAction/Web/FileContentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/UtilityAction/Web/FileContentType.cs -------------------------------------------------------------------------------- /src/UtilityAction/Web/WebModelBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/src/UtilityAction/Web/WebModelBinding.cs -------------------------------------------------------------------------------- /test/IEManageSystem.Application.Tests/Services/Logics/LogicAppServiceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/test/IEManageSystem.Application.Tests/Services/Logics/LogicAppServiceTest.cs -------------------------------------------------------------------------------- /test/IEManageSystem.Application.Tests/Services/Menus/MenuAppServiceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/test/IEManageSystem.Application.Tests/Services/Menus/MenuAppServiceTest.cs -------------------------------------------------------------------------------- /test/IEManageSystem.CommonInfrastructure.Tests/CMS/ActuatorFactoryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/test/IEManageSystem.CommonInfrastructure.Tests/CMS/ActuatorFactoryTest.cs -------------------------------------------------------------------------------- /test/IEManageSystem.Tests/IEManageSystem.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/test/IEManageSystem.Tests/IEManageSystem.Tests.csproj -------------------------------------------------------------------------------- /test/IEManageSystem.Tests/IEManageSystemTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/test/IEManageSystem.Tests/IEManageSystemTestBase.cs -------------------------------------------------------------------------------- /test/IEManageSystem.Tests/IEManageSystemTestModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/test/IEManageSystem.Tests/IEManageSystemTestModule.cs -------------------------------------------------------------------------------- /test/IEManageSystem.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/test/IEManageSystem.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /test/IEManageSystem.Tests/TestDatas/ApiScopeBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/test/IEManageSystem.Tests/TestDatas/ApiScopeBuilder.cs -------------------------------------------------------------------------------- /test/IEManageSystem.Tests/TestDatas/DBBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/test/IEManageSystem.Tests/TestDatas/DBBuilder.cs -------------------------------------------------------------------------------- /test/IEManageSystem.Tests/TestDatas/LogicBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/test/IEManageSystem.Tests/TestDatas/LogicBuilder.cs -------------------------------------------------------------------------------- /test/IEManageSystem.Tests/TestDatas/MenuBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/test/IEManageSystem.Tests/TestDatas/MenuBuilder.cs -------------------------------------------------------------------------------- /test/IEManageSystem.Tests/TestDatas/PageDataBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/test/IEManageSystem.Tests/TestDatas/PageDataBuilder.cs -------------------------------------------------------------------------------- /test/IEManageSystem.Tests/TestDatas/PermissionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/test/IEManageSystem.Tests/TestDatas/PermissionBuilder.cs -------------------------------------------------------------------------------- /test/IEManageSystem.Tests/TestDatas/RoleBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/test/IEManageSystem.Tests/TestDatas/RoleBuilder.cs -------------------------------------------------------------------------------- /test/IEManageSystem.Tests/TestDatas/UserBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/test/IEManageSystem.Tests/TestDatas/UserBuilder.cs -------------------------------------------------------------------------------- /test/IEManageSystem.Tests/wwwroot/Pages/ContentPage1Name.Page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/test/IEManageSystem.Tests/wwwroot/Pages/ContentPage1Name.Page.json -------------------------------------------------------------------------------- /test/IEManageSystem.Tests/wwwroot/Pages/ContentPage1Name.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /test/IEManageSystem.Web.Tests/Controllers/HomeController_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/test/IEManageSystem.Web.Tests/Controllers/HomeController_Tests.cs -------------------------------------------------------------------------------- /test/IEManageSystem.Web.Tests/IEManageSystem.Web.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/test/IEManageSystem.Web.Tests/IEManageSystem.Web.Tests.csproj -------------------------------------------------------------------------------- /test/IEManageSystem.Web.Tests/IEManageSystemWebTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/test/IEManageSystem.Web.Tests/IEManageSystemWebTestBase.cs -------------------------------------------------------------------------------- /test/IEManageSystem.Web.Tests/IEManageSystemWebTestModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/test/IEManageSystem.Web.Tests/IEManageSystemWebTestModule.cs -------------------------------------------------------------------------------- /test/IEManageSystem.Web.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/test/IEManageSystem.Web.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /test/IEManageSystem.Web.Tests/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceEmblem/IEManageSystem/HEAD/test/IEManageSystem.Web.Tests/Startup.cs -------------------------------------------------------------------------------- /test/IEManageSystem.Web.Tests/xunit.runner.json: -------------------------------------------------------------------------------- 1 | { 2 | "shadowCopy": false 3 | } --------------------------------------------------------------------------------