This commit is contained in:
parent
447db93f9b
commit
83f1fdc8b9
|
|
@ -317,7 +317,7 @@
|
|||
<div class="tab" data-value="4">
|
||||
<div class="t-item active">施工分包商</div>
|
||||
<div class="spline"></div>
|
||||
<div class="t-item">问题类别</div>
|
||||
<div class="t-item">隐患类型</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="bw-item-content">
|
||||
|
|
@ -981,7 +981,7 @@ var basePath = '<%= ResolveUrl("~/") %>';
|
|||
data: four2.series[0].data
|
||||
}, {
|
||||
name: '全部',
|
||||
data: four2.series[0].data,
|
||||
data: four2.series[1].data,
|
||||
itemStyle: { normal: { color: 'rgba(174,75,37, 1)' } }
|
||||
}];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -219,17 +219,34 @@ namespace FineUIPro.Web
|
|||
Model.SingleSerie s2 = new Model.SingleSerie();
|
||||
List<double> listdata2 = new List<double>();
|
||||
businessColumn.title = "安全检查问题统计";
|
||||
var getTypes = HSSE_Hazard_HazardRegisterTypesService.GetHazardRegisterTypesList("1");
|
||||
|
||||
//隐患类型
|
||||
var getTypes = (from x in Funs.DB.Sys_Const
|
||||
where x.GroupId == "Hiddendangertype" && (x.ConstValue == "其他伤害" || x.ConstValue == "起重伤害")
|
||||
orderby x.SortIndex
|
||||
select x).ToList();
|
||||
foreach (var item in getTypes)
|
||||
{
|
||||
listCategories.Add(item.RegisterTypesName);
|
||||
var unitHazardRegisters = getHazardRegisterLists.Where(x => x.RegisterTypesId == item.RegisterTypesId);
|
||||
listCategories.Add(item.ConstText);
|
||||
var unitHazardRegisters = getHazardRegisterLists.Where(x => x.HiddenType == item.ConstValue);
|
||||
//var noW = unitHazardRegisters.Where(x => x.States != "3");
|
||||
//listdata.Add(unitHazardRegisters.Count() - noW.Count());
|
||||
listdata.Add(unitHazardRegisters.Where(x => x.States == "1").Count());
|
||||
listdata2.Add(unitHazardRegisters.Count());
|
||||
}
|
||||
|
||||
//问题类别
|
||||
//var getTypes = HSSE_Hazard_HazardRegisterTypesService.GetHazardRegisterTypesList("1");
|
||||
//foreach (var item in getTypes)
|
||||
//{
|
||||
// listCategories.Add(item.RegisterTypesName);
|
||||
// var unitHazardRegisters = getHazardRegisterLists.Where(x => x.RegisterTypesId == item.RegisterTypesId);
|
||||
// //var noW = unitHazardRegisters.Where(x => x.States != "3");
|
||||
// //listdata.Add(unitHazardRegisters.Count() - noW.Count());
|
||||
// listdata.Add(unitHazardRegisters.Where(x => x.States == "1").Count());
|
||||
// listdata2.Add(unitHazardRegisters.Count());
|
||||
//}
|
||||
|
||||
s.data = listdata;
|
||||
series.Add(s);
|
||||
s2.data = listdata2;
|
||||
|
|
|
|||
Loading…
Reference in New Issue