图标调整
This commit is contained in:
parent
8d5dfaa469
commit
2e68d7b7d2
|
@ -250,7 +250,6 @@ namespace FineUIPro.Web
|
|||
group by b.RegisterTypesName";
|
||||
DataTable tb = SQLHelper.GetDataTableRunText(strSql, null);
|
||||
|
||||
var getTypes = HSSE_Hazard_HazardRegisterTypesService.GetHazardRegisterTypesList("1");
|
||||
if (tb!=null && tb.Rows.Count>0)
|
||||
{
|
||||
foreach (DataRow item in tb.Rows)
|
||||
|
@ -261,8 +260,7 @@ namespace FineUIPro.Web
|
|||
listTAll.Add(int.Parse(item["allr"].ToString()));
|
||||
listTNo.Add(int.Parse(item["allr"].ToString()) - int.Parse(item["finish"].ToString()));
|
||||
}
|
||||
CheckTypeALLCount = JsonConvert.SerializeObject(listTAll);
|
||||
CheckTypeNoCount = JsonConvert.SerializeObject(listTNo);
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -271,8 +269,8 @@ namespace FineUIPro.Web
|
|||
listTNo.Add(0);
|
||||
}
|
||||
CheckType = JsonConvert.SerializeObject(listType);
|
||||
CheckTypeALLCount = JsonConvert.SerializeObject(CheckTypeALLCount);
|
||||
CheckTypeNoCount = JsonConvert.SerializeObject(CheckTypeNoCount);
|
||||
CheckTypeALLCount = JsonConvert.SerializeObject(listTAll);
|
||||
CheckTypeNoCount = JsonConvert.SerializeObject(listTNo);
|
||||
}
|
||||
#endregion
|
||||
|
||||
|
|
Loading…
Reference in New Issue