diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_SystemModule/Controllers/LogoImgController.cs b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_SystemModule/Controllers/LogoImgController.cs index ffe510f43..50708ba9e 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_SystemModule/Controllers/LogoImgController.cs +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_SystemModule/Controllers/LogoImgController.cs @@ -121,6 +121,12 @@ namespace Learun.Application.Web.Areas.LR_SystemModule.Controllers case "applogo": var byteapplogo = System.IO.File.ReadAllBytes(Path.Combine(rootPath, midPath, "applogo.png")); return File(byteapplogo, "image/jpeg"); + case "headbg": + var byteheadbg = System.IO.File.ReadAllBytes(Path.Combine(rootPath, midPath, "headbg.png")); + return File(byteheadbg, "image/jpeg"); + case "data": + var bytedata = System.IO.File.ReadAllBytes(Path.Combine(rootPath, midPath, "data.png")); + return File(bytedata, "image/jpeg"); } } } diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Content/images/logo/applogo.png b/Learun.Framework.Ultimate V7/Learun.Application.Web/Content/images/logo/applogo.png index a7264f5b7..a5670280c 100644 Binary files a/Learun.Framework.Ultimate V7/Learun.Application.Web/Content/images/logo/applogo.png and b/Learun.Framework.Ultimate V7/Learun.Application.Web/Content/images/logo/applogo.png differ diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Content/images/logo/data.png b/Learun.Framework.Ultimate V7/Learun.Application.Web/Content/images/logo/data.png new file mode 100644 index 000000000..22f1e298c Binary files /dev/null and b/Learun.Framework.Ultimate V7/Learun.Application.Web/Content/images/logo/data.png differ diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Content/images/logo/headbg.png b/Learun.Framework.Ultimate V7/Learun.Application.Web/Content/images/logo/headbg.png new file mode 100644 index 000000000..087b17949 Binary files /dev/null and b/Learun.Framework.Ultimate V7/Learun.Application.Web/Content/images/logo/headbg.png differ diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Learun.Application.Web.csproj b/Learun.Framework.Ultimate V7/Learun.Application.Web/Learun.Application.Web.csproj index c7eb6bfb7..59415db07 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Learun.Application.Web.csproj +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Learun.Application.Web.csproj @@ -2140,6 +2140,8 @@ + +