From 35ed1f654ff10915cb7cb5c3d62960d47350d71f Mon Sep 17 00:00:00 2001 From: zhangpeihang <948869991@qq.com> Date: Mon, 17 Jan 2022 20:34:29 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=89=8D=E5=8F=B0=E5=BA=94=E7=94=A8?= =?UTF-8?q?=E7=9B=B8=E5=85=B3=E6=96=B9=E6=B3=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Services/DictService.cs | 72 +++++++++++++++++++ .../admin/BootstrapAdmin.Web.Core/IDict.cs | 18 +++++ 2 files changed, 90 insertions(+) diff --git a/src/blazor/admin/BootstrapAdmin.DataAccess.PetaPoco/Services/DictService.cs b/src/blazor/admin/BootstrapAdmin.DataAccess.PetaPoco/Services/DictService.cs index c68e7c30..04739d33 100644 --- a/src/blazor/admin/BootstrapAdmin.DataAccess.PetaPoco/Services/DictService.cs +++ b/src/blazor/admin/BootstrapAdmin.DataAccess.PetaPoco/Services/DictService.cs @@ -415,4 +415,76 @@ class DictService : IDict var dicts = GetAll(); return dicts.Exists(s => s.Category == "应用程序" && s.Code == appId); } + + public bool SaveFrontApp(string appId, string AppName, string homeUrl, string title, string footer, string icon, string favicon) + { + var items = new List() + { + new Dict { Category = "应用程序", Name = AppName, Code = appId, Define = EnumDictDefine.System }, + new Dict { Category = AppName, Name = "网站页脚", Code = footer }, + new Dict { Category = AppName, Name = "网站标题", Code = title }, + new Dict { Category = AppName, Name = "favicon", Code = favicon }, + new Dict { Category = AppName, Name = "网站图标", Code = icon }, + new Dict { Category = "应用首页", Name = appId, Code = homeUrl }, + }; + var exist = ExistsAppId(appId); + + if (exist) + { + try + { + Database.BeginTransaction(); + Database.Execute("update Dicts set Code=@HomeUrl where Category=@Category and Name=@Name", new { HomeUrl = homeUrl, Category = AppName, Name = appId }); + Database.Execute("update Dicts set Code=@Footer where Category=@Category and Name='网站页脚'", new { Footer = footer, Category = AppName }); + Database.Execute("update Dicts set Code=@Title where Category=@Category and Name='网站标题'", new { Title = title, Category = AppName }); + Database.Execute("update Dicts set Code=@Favicon where Category=@Category and Name='favicon'", new { Favicon = favicon, Category = AppName }); + Database.Execute("update Dicts set Code=@Icon where Category=@Category and Name='网站图标'", new { Icon = icon, Category = AppName }); + Database.CompleteTransaction(); + } + catch (Exception) + { + Database.AbortTransaction(); + throw; + } + } + else + { + Database.InsertBatch(items); + } + return true; + } + + public (string homeurl, string title, string footer, string icon, string favicon) GetFrontAppSettings(string appId, string AppName) + { + var dicts = GetAll(); + var homeurl = dicts.FirstOrDefault(s => s.Category == "应用首页" && s.Name == appId)?.Code ?? ""; + var title = dicts.FirstOrDefault(s => s.Category == AppName && s.Name == "网站标题")?.Code ?? ""; + var footer = dicts.FirstOrDefault(s => s.Category == AppName && s.Name == "网站页脚")?.Code ?? ""; + var icon = dicts.FirstOrDefault(s => s.Category == AppName && s.Name == "网站图标")?.Code ?? ""; + var favicon = dicts.FirstOrDefault(s => s.Category == AppName && s.Name == "favicon")?.Code ?? ""; + + return (homeurl, title, footer, icon, favicon); + } + + public bool DeleteFrontAppSettings(string appId, string AppName) + { + try + { + Database.BeginTransaction(); + Database.Execute("delete from dicts where Category='应用程序' and Name=@Name and Code=@Code", new { Name = AppName, Code = appId }); + Database.Execute("delete from dicts where Category=@Category and Name='网站页脚'", new { Category = AppName }); + Database.Execute("delete from dicts where Category=@Category and Name='网站页脚'", new { Category = AppName }); + Database.Execute("delete from dicts where Category=@Category and Name='网站标题'", new { Category = AppName }); + Database.Execute("delete from dicts where Category=@Category and Name='favicon'", new { Category = AppName }); + Database.Execute("delete from dicts where Category=@Category and Name='网站图标'", new { Category = AppName }); + Database.CompleteTransaction(); + } + catch (Exception) + { + Database.AbortTransaction(); + throw; + } + + return true; + } } diff --git a/src/blazor/admin/BootstrapAdmin.Web.Core/IDict.cs b/src/blazor/admin/BootstrapAdmin.Web.Core/IDict.cs index 5d313262..07400e33 100644 --- a/src/blazor/admin/BootstrapAdmin.Web.Core/IDict.cs +++ b/src/blazor/admin/BootstrapAdmin.Web.Core/IDict.cs @@ -372,4 +372,22 @@ public interface IDict /// /// bool ExistsAppId(string appId); + + /// + /// 添加前台应用 + /// + /// + bool SaveFrontApp(string appId, string AppName, string homeUrl, string title, string footer, string icon, string favicon); + + /// + /// 获得前台应用配置 + /// + /// + (string homeurl, string title, string footer, string icon, string favicon) GetFrontAppSettings(string appId, string AppName); + + /// + /// 删除前台应用配置 + /// + /// + bool DeleteFrontAppSettings(string appId, string AppName); }