diff --git a/20220330_Vote/Ewide.Web.Entry/wwwroot/html/yjbvote2025/index.html b/20220330_Vote/Ewide.Web.Entry/wwwroot/html/yjbvote2025/index.html index eda39fb..cf58f41 100644 --- a/20220330_Vote/Ewide.Web.Entry/wwwroot/html/yjbvote2025/index.html +++ b/20220330_Vote/Ewide.Web.Entry/wwwroot/html/yjbvote2025/index.html @@ -25,7 +25,7 @@ maximum-scale=1.0, user-scalable=no" /> @@ -41,7 +41,7 @@ maximum-scale=1.0, user-scalable=no" /> diff --git a/20220330_Vote/Vote.Services/ApiController/Projects2025Service.cs b/20220330_Vote/Vote.Services/ApiController/Projects2025Service.cs index a413577..5b90cc0 100644 --- a/20220330_Vote/Vote.Services/ApiController/Projects2025Service.cs +++ b/20220330_Vote/Vote.Services/ApiController/Projects2025Service.cs @@ -62,7 +62,8 @@ namespace Vote.Services.ApiController [Microsoft.AspNetCore.Authorization.AllowAnonymous] public async Task List(ProjectsInput args) { - var typeList = new List { "房建工程", "市政工程", "轨道交通工程", "能源工程", "交通工程", "水利工程" }; + //var typeList = new List { "房建工程", "市政工程", "轨道交通工程", "能源工程", "交通工程", "水利工程" }; + var typeList = new List { "房建工程", "市政工程", "轨道交通工程", "能源、交通、水利工程" }; var data = await rep_Projects2025.DetachedEntities.Where(p => !p.IsDeleted) .Where(args.type != null, a => (int)a.type == args.type) .Where(args.is_no_inspection != null, a => (int)a.is_no_inspection == args.is_no_inspection)