123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392 |
- /*
- * App底部导航
- */
- using System;
- using System.Web;
- using System.Collections.Generic;
- using System.Diagnostics;
- using System.Linq;
- using System.Threading.Tasks;
- using Microsoft.AspNetCore.Mvc;
- using Microsoft.AspNetCore.Http;
- using Microsoft.Extensions.Logging;
- using Microsoft.Extensions.Options;
- using MySystem.BsModels;
- using Library;
- using LitJson;
- using MySystemLib;
- namespace MySystem.Areas.Admin.Controllers
- {
- [Area("Admin")]
- [Route("Admin/[controller]/[action]")]
- public class AppBottomNavsController : BaseController
- {
- public AppBottomNavsController(IHttpContextAccessor accessor, ILogger<BaseController> logger, IOptions<Setting> setting) : base(accessor, logger, setting)
- {
- OtherMySqlConn.connstr = ConfigurationManager.AppSettings["BsSqlConnStr"].ToString();
- }
- #region App底部导航列表
- /// <summary>
- /// 根据条件查询App底部导航列表
- /// </summary>
- /// <returns></returns>
- public IActionResult Index(AppBottomNavs data, string right)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- string Condition = "";
- if (!string.IsNullOrEmpty(Condition))
- {
- Condition = Condition.TrimEnd(',');
- Condition = ", where: {" + Condition + "}";
- }
- ViewBag.Condition = Condition;
- return View();
- }
- #endregion
- #region 根据条件查询App底部导航列表
- /// <summary>
- /// App底部导航列表
- /// </summary>
- /// <returns></returns>
- public JsonResult IndexData(AppBottomNavs data, string Kind = "default", int page = 1, int limit = 30)
- {
- Dictionary<string, string> Fields = new Dictionary<string, string>();
- string condition = " and SeoKeyword='" + Kind + "'";
- Dictionary<string, object> obj = new AdminContentOther(_accessor.HttpContext, PublicFunction.BsTables).IndexData("AppBottomNavs", Fields, "QueryCount asc, Sort desc, Id desc", "0", page, limit, condition);
- List<Dictionary<string, object>> diclist = obj["data"] as List<Dictionary<string, object>>;
- foreach (Dictionary<string, object> dic in diclist)
- {
- dic["Status"] = dic["Status"].ToString() == "1" ? "开启" : "关闭";
- }
- return Json(obj);
- }
- #endregion
- #region 增加App底部导航
- /// <summary>
- /// 增加或修改App底部导航信息
- /// </summary>
- /// <returns></returns>
- public IActionResult Add(string right)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- return View();
- }
- #endregion
- #region 增加App底部导航
- /// <summary>
- /// 增加或修改App底部导航信息
- /// </summary>
- /// <returns></returns>
- [HttpPost]
- public string Add(AppBottomNavs data)
- {
- string Kind = function.CheckNull(data.SeoKeyword);
- Dictionary<string, object> Fields = new Dictionary<string, object>();
- Fields.Add("Title", data.Title); //标题
- string SelectIcon = function.ReadInstance("/WebRootPath.txt") + data.SelectIcon;
- string NormalIcon = function.ReadInstance("/WebRootPath.txt") + data.NormalIcon;
- if (System.IO.File.Exists(SelectIcon))
- {
- System.IO.File.Move(SelectIcon, SelectIcon.Replace("/default/", "/" + Kind + "/"), true);
- }
- if (System.IO.File.Exists(NormalIcon))
- {
- System.IO.File.Move(NormalIcon, NormalIcon.Replace("/default/", "/" + Kind + "/"), true);
- }
- Fields.Add("SelectIcon", function.CheckNull(data.SelectIcon).Replace("/default/", "/" + Kind + "/")); //选中图标
- Fields.Add("NormalIcon", function.CheckNull(data.NormalIcon).Replace("/default/", "/" + Kind + "/")); //未选中图标
- Fields.Add("SelectTextColor", data.SelectTextColor); //选中文字颜色
- Fields.Add("NormalTextColor", data.NormalTextColor); //未选中文字颜色
- Fields.Add("PageName", data.PageName); //关联页面文件
- Fields.Add("NoPageHint", data.NoPageHint); //为关联页面提示信息
- Fields.Add("BgColor", data.BgColor); //背景色
- Fields.Add("SeoTitle", data.SeoTitle);
- Fields.Add("SeoKeyword", data.SeoKeyword);
- Fields.Add("SeoDescription", data.SeoDescription);
- int Id = new AdminContentOther(_accessor.HttpContext, PublicFunction.BsTables).Add("AppBottomNavs", Fields, 0);
- AddSysLog(data.Id.ToString(), "AppBottomNavs", "add");
- bsdb.SaveChanges();
- return "success";
- }
- #endregion
- #region 修改App底部导航
- /// <summary>
- /// 增加或修改App底部导航信息
- /// </summary>
- /// <returns></returns>
- public IActionResult Edit(string right, int Id = 0)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- AppBottomNavs editData = bsdb.AppBottomNavs.FirstOrDefault(m => m.Id == Id) ?? new AppBottomNavs();
- ViewBag.data = editData;
- return View();
- }
- #endregion
- #region 修改App底部导航
- /// <summary>
- /// 增加或修改App底部导航信息
- /// </summary>
- /// <returns></returns>
- [HttpPost]
- public string Edit(AppBottomNavs data)
- {
- string Kind = function.CheckNull(data.SeoKeyword);
- Dictionary<string, object> Fields = new Dictionary<string, object>();
- Fields.Add("Title", data.Title); //标题
- string SelectIcon = function.ReadInstance("/WebRootPath.txt") + data.SelectIcon;
- string NormalIcon = function.ReadInstance("/WebRootPath.txt") + data.NormalIcon;
- if (System.IO.File.Exists(SelectIcon))
- {
- System.IO.File.Move(SelectIcon, SelectIcon.Replace("/default/", "/" + Kind + "/"), true);
- }
- if (System.IO.File.Exists(NormalIcon))
- {
- System.IO.File.Move(NormalIcon, NormalIcon.Replace("/default/", "/" + Kind + "/"), true);
- }
- Fields.Add("SelectIcon", function.CheckNull(data.SelectIcon).Replace("/default/", "/" + Kind + "/")); //选中图标
- Fields.Add("NormalIcon", function.CheckNull(data.NormalIcon).Replace("/default/", "/" + Kind + "/")); //未选中图标
- Fields.Add("SelectTextColor", data.SelectTextColor); //选中文字颜色
- Fields.Add("NormalTextColor", data.NormalTextColor); //未选中文字颜色
- Fields.Add("PageName", data.PageName); //关联页面文件
- Fields.Add("NoPageHint", data.NoPageHint); //为关联页面提示信息
- Fields.Add("BgColor", data.BgColor); //背景色
- Fields.Add("SeoTitle", data.SeoTitle);
- Fields.Add("SeoKeyword", data.SeoKeyword);
- Fields.Add("SeoDescription", data.SeoDescription);
- new AdminContentOther(_accessor.HttpContext, PublicFunction.BsTables).Edit("AppBottomNavs", Fields, data.Id);
- AddSysLog(data.Id.ToString(), "AppBottomNavs", "update");
- bsdb.SaveChanges();
- return "success";
- }
- #endregion
- #region 删除App底部导航信息
- /// <summary>
- /// 删除App底部导航信息
- /// </summary>
- /// <returns></returns>
- public string Delete(string Id)
- {
- string[] idlist = Id.Split(new char[] { ',' });
- AddSysLog(Id, "AppBottomNavs", "del");
- foreach (string subid in idlist)
- {
- int id = int.Parse(subid);
- new AdminContentOther(_accessor.HttpContext, PublicFunction.BsTables).Delete("AppBottomNavs", id);
- }
- bsdb.SaveChanges();
- return "success";
- }
- #endregion
- #region 开启
- /// <summary>
- /// 开启
- /// </summary>
- /// <returns></returns>
- public string Open(string Id)
- {
- string[] idlist = Id.Split(new char[] { ',' });
- AddSysLog(Id, "AppBottomNavs", "open");
- foreach (string subid in idlist)
- {
- int id = int.Parse(subid);
- Dictionary<string, object> Fields = new Dictionary<string, object>();
- Fields.Add("Status", 1);
- new AdminContentOther(_accessor.HttpContext, PublicFunction.BsTables).Edit("AppBottomNavs", Fields, id);
- }
- bsdb.SaveChanges();
- return "success";
- }
- #endregion
- #region 关闭
- /// <summary>
- /// 关闭
- /// </summary>
- /// <returns></returns>
- public string Close(string Id)
- {
- string[] idlist = Id.Split(new char[] { ',' });
- AddSysLog(Id, "AppBottomNavs", "close");
- foreach (string subid in idlist)
- {
- int id = int.Parse(subid);
- Dictionary<string, object> Fields = new Dictionary<string, object>();
- Fields.Add("Status", 0);
- new AdminContentOther(_accessor.HttpContext, PublicFunction.BsTables).Edit("AppBottomNavs", Fields, id);
- }
- bsdb.SaveChanges();
- return "success";
- }
- #endregion
- #region 排序
- /// <summary>
- /// 排序
- /// </summary>
- /// <param name="Id"></param>
- public string Sort(int Id, int Sort)
- {
- new AdminContentOther(_accessor.HttpContext, PublicFunction.BsTables).Sort("AppBottomNavs", Sort, Id);
- AddSysLog(Id.ToString(), "AppBottomNavs", "sort");
- return "success";
- }
- #endregion
- #region 导入数据
- /// <summary>
- /// 导入数据
- /// </summary>
- /// <param name="ExcelData"></param>
- public string Import(string ExcelData)
- {
- ExcelData = HttpUtility.UrlDecode(ExcelData);
- JsonData list = JsonMapper.ToObject(ExcelData);
- for (int i = 1; i < list.Count; i++)
- {
- JsonData dr = list[i];
- string Title = dr["标题"].ToString();
- string SelectIcon = dr["选中图标"].ToString();
- string NormalIcon = dr["未选中图标"].ToString();
- string SelectTextColor = dr["选中文字颜色"].ToString();
- string NormalTextColor = dr["未选中文字颜色"].ToString();
- string PageName = dr["关联页面文件"].ToString();
- string NoPageHint = dr["为关联页面提示信息"].ToString();
- string BgColor = dr["背景色"].ToString();
- bsdb.AppBottomNavs.Add(new AppBottomNavs()
- {
- CreateDate = DateTime.Now,
- UpdateDate = DateTime.Now,
- Title = Title, //标题
- SelectIcon = SelectIcon, //选中图标
- NormalIcon = NormalIcon, //未选中图标
- SelectTextColor = SelectTextColor, //选中文字颜色
- NormalTextColor = NormalTextColor, //未选中文字颜色
- PageName = PageName, //关联页面文件
- NoPageHint = NoPageHint, //为关联页面提示信息
- BgColor = BgColor, //背景色
- });
- bsdb.SaveChanges();
- }
- AddSysLog("0", "AppBottomNavs", "Import");
- return "success";
- }
- #endregion
- #region 导出Excel
- /// <summary>
- /// 导出Excel
- /// </summary>
- /// <returns></returns>
- public JsonResult ExportExcel(AppBottomNavs data)
- {
- Dictionary<string, string> Fields = new Dictionary<string, string>();
- Dictionary<string, object> obj = new AdminContentOther(_accessor.HttpContext, PublicFunction.BsTables).IndexData("AppBottomNavs", Fields, "Id desc", "0", 1, 20000, "", "Title,SelectIcon,NormalIcon,SelectTextColor,NormalTextColor,PageName,NoPageHint,BgColor", false);
- List<Dictionary<string, object>> diclist = obj["data"] as List<Dictionary<string, object>>;
- Dictionary<string, object> result = new Dictionary<string, object>();
- result.Add("Status", "1");
- result.Add("Info", "Excel报表-" + DateTime.Now.ToString("yyyy-MM-ddTHH:mm:ss") + ".xlsx");
- result.Add("Obj", diclist);
- Dictionary<string, object> ReturnFields = new Dictionary<string, object>();
- ReturnFields.Add("Title", "标题");
- ReturnFields.Add("SelectIcon", "选中图标");
- ReturnFields.Add("NormalIcon", "未选中图标");
- ReturnFields.Add("SelectTextColor", "选中文字颜色");
- ReturnFields.Add("NormalTextColor", "未选中文字颜色");
- ReturnFields.Add("PageName", "关联页面文件");
- ReturnFields.Add("NoPageHint", "为关联页面提示信息");
- ReturnFields.Add("BgColor", "背景色");
- result.Add("Fields", ReturnFields);
- AddSysLog("0", "AppBottomNavs", "ExportExcel");
- return Json(result);
- }
- #endregion
- #region 同步数据到redis
- public string SyncAll(string Kind = "default")
- {
- List<AppBottomNavs> appnavs = bsdb.AppBottomNavs.Where(m => m.SeoKeyword == Kind && m.QueryCount == 0).OrderByDescending(m => m.Sort).ThenBy(m => m.Id).ToList();
- RedisDbconn.Instance.Clear("AppBottomNavs:" + Kind + "");
- // RedisDbconn.Instance.AddList("AppBottomNavs:" + Kind + "", appnavs.ToArray());
- appnavs = bsdb.AppBottomNavs.Where(m => m.SeoKeyword == Kind && m.QueryCount == 1).OrderByDescending(m => m.Sort).ThenBy(m => m.Id).ToList();
- RedisDbconn.Instance.Clear("AppBottomNavs:" + Kind + "test");
- // RedisDbconn.Instance.AddList("AppBottomNavs:" + Kind + "test", appnavs.ToArray());
- return "success";
- }
- #endregion
- #region 上传资源图片
- public JsonResult UploadPhoto([FromForm] IFormCollection rf)
- {
- IFormFile imgFile = rf.Files[0];
- SystemSet set = bsdb.SystemSet.FirstOrDefault() ?? new SystemSet();
- string path = MySystemLib.SystemPublicFuction.GetPicPath(imgFile, "skin/app/default/static/images/", function.ReadInstance("/WebRootPath.txt"), imgFile.FileName.Split('.')[0]);
- return Json(new AppResultJson() { Status = "1", Info = "", Data = path.Replace("wwwroot/", "") });
- }
- #endregion
- }
- }
|