代码无效引用清理,试压包资料界面看板修改

This commit is contained in:
2025-10-10 14:33:21 +08:00
parent 87fb529521
commit 55b798135c
933 changed files with 5897 additions and 7541 deletions
@@ -1,5 +1,4 @@
using BLL;
using FineUIPro.Web.BaseInfo;
using System;
using System.Collections.Generic;
using System.Data;
@@ -58,7 +57,7 @@ namespace FineUIPro.Web.DataShow
// cpara += " AND c.RegisterDate <=" + this.txtEndTime.Text;
//}
SqlParameter[] parameter = listStr.ToArray();
DataTable tb = SQLHelper.GetDataTableRunText(strSql, parameter);
Grid1.RecordCount = tb.Rows.Count;
@@ -163,7 +162,7 @@ namespace FineUIPro.Web.DataShow
int cout1 = 0;
if (projectId != null)
{
cout1= getcount(projectId.ToString(), "B");
cout1 = getcount(projectId.ToString(), "B");
}
return cout1;
}
@@ -190,7 +189,7 @@ namespace FineUIPro.Web.DataShow
/// <returns></returns>
private int getcount(string projectId, string level)
{
int count = 0;
int count = 0;
count = getDataLists.Where(x => x.ProjectId == projectId && x.ControlPoint.Contains(level)).Count();
return count;