|
|
|
|
@ -8,329 +8,332 @@ function search(){
|
|
|
|
|
datType: 'json',
|
|
|
|
|
success: function (data) {
|
|
|
|
|
if (data.code == 0) {
|
|
|
|
|
var data = data.data;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 当月
|
|
|
|
|
*/
|
|
|
|
|
//知情同意合格率
|
|
|
|
|
var informedconDocNosignRate = data.informedconDocNosignRate;
|
|
|
|
|
var informedconDocNosignRateHb = data.informedconDocNosignRateHb;
|
|
|
|
|
var informedconDocNosignRateYoy = data.informedconDocNosignRateYoy;
|
|
|
|
|
|
|
|
|
|
$("#quarter_infoConQualRate").html(informedconDocNosignRate + '%');
|
|
|
|
|
var informedconDocNosignHb = isEmpty(informedconDocNosignRateHb) ? 0 : (informedconDocNosignRate - informedconDocNosignRateHb) / informedconDocNosignRateHb * 100;
|
|
|
|
|
$("#quarter_bloodPurHbRate").html(informedconDocNosignHb + '%')
|
|
|
|
|
if(informedconDocNosignHb >= 0){
|
|
|
|
|
$("#quarter_infoConQualHbArrow").css("color", "#d92323")
|
|
|
|
|
$("#quarter_infoConQualHbArrow").html("上升")
|
|
|
|
|
var data = data.data
|
|
|
|
|
if(Object.keys(data).length != 0){
|
|
|
|
|
/**
|
|
|
|
|
* 当月
|
|
|
|
|
*/
|
|
|
|
|
//知情同意合格率
|
|
|
|
|
var informedconDocNosignRate = data.informedconDocNosignRate;
|
|
|
|
|
var informedconDocNosignRateHb = data.informedconDocNosignRateHb;
|
|
|
|
|
var informedconDocNosignRateYoy = data.informedconDocNosignRateYoy;
|
|
|
|
|
|
|
|
|
|
$("#quarter_infoConQualRate").html(informedconDocNosignRate + '%');
|
|
|
|
|
var informedconDocNosignHb = isEmpty(informedconDocNosignRateHb) ? 0 : (informedconDocNosignRate - informedconDocNosignRateHb) / informedconDocNosignRateHb * 100;
|
|
|
|
|
$("#quarter_bloodPurHbRate").html(informedconDocNosignHb + '%')
|
|
|
|
|
if(informedconDocNosignHb >= 0){
|
|
|
|
|
$("#quarter_infoConQualHbArrow").css("color", "#d92323")
|
|
|
|
|
$("#quarter_infoConQualHbArrow").html("上升")
|
|
|
|
|
}else{
|
|
|
|
|
$("#quarter_infoConQualHbArrow").css("color", "#10d710")
|
|
|
|
|
$("#quarter_infoConQualHbArrow").html("下降")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var informedconDocNosignTb = isEmpty(informedconDocNosignRateYoy) ? 0 : (informedconDocNosignRate - informedconDocNosignRateYoy) / informedconDocNosignRateYoy * 100;
|
|
|
|
|
if(informedconDocNosignTb >= 0){
|
|
|
|
|
$("#quarter_infoConQualTbArrow").css("color", "#d92323")
|
|
|
|
|
$("#quarter_infoConQualTbArrow").html("上升")
|
|
|
|
|
}else{
|
|
|
|
|
$("#quarter_infoConQualTbRate").css("color", "#10d710")
|
|
|
|
|
$("#quarter_infoConQualTbRate").html("下降")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//血净记录缺失率
|
|
|
|
|
var bloodFillIncompleteRate = data.bloodFillIncompleteRate;
|
|
|
|
|
var bloodFillIncompleteRateHb = data.bloodFillIncompleteRateHb;
|
|
|
|
|
var bloodFillIncompleteRateYoy = data.bloodFillIncompleteRateYoy;
|
|
|
|
|
|
|
|
|
|
$("#quarter_bloodPurRate").html(bloodFillIncompleteRate + '%');
|
|
|
|
|
var bloodFillIncompleteHb = isEmpty(bloodFillIncompleteRateHb) ? 0 : (bloodFillIncompleteRate - bloodFillIncompleteRateHb) / bloodFillIncompleteRateHb * 100;
|
|
|
|
|
$("#quarter_bloodPurHbRate").html(bloodFillIncompleteHb + '%')
|
|
|
|
|
if(bloodFillIncompleteHb >= 0){
|
|
|
|
|
$("#quarter_bloodPurHbArrow").css("color", "#d92323")
|
|
|
|
|
$("#quarter_bloodPurHbArrow").html("上升")
|
|
|
|
|
}else{
|
|
|
|
|
$("#quarter_bloodPurHbArrow").css("color", "#10d710")
|
|
|
|
|
$("#quarter_bloodPurHbArrow").html("下降")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var bloodFillIncompleteTb = isEmpty(bloodFillIncompleteRateYoy) ? 0 : (bloodFillIncompleteRate - bloodFillIncompleteRateYoy) / bloodFillIncompleteRateYoy * 100;
|
|
|
|
|
$("#quarter_bloodPurTbRate").html(bloodFillIncompleteTb + '%')
|
|
|
|
|
if(bloodFillIncompleteTb >= 0){
|
|
|
|
|
$("#quarter_bloodPurTbArrow").css("color", "#d92323")
|
|
|
|
|
$("#quarter_bloodPurTbArrow").html("上升")
|
|
|
|
|
}else{
|
|
|
|
|
$("#quarter_bloodPurTbArrow").css("color", "#10d710")
|
|
|
|
|
$("#quarter_bloodPurTbArrow").html("下降")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//健康教育缺失率
|
|
|
|
|
var healtheduFillIncompleteRate = data.healtheduFillIncompleteRate;
|
|
|
|
|
var healtheduFillIncompleteRateHb = data.healtheduFillIncompleteRateHb;
|
|
|
|
|
var healtheduFillIncompleteRateYoy = data.healtheduFillIncompleteRateYoy;
|
|
|
|
|
|
|
|
|
|
$("#quarter_educaDefectRate").html(healtheduFillIncompleteRate + '%');
|
|
|
|
|
var healtheduFillIncompleteHb = isEmpty(healtheduFillIncompleteRateHb) ? 0 : (healtheduFillIncompleteRate - healtheduFillIncompleteRateHb) / healtheduFillIncompleteRateHb * 100;
|
|
|
|
|
$("#quarter_educaDefectHbRate").html(healtheduFillIncompleteHb + '%')
|
|
|
|
|
if(healtheduFillIncompleteHb >= 0){
|
|
|
|
|
$("#quarter_educaDefectHbArrow").css("color", "#d92323")
|
|
|
|
|
$("#quarter_educaDefectHbArrow").html("上升")
|
|
|
|
|
}else{
|
|
|
|
|
$("#quarter_educaDefectHbArrow").css("color", "#10d710")
|
|
|
|
|
$("#quarter_educaDefectHbArrow").html("下降")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var healtheduFillIncompleteTb = isEmpty(healtheduFillIncompleteRateYoy) ? 0 : (healtheduFillIncompleteRate - healtheduFillIncompleteRateYoy) / healtheduFillIncompleteRateYoy * 100;
|
|
|
|
|
$("#quarter_educaDefectTbRate").html(healtheduFillIncompleteTb + '%')
|
|
|
|
|
if(healtheduFillIncompleteTb >= 0){
|
|
|
|
|
$("#quarter_educaDefectTbArrow").css("color", "#d92323")
|
|
|
|
|
$("#quarter_educaDefectTbArrow").html("上升")
|
|
|
|
|
}else{
|
|
|
|
|
$("#quarter_educaDefectTbArrow").css("color", "#10d710")
|
|
|
|
|
$("#quarter_educaDefectTbArrow").html("下降")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 当季
|
|
|
|
|
*/
|
|
|
|
|
//知情同意合格率
|
|
|
|
|
var informedconDocNosignRateQuarter = data.informedconDocNosignRateQuarter;
|
|
|
|
|
var informedconDocNosignRateQuarterHb = data.informedconDocNosignRateQuarterHb;
|
|
|
|
|
var informedconDocNosignRateQuarterYoy = data.informedconDocNosignRateQuarterYoy;
|
|
|
|
|
|
|
|
|
|
$("#month_infoConQualRate").html(informedconDocNosignRateQuarter + '%');
|
|
|
|
|
var informedconDocNosignQuarterHb = isEmpty(informedconDocNosignRateQuarterHb) ? 0 : (informedconDocNosignRateQuarter - informedconDocNosignRateQuarterHb) / informedconDocNosignRateQuarterHb * 100;
|
|
|
|
|
$("#month_infoConQualHbRate").html(informedconDocNosignQuarterHb + '%')
|
|
|
|
|
if(informedconDocNosignQuarterHb >= 0){
|
|
|
|
|
$("#month_infoConQualHbArrow").css("color", "#d92323")
|
|
|
|
|
$("#month_infoConQualHbArrow").html("上升")
|
|
|
|
|
}else{
|
|
|
|
|
$("#month_infoConQualHbArrow").css("color", "#10d710")
|
|
|
|
|
$("#month_infoConQualHbArrow").html("下降")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var informedconDocNosignQuarterTb = isEmpty(informedconDocNosignRateQuarterYoy) ? 0 : (informedconDocNosignRateQuarter - informedconDocNosignRateQuarterYoy) / informedconDocNosignRateQuarterYoy * 100;
|
|
|
|
|
$("#month_infoConQualTbRate").html(informedconDocNosignQuarterTb + '%')
|
|
|
|
|
if(informedconDocNosignQuarterTb >= 0){
|
|
|
|
|
$("#month_infoConQualTbArrow").css("color", "#d92323")
|
|
|
|
|
$("#month_infoConQualTbArrow").html("上升")
|
|
|
|
|
}else{
|
|
|
|
|
$("#month_infoConQualTbArrow").css("color", "#10d710")
|
|
|
|
|
$("#month_infoConQualTbArrow").html("下降")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//血净记录缺失率
|
|
|
|
|
var bloodFillIncompleteRateQuarter = data.bloodFillIncompleteRateQuarter;
|
|
|
|
|
var bloodFillIncompleteRateQuarterHb = data.bloodFillIncompleteRateQuarterHb;
|
|
|
|
|
var bloodFillIncompleteRateQuarterYoy = data.bloodFillIncompleteRateQuarterYoy;
|
|
|
|
|
|
|
|
|
|
$("#month_bloodPurQualRate").html(bloodFillIncompleteRateQuarter + '%');
|
|
|
|
|
var bloodFillIncompleteQuarterHb = isEmpty(bloodFillIncompleteRateQuarterHb) ? 0 : (bloodFillIncompleteRateQuarter - bloodFillIncompleteRateQuarterHb) / bloodFillIncompleteRateQuarterHb * 100;
|
|
|
|
|
$("#month_bloodPurQualHbRate").html(bloodFillIncompleteQuarterHb + '%')
|
|
|
|
|
if(bloodFillIncompleteQuarterHb >= 0){
|
|
|
|
|
$("#month_bloodPurQualHbArrow").css("color", "#d92323")
|
|
|
|
|
$("#month_bloodPurQualHbArrow").html("上升")
|
|
|
|
|
}else{
|
|
|
|
|
$("#month_bloodPurQualHbArrow").css("color", "#10d710")
|
|
|
|
|
$("#month_bloodPurQualHbArrow").html("下降")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var bloodFillIncompleteQuarterTb = isEmpty(bloodFillIncompleteRateQuarterYoy) ? 0 : (bloodFillIncompleteRateQuarter - bloodFillIncompleteRateQuarterYoy) / bloodFillIncompleteRateQuarterYoy * 100;
|
|
|
|
|
$("#month_bloodPurQualTbRate").html(bloodFillIncompleteQuarterTb + '%')
|
|
|
|
|
if(bloodFillIncompleteQuarterTb >= 0){
|
|
|
|
|
$("#month_bloodPurQualTbArrow").css("color", "#d92323")
|
|
|
|
|
$("#month_bloodPurQualTbArrow").html("上升")
|
|
|
|
|
}else{
|
|
|
|
|
$("#month_bloodPurQualTbArrow").css("color", "#10d710")
|
|
|
|
|
$("#month_bloodPurQualTbArrow").html("下降")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//健康教育缺失率
|
|
|
|
|
var healtheduFillIncompleteRateQuarter = data.healtheduFillIncompleteRateQuarter;
|
|
|
|
|
var healtheduFillIncompleteRateQuarterHb = data.healtheduFillIncompleteRateQuarterHb;
|
|
|
|
|
var healtheduFillIncompleteRateQuarterYoy = data.healtheduFillIncompleteRateQuarterYoy;
|
|
|
|
|
|
|
|
|
|
$("#month_educaDefectQualRate").html(healtheduFillIncompleteRateQuarter + '%');
|
|
|
|
|
var healtheduFillIncompleteQuarterHb = isEmpty(healtheduFillIncompleteRateQuarterHb) ? 0 : (healtheduFillIncompleteRateQuarter - healtheduFillIncompleteRateQuarterHb) / healtheduFillIncompleteRateQuarterHb * 100;
|
|
|
|
|
$("#month_educaDefectQualHbRate").html(healtheduFillIncompleteQuarterHb + '%')
|
|
|
|
|
if(healtheduFillIncompleteQuarterHb >= 0){
|
|
|
|
|
$("#month_educaDefectQualHbArrow").css("color", "#d92323")
|
|
|
|
|
$("#month_educaDefectQualHbArrow").html("上升")
|
|
|
|
|
}else{
|
|
|
|
|
$("#month_educaDefectQualHbArrow").css("color", "#10d710")
|
|
|
|
|
$("#month_educaDefectQualHbArrow").html("下降")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var healtheduFillIncompleteQuarterTb = isEmpty(healtheduFillIncompleteRateQuarterYoy) ? 0 : (healtheduFillIncompleteRateQuarter - healtheduFillIncompleteRateQuarterYoy) / healtheduFillIncompleteRateQuarterYoy * 100;
|
|
|
|
|
$("#month_educaDefectQualTbRate").html(healtheduFillIncompleteQuarterTb + '%')
|
|
|
|
|
if(healtheduFillIncompleteQuarterTb >= 0){
|
|
|
|
|
$("#month_educaDefectQualTbArrow").css("color", "#d92323")
|
|
|
|
|
$("#month_educaDefectQualTbArrow").html("上升")
|
|
|
|
|
}else{
|
|
|
|
|
$("#month_educaDefectQualTbArrow").css("color", "#10d710")
|
|
|
|
|
$("#month_educaDefectQualTbArrow").html("下降")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 当前半年
|
|
|
|
|
*/
|
|
|
|
|
//知情同意合格率
|
|
|
|
|
var informedconDocNosignRateHalfYear = data.informedconDocNosignRateHalfYear;
|
|
|
|
|
var informedconDocNosignRateHalfYearHb = data.informedconDocNosignRateHalfYearHb;
|
|
|
|
|
var informedconDocNosignRateHalfYearYoy = data.informedconDocNosignRateHalfYearYoy;
|
|
|
|
|
|
|
|
|
|
$("#halfyear_infoConQualRate").html(informedconDocNosignRateHalfYear + '%');
|
|
|
|
|
var informedconDocNosignHalfYearHb = isEmpty(informedconDocNosignRateHalfYearHb) ? 0 : (informedconDocNosignRateHalfYear - informedconDocNosignRateHalfYearHb) / informedconDocNosignRateHalfYearHb * 100;
|
|
|
|
|
$("#halfyear_infoConQualHbRate").html(informedconDocNosignHalfYearHb + '%')
|
|
|
|
|
if(informedconDocNosignHalfYearHb >= 0){
|
|
|
|
|
$("#halfyear_infoConQualHbArrow").css("color", "#d92323")
|
|
|
|
|
$("#halfyear_infoConQualHbArrow").html("上升")
|
|
|
|
|
}else{
|
|
|
|
|
$("#halfyear_infoConQualHbArrow").css("color", "#10d710")
|
|
|
|
|
$("#halfyear_infoConQualHbArrow").html("下降")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var informedconDocNosignHalfYearTb = isEmpty(informedconDocNosignRateHalfYearYoy) ? 0 : (informedconDocNosignRateHalfYear - informedconDocNosignRateHalfYearYoy) / informedconDocNosignRateHalfYearYoy * 100;
|
|
|
|
|
$("#halfyear_infoConQualTbRate").html(informedconDocNosignHalfYearTb + '%')
|
|
|
|
|
if(informedconDocNosignHalfYearTb >= 0){
|
|
|
|
|
$("#halfyear_infoConQualTbArrow").css("color", "#d92323")
|
|
|
|
|
$("#halfyear_infoConQualTbArrow").html("上升")
|
|
|
|
|
}else{
|
|
|
|
|
$("#halfyear_infoConQualTbArrow").css("color", "#10d710")
|
|
|
|
|
$("#halfyear_infoConQualTbArrow").html("下降")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//血净记录缺失率
|
|
|
|
|
var bloodFillIncompleteRateHalfYear = data.bloodFillIncompleteRateHalfYear;
|
|
|
|
|
var bloodFillIncompleteRateHalfYearHb = data.bloodFillIncompleteRateHalfYearHb;
|
|
|
|
|
var bloodFillIncompleteRateHalfYearYoy = data.bloodFillIncompleteRateHalfYearYoy;
|
|
|
|
|
|
|
|
|
|
$("#halfyear_bloodPurRate").html(bloodFillIncompleteRateHalfYear + '%');
|
|
|
|
|
var bloodFillIncompleteHalfYearHb = isEmpty(bloodFillIncompleteRateHalfYearHb) ? 0 : (bloodFillIncompleteRateHalfYear - bloodFillIncompleteRateHalfYearHb) / bloodFillIncompleteRateHalfYearHb * 100;
|
|
|
|
|
$("#halfyear_bloodPurHbRate").html(bloodFillIncompleteHalfYearHb + '%')
|
|
|
|
|
if(bloodFillIncompleteHalfYearHb >= 0){
|
|
|
|
|
$("#halfyear_bloodPurHbArrow").css("color", "#d92323")
|
|
|
|
|
$("#halfyear_bloodPurHbArrow").html("上升")
|
|
|
|
|
}else{
|
|
|
|
|
$("#halfyear_bloodPurHbArrow").css("color", "#10d710")
|
|
|
|
|
$("#halfyear_bloodPurHbArrow").html("下降")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var bloodFillIncompleteHalfYearTb = isEmpty(bloodFillIncompleteRateHalfYearYoy) ? 0 : (bloodFillIncompleteRateHalfYear - bloodFillIncompleteRateHalfYearYoy) / bloodFillIncompleteRateHalfYearYoy * 100;
|
|
|
|
|
$("#halfyear_bloodPurTbRate").html(bloodFillIncompleteHalfYearTb + '%')
|
|
|
|
|
if(bloodFillIncompleteHalfYearTb >= 0){
|
|
|
|
|
$("#halfyear_bloodPurTbArrow").css("color", "#d92323")
|
|
|
|
|
$("#halfyear_bloodPurTbArrow").html("上升")
|
|
|
|
|
}else{
|
|
|
|
|
$("#halfyear_bloodPurTbArrow").css("color", "#10d710")
|
|
|
|
|
$("#halfyear_bloodPurTbArrow").html("下降")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//健康教育缺失率
|
|
|
|
|
var healtheduFillIncompleteRateHalfYear = data.healtheduFillIncompleteRateHalfYear;
|
|
|
|
|
var healtheduFillIncompleteRateHalfYearHb = data.healtheduFillIncompleteRateHalfYearHb;
|
|
|
|
|
var healtheduFillIncompleteRateHalfYearYoy = data.healtheduFillIncompleteRateHalfYearYoy;
|
|
|
|
|
|
|
|
|
|
$("#halfyear_educaDefectRate").html(healtheduFillIncompleteRateHalfYear + '%');
|
|
|
|
|
var healtheduFillIncompleteHalfYearHb = isEmpty(healtheduFillIncompleteRateHalfYearHb) ? 0 : (healtheduFillIncompleteRateHalfYear - healtheduFillIncompleteRateHalfYearHb) / healtheduFillIncompleteRateHalfYearHb * 100;
|
|
|
|
|
$("#halfyear_educaDefectHbRate").html(healtheduFillIncompleteHalfYearHb + '%')
|
|
|
|
|
if(healtheduFillIncompleteHalfYearHb >= 0){
|
|
|
|
|
$("#halfyear_educaDefectHbArrow").css("color", "#d92323")
|
|
|
|
|
$("#halfyear_educaDefectHbArrow").html("上升")
|
|
|
|
|
}else{
|
|
|
|
|
$("#halfyear_educaDefectHbArrow").css("color", "#10d710")
|
|
|
|
|
$("#halfyear_educaDefectHbArrow").html("下降")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var healtheduFillIncompleteHalfYearTb = isEmpty(healtheduFillIncompleteRateHalfYearYoy) ? 0 : (healtheduFillIncompleteRateHalfYear - healtheduFillIncompleteRateHalfYearYoy) / healtheduFillIncompleteRateHalfYearYoy * 100;
|
|
|
|
|
$("#halfyear_educaDefectTbRate").html(healtheduFillIncompleteHalfYearTb + '%')
|
|
|
|
|
if(healtheduFillIncompleteHalfYearTb >= 0){
|
|
|
|
|
$("#halfyear_educaDefectTbArrow").css("color", "#d92323")
|
|
|
|
|
$("#halfyear_educaDefectTbArrow").html("上升")
|
|
|
|
|
}else{
|
|
|
|
|
$("#halfyear_educaDefectTbArrow").css("color", "#10d710")
|
|
|
|
|
$("#halfyear_educaDefectTbArrow").html("下降")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 当前一年
|
|
|
|
|
*/
|
|
|
|
|
//知情同意合格率
|
|
|
|
|
var informedconDocNosignRateYear = data.informedconDocNosignRateYear;
|
|
|
|
|
var informedconDocNosignRateYearHb = data.informedconDocNosignRateYearHb;
|
|
|
|
|
var informedconDocNosignRateYearYoy = data.informedconDocNosignRateYearYoy;
|
|
|
|
|
|
|
|
|
|
$("#year_infoConQualRate").html(informedconDocNosignRateYear + '%');
|
|
|
|
|
var informedconDocNosignYearHb = isEmpty(informedconDocNosignRateYearHb) ? 0 : (informedconDocNosignRateYear - informedconDocNosignRateYearHb) / informedconDocNosignRateYearHb * 100;
|
|
|
|
|
$("#year_infoConQualHbRate").html(informedconDocNosignYearHb + '%')
|
|
|
|
|
if(informedconDocNosignYearHb >= 0){
|
|
|
|
|
$("#year_infoConQualHbArrow").css("color", "#d92323")
|
|
|
|
|
$("#year_infoConQualHbArrow").html("上升")
|
|
|
|
|
}else{
|
|
|
|
|
$("#year_infoConQualHbArrow").css("color", "#10d710")
|
|
|
|
|
$("#year_infoConQualHbArrow").html("下降")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var informedconDocNosignYearTb = isEmpty(informedconDocNosignRateYearYoy) ? 0 : (informedconDocNosignRateYear - informedconDocNosignRateYearYoy) / informedconDocNosignRateYearYoy * 100;
|
|
|
|
|
$("#year_infoConQualTbRate").html(informedconDocNosignYearTb + '%')
|
|
|
|
|
if(informedconDocNosignYearTb >= 0){
|
|
|
|
|
$("#year_infoConQualTbArrow").css("color", "#d92323")
|
|
|
|
|
$("#year_infoConQualTbArrow").html("上升")
|
|
|
|
|
}else{
|
|
|
|
|
$("#year_infoConQualTbArrow").css("color", "#10d710")
|
|
|
|
|
$("#year_infoConQualTbArrow").html("下降")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//血净记录缺失率
|
|
|
|
|
var bloodFillIncompleteRateYear = data.bloodFillIncompleteRateYear;
|
|
|
|
|
var bloodFillIncompleteRateYearHb = data.bloodFillIncompleteRateYearHb;
|
|
|
|
|
var bloodFillIncompleteRateYearYoy = data.bloodFillIncompleteRateYearYoy;
|
|
|
|
|
|
|
|
|
|
$("#year_bloodPurRate").html(bloodFillIncompleteRateYear + '%');
|
|
|
|
|
var bloodFillIncompleteYearHb = isEmpty(bloodFillIncompleteRateYearHb) ? 0 : (bloodFillIncompleteRateYear - bloodFillIncompleteRateYearHb) / bloodFillIncompleteRateYearHb * 100;
|
|
|
|
|
$("#year_bloodPurHbRate").html(bloodFillIncompleteYearHb + '%')
|
|
|
|
|
if(bloodFillIncompleteYearHb >= 0){
|
|
|
|
|
$("#year_bloodPurHbArrow").css("color", "#d92323")
|
|
|
|
|
$("#year_bloodPurHbArrow").html("上升")
|
|
|
|
|
}else{
|
|
|
|
|
$("#year_bloodPurHbArrow").css("color", "#10d710")
|
|
|
|
|
$("#year_bloodPurHbArrow").html("下降")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var bloodFillIncompleteYearTb = isEmpty(bloodFillIncompleteRateYearYoy) ? 0 : (bloodFillIncompleteRateYear - bloodFillIncompleteRateYearYoy) / bloodFillIncompleteRateYearYoy * 100;
|
|
|
|
|
$("#year_bloodPurTbRate").html(bloodFillIncompleteYearTb + '%')
|
|
|
|
|
if(bloodFillIncompleteYearTb >= 0){
|
|
|
|
|
$("#year_bloodPurTbArrow").css("color", "#d92323")
|
|
|
|
|
$("#year_bloodPurTbArrow").html("上升")
|
|
|
|
|
}else{
|
|
|
|
|
$("#year_bloodPurTbArrow").css("color", "#10d710")
|
|
|
|
|
$("#year_bloodPurTbArrow").html("下降")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//健康教育缺失率
|
|
|
|
|
var healtheduFillIncompleteRateYear = data.healtheduFillIncompleteRateYear;
|
|
|
|
|
var healtheduFillIncompleteRateYearHb = data.healtheduFillIncompleteRateYearHb;
|
|
|
|
|
var healtheduFillIncompleteRateYearYoy = data.healtheduFillIncompleteRateYearYoy;
|
|
|
|
|
|
|
|
|
|
$("#year_educaDefectRate").html(healtheduFillIncompleteRateYear + '%');
|
|
|
|
|
var healtheduFillIncompleteYearHb = isEmpty(healtheduFillIncompleteRateYearHb) ? 0 : (healtheduFillIncompleteRateYear - healtheduFillIncompleteRateYearHb) / healtheduFillIncompleteRateYearHb * 100;
|
|
|
|
|
$("#year_educaDefectHbRate").html(healtheduFillIncompleteYearHb + '%')
|
|
|
|
|
if(healtheduFillIncompleteYearHb >= 0){
|
|
|
|
|
$("#year_educaDefectHbArrow").css("color", "#d92323")
|
|
|
|
|
$("#year_educaDefectHbArrow").html("上升")
|
|
|
|
|
}else{
|
|
|
|
|
$("#year_educaDefectHbArrow").css("color", "#10d710")
|
|
|
|
|
$("#year_educaDefectHbArrow").html("下降")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var healtheduFillIncompleteYearTb = isEmpty(healtheduFillIncompleteRateYearYoy) ? 0 : (healtheduFillIncompleteRateYear - healtheduFillIncompleteRateYearYoy) / healtheduFillIncompleteRateYearYoy * 100;
|
|
|
|
|
$("#year_educaDefectTbRate").html(healtheduFillIncompleteYearTb + '%')
|
|
|
|
|
if(healtheduFillIncompleteYearTb >= 0){
|
|
|
|
|
$("#year_educaDefectTbArrow").css("color", "#d92323")
|
|
|
|
|
$("#year_educaDefectTbArrow").html("上升")
|
|
|
|
|
}else{
|
|
|
|
|
$("#year_educaDefectTbArrow").css("color", "#10d710")
|
|
|
|
|
$("#year_educaDefectTbArrow").html("下降")
|
|
|
|
|
}
|
|
|
|
|
}else{
|
|
|
|
|
$("#quarter_infoConQualHbArrow").css("color", "#10d710")
|
|
|
|
|
$("#quarter_infoConQualHbArrow").html("下降")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var informedconDocNosignTb = isEmpty(informedconDocNosignRateYoy) ? 0 : (informedconDocNosignRate - informedconDocNosignRateYoy) / informedconDocNosignRateYoy * 100;
|
|
|
|
|
if(informedconDocNosignTb >= 0){
|
|
|
|
|
$("#quarter_infoConQualTbArrow").css("color", "#d92323")
|
|
|
|
|
$("#quarter_infoConQualTbArrow").html("上升")
|
|
|
|
|
}else{
|
|
|
|
|
$("#quarter_infoConQualTbRate").css("color", "#10d710")
|
|
|
|
|
$("#quarter_infoConQualTbRate").html("下降")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//血净记录缺失率
|
|
|
|
|
var bloodFillIncompleteRate = data.bloodFillIncompleteRate;
|
|
|
|
|
var bloodFillIncompleteRateHb = data.bloodFillIncompleteRateHb;
|
|
|
|
|
var bloodFillIncompleteRateYoy = data.bloodFillIncompleteRateYoy;
|
|
|
|
|
|
|
|
|
|
$("#quarter_bloodPurRate").html(bloodFillIncompleteRate + '%');
|
|
|
|
|
var bloodFillIncompleteHb = isEmpty(bloodFillIncompleteRateHb) ? 0 : (bloodFillIncompleteRate - bloodFillIncompleteRateHb) / bloodFillIncompleteRateHb * 100;
|
|
|
|
|
$("#quarter_bloodPurHbRate").html(bloodFillIncompleteHb + '%')
|
|
|
|
|
if(bloodFillIncompleteHb >= 0){
|
|
|
|
|
$("#quarter_bloodPurHbArrow").css("color", "#d92323")
|
|
|
|
|
$("#quarter_bloodPurHbArrow").html("上升")
|
|
|
|
|
}else{
|
|
|
|
|
$("#quarter_bloodPurHbArrow").css("color", "#10d710")
|
|
|
|
|
$("#quarter_bloodPurHbArrow").html("下降")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var bloodFillIncompleteTb = isEmpty(bloodFillIncompleteRateYoy) ? 0 : (bloodFillIncompleteRate - bloodFillIncompleteRateYoy) / bloodFillIncompleteRateYoy * 100;
|
|
|
|
|
$("#quarter_bloodPurTbRate").html(bloodFillIncompleteTb + '%')
|
|
|
|
|
if(bloodFillIncompleteTb >= 0){
|
|
|
|
|
$("#quarter_bloodPurTbArrow").css("color", "#d92323")
|
|
|
|
|
$("#quarter_bloodPurTbArrow").html("上升")
|
|
|
|
|
}else{
|
|
|
|
|
$("#quarter_bloodPurTbArrow").css("color", "#10d710")
|
|
|
|
|
$("#quarter_bloodPurTbArrow").html("下降")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//健康教育缺失率
|
|
|
|
|
var healtheduFillIncompleteRate = data.healtheduFillIncompleteRate;
|
|
|
|
|
var healtheduFillIncompleteRateHb = data.healtheduFillIncompleteRateHb;
|
|
|
|
|
var healtheduFillIncompleteRateYoy = data.healtheduFillIncompleteRateYoy;
|
|
|
|
|
|
|
|
|
|
$("#quarter_educaDefectRate").html(healtheduFillIncompleteRate + '%');
|
|
|
|
|
var healtheduFillIncompleteHb = isEmpty(healtheduFillIncompleteRateHb) ? 0 : (healtheduFillIncompleteRate - healtheduFillIncompleteRateHb) / healtheduFillIncompleteRateHb * 100;
|
|
|
|
|
$("#quarter_educaDefectHbRate").html(healtheduFillIncompleteHb + '%')
|
|
|
|
|
if(healtheduFillIncompleteHb >= 0){
|
|
|
|
|
$("#quarter_educaDefectHbArrow").css("color", "#d92323")
|
|
|
|
|
$("#quarter_educaDefectHbArrow").html("上升")
|
|
|
|
|
}else{
|
|
|
|
|
$("#quarter_educaDefectHbArrow").css("color", "#10d710")
|
|
|
|
|
$("#quarter_educaDefectHbArrow").html("下降")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var healtheduFillIncompleteTb = isEmpty(healtheduFillIncompleteRateYoy) ? 0 : (healtheduFillIncompleteRate - healtheduFillIncompleteRateYoy) / healtheduFillIncompleteRateYoy * 100;
|
|
|
|
|
$("#quarter_educaDefectTbRate").html(healtheduFillIncompleteTb + '%')
|
|
|
|
|
if(healtheduFillIncompleteTb >= 0){
|
|
|
|
|
$("#quarter_educaDefectTbArrow").css("color", "#d92323")
|
|
|
|
|
$("#quarter_educaDefectTbArrow").html("上升")
|
|
|
|
|
}else{
|
|
|
|
|
$("#quarter_educaDefectTbArrow").css("color", "#10d710")
|
|
|
|
|
$("#quarter_educaDefectTbArrow").html("下降")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 当季
|
|
|
|
|
*/
|
|
|
|
|
//知情同意合格率
|
|
|
|
|
var informedconDocNosignRateQuarter = data.informedconDocNosignRateQuarter;
|
|
|
|
|
var informedconDocNosignRateQuarterHb = data.informedconDocNosignRateQuarterHb;
|
|
|
|
|
var informedconDocNosignRateQuarterYoy = data.informedconDocNosignRateQuarterYoy;
|
|
|
|
|
|
|
|
|
|
$("#month_infoConQualRate").html(informedconDocNosignRateQuarter + '%');
|
|
|
|
|
var informedconDocNosignQuarterHb = isEmpty(informedconDocNosignRateQuarterHb) ? 0 : (informedconDocNosignRateQuarter - informedconDocNosignRateQuarterHb) / informedconDocNosignRateQuarterHb * 100;
|
|
|
|
|
$("#month_infoConQualHbRate").html(informedconDocNosignQuarterHb + '%')
|
|
|
|
|
if(informedconDocNosignQuarterHb >= 0){
|
|
|
|
|
$("#month_infoConQualHbArrow").css("color", "#d92323")
|
|
|
|
|
$("#month_infoConQualHbArrow").html("上升")
|
|
|
|
|
}else{
|
|
|
|
|
$("#month_infoConQualHbArrow").css("color", "#10d710")
|
|
|
|
|
$("#month_infoConQualHbArrow").html("下降")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var informedconDocNosignQuarterTb = isEmpty(informedconDocNosignRateQuarterYoy) ? 0 : (informedconDocNosignRateQuarter - informedconDocNosignRateQuarterYoy) / informedconDocNosignRateQuarterYoy * 100;
|
|
|
|
|
$("#month_infoConQualTbRate").html(informedconDocNosignQuarterTb + '%')
|
|
|
|
|
if(informedconDocNosignQuarterTb >= 0){
|
|
|
|
|
$("#month_infoConQualTbArrow").css("color", "#d92323")
|
|
|
|
|
$("#month_infoConQualTbArrow").html("上升")
|
|
|
|
|
}else{
|
|
|
|
|
$("#month_infoConQualTbArrow").css("color", "#10d710")
|
|
|
|
|
$("#month_infoConQualTbArrow").html("下降")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//血净记录缺失率
|
|
|
|
|
var bloodFillIncompleteRateQuarter = data.bloodFillIncompleteRateQuarter;
|
|
|
|
|
var bloodFillIncompleteRateQuarterHb = data.bloodFillIncompleteRateQuarterHb;
|
|
|
|
|
var bloodFillIncompleteRateQuarterYoy = data.bloodFillIncompleteRateQuarterYoy;
|
|
|
|
|
|
|
|
|
|
$("#month_bloodPurQualRate").html(bloodFillIncompleteRateQuarter + '%');
|
|
|
|
|
var bloodFillIncompleteQuarterHb = isEmpty(bloodFillIncompleteRateQuarterHb) ? 0 : (bloodFillIncompleteRateQuarter - bloodFillIncompleteRateQuarterHb) / bloodFillIncompleteRateQuarterHb * 100;
|
|
|
|
|
$("#month_bloodPurQualHbRate").html(bloodFillIncompleteQuarterHb + '%')
|
|
|
|
|
if(bloodFillIncompleteQuarterHb >= 0){
|
|
|
|
|
$("#month_bloodPurQualHbArrow").css("color", "#d92323")
|
|
|
|
|
$("#month_bloodPurQualHbArrow").html("上升")
|
|
|
|
|
}else{
|
|
|
|
|
$("#month_bloodPurQualHbArrow").css("color", "#10d710")
|
|
|
|
|
$("#month_bloodPurQualHbArrow").html("下降")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var bloodFillIncompleteQuarterTb = isEmpty(bloodFillIncompleteRateQuarterYoy) ? 0 : (bloodFillIncompleteRateQuarter - bloodFillIncompleteRateQuarterYoy) / bloodFillIncompleteRateQuarterYoy * 100;
|
|
|
|
|
$("#month_bloodPurQualTbRate").html(bloodFillIncompleteQuarterTb + '%')
|
|
|
|
|
if(bloodFillIncompleteQuarterTb >= 0){
|
|
|
|
|
$("#month_bloodPurQualTbArrow").css("color", "#d92323")
|
|
|
|
|
$("#month_bloodPurQualTbArrow").html("上升")
|
|
|
|
|
}else{
|
|
|
|
|
$("#month_bloodPurQualTbArrow").css("color", "#10d710")
|
|
|
|
|
$("#month_bloodPurQualTbArrow").html("下降")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//健康教育缺失率
|
|
|
|
|
var healtheduFillIncompleteRateQuarter = data.healtheduFillIncompleteRateQuarter;
|
|
|
|
|
var healtheduFillIncompleteRateQuarterHb = data.healtheduFillIncompleteRateQuarterHb;
|
|
|
|
|
var healtheduFillIncompleteRateQuarterYoy = data.healtheduFillIncompleteRateQuarterYoy;
|
|
|
|
|
|
|
|
|
|
$("#month_educaDefectQualRate").html(healtheduFillIncompleteRateQuarter + '%');
|
|
|
|
|
var healtheduFillIncompleteQuarterHb = isEmpty(healtheduFillIncompleteRateQuarterHb) ? 0 : (healtheduFillIncompleteRateQuarter - healtheduFillIncompleteRateQuarterHb) / healtheduFillIncompleteRateQuarterHb * 100;
|
|
|
|
|
$("#month_educaDefectQualHbRate").html(healtheduFillIncompleteQuarterHb + '%')
|
|
|
|
|
if(healtheduFillIncompleteQuarterHb >= 0){
|
|
|
|
|
$("#month_educaDefectQualHbArrow").css("color", "#d92323")
|
|
|
|
|
$("#month_educaDefectQualHbArrow").html("上升")
|
|
|
|
|
}else{
|
|
|
|
|
$("#month_educaDefectQualHbArrow").css("color", "#10d710")
|
|
|
|
|
$("#month_educaDefectQualHbArrow").html("下降")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var healtheduFillIncompleteQuarterTb = isEmpty(healtheduFillIncompleteRateQuarterYoy) ? 0 : (healtheduFillIncompleteRateQuarter - healtheduFillIncompleteRateQuarterYoy) / healtheduFillIncompleteRateQuarterYoy * 100;
|
|
|
|
|
$("#month_educaDefectQualTbRate").html(healtheduFillIncompleteQuarterTb + '%')
|
|
|
|
|
if(healtheduFillIncompleteQuarterTb >= 0){
|
|
|
|
|
$("#month_educaDefectQualTbArrow").css("color", "#d92323")
|
|
|
|
|
$("#month_educaDefectQualTbArrow").html("上升")
|
|
|
|
|
}else{
|
|
|
|
|
$("#month_educaDefectQualTbArrow").css("color", "#10d710")
|
|
|
|
|
$("#month_educaDefectQualTbArrow").html("下降")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 当前半年
|
|
|
|
|
*/
|
|
|
|
|
//知情同意合格率
|
|
|
|
|
var informedconDocNosignRateHalfYear = data.informedconDocNosignRateHalfYear;
|
|
|
|
|
var informedconDocNosignRateHalfYearHb = data.informedconDocNosignRateHalfYearHb;
|
|
|
|
|
var informedconDocNosignRateHalfYearYoy = data.informedconDocNosignRateHalfYearYoy;
|
|
|
|
|
|
|
|
|
|
$("#halfyear_infoConQualRate").html(informedconDocNosignRateHalfYear + '%');
|
|
|
|
|
var informedconDocNosignHalfYearHb = isEmpty(informedconDocNosignRateHalfYearHb) ? 0 : (informedconDocNosignRateHalfYear - informedconDocNosignRateHalfYearHb) / informedconDocNosignRateHalfYearHb * 100;
|
|
|
|
|
$("#halfyear_infoConQualHbRate").html(informedconDocNosignHalfYearHb + '%')
|
|
|
|
|
if(informedconDocNosignHalfYearHb >= 0){
|
|
|
|
|
$("#halfyear_infoConQualHbArrow").css("color", "#d92323")
|
|
|
|
|
$("#halfyear_infoConQualHbArrow").html("上升")
|
|
|
|
|
}else{
|
|
|
|
|
$("#halfyear_infoConQualHbArrow").css("color", "#10d710")
|
|
|
|
|
$("#halfyear_infoConQualHbArrow").html("下降")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var informedconDocNosignHalfYearTb = isEmpty(informedconDocNosignRateHalfYearYoy) ? 0 : (informedconDocNosignRateHalfYear - informedconDocNosignRateHalfYearYoy) / informedconDocNosignRateHalfYearYoy * 100;
|
|
|
|
|
$("#halfyear_infoConQualTbRate").html(informedconDocNosignHalfYearTb + '%')
|
|
|
|
|
if(informedconDocNosignHalfYearTb >= 0){
|
|
|
|
|
$("#halfyear_infoConQualTbArrow").css("color", "#d92323")
|
|
|
|
|
$("#halfyear_infoConQualTbArrow").html("上升")
|
|
|
|
|
}else{
|
|
|
|
|
$("#halfyear_infoConQualTbArrow").css("color", "#10d710")
|
|
|
|
|
$("#halfyear_infoConQualTbArrow").html("下降")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//血净记录缺失率
|
|
|
|
|
var bloodFillIncompleteRateHalfYear = data.bloodFillIncompleteRateHalfYear;
|
|
|
|
|
var bloodFillIncompleteRateHalfYearHb = data.bloodFillIncompleteRateHalfYearHb;
|
|
|
|
|
var bloodFillIncompleteRateHalfYearYoy = data.bloodFillIncompleteRateHalfYearYoy;
|
|
|
|
|
|
|
|
|
|
$("#halfyear_bloodPurRate").html(bloodFillIncompleteRateHalfYear + '%');
|
|
|
|
|
var bloodFillIncompleteHalfYearHb = isEmpty(bloodFillIncompleteRateHalfYearHb) ? 0 : (bloodFillIncompleteRateHalfYear - bloodFillIncompleteRateHalfYearHb) / bloodFillIncompleteRateHalfYearHb * 100;
|
|
|
|
|
$("#halfyear_bloodPurHbRate").html(bloodFillIncompleteHalfYearHb + '%')
|
|
|
|
|
if(bloodFillIncompleteHalfYearHb >= 0){
|
|
|
|
|
$("#halfyear_bloodPurHbArrow").css("color", "#d92323")
|
|
|
|
|
$("#halfyear_bloodPurHbArrow").html("上升")
|
|
|
|
|
}else{
|
|
|
|
|
$("#halfyear_bloodPurHbArrow").css("color", "#10d710")
|
|
|
|
|
$("#halfyear_bloodPurHbArrow").html("下降")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var bloodFillIncompleteHalfYearTb = isEmpty(bloodFillIncompleteRateHalfYearYoy) ? 0 : (bloodFillIncompleteRateHalfYear - bloodFillIncompleteRateHalfYearYoy) / bloodFillIncompleteRateHalfYearYoy * 100;
|
|
|
|
|
$("#halfyear_bloodPurTbRate").html(bloodFillIncompleteHalfYearTb + '%')
|
|
|
|
|
if(bloodFillIncompleteHalfYearTb >= 0){
|
|
|
|
|
$("#halfyear_bloodPurTbArrow").css("color", "#d92323")
|
|
|
|
|
$("#halfyear_bloodPurTbArrow").html("上升")
|
|
|
|
|
}else{
|
|
|
|
|
$("#halfyear_bloodPurTbArrow").css("color", "#10d710")
|
|
|
|
|
$("#halfyear_bloodPurTbArrow").html("下降")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//健康教育缺失率
|
|
|
|
|
var healtheduFillIncompleteRateHalfYear = data.healtheduFillIncompleteRateHalfYear;
|
|
|
|
|
var healtheduFillIncompleteRateHalfYearHb = data.healtheduFillIncompleteRateHalfYearHb;
|
|
|
|
|
var healtheduFillIncompleteRateHalfYearYoy = data.healtheduFillIncompleteRateHalfYearYoy;
|
|
|
|
|
|
|
|
|
|
$("#halfyear_educaDefectRate").html(healtheduFillIncompleteRateHalfYear + '%');
|
|
|
|
|
var healtheduFillIncompleteHalfYearHb = isEmpty(healtheduFillIncompleteRateHalfYearHb) ? 0 : (healtheduFillIncompleteRateHalfYear - healtheduFillIncompleteRateHalfYearHb) / healtheduFillIncompleteRateHalfYearHb * 100;
|
|
|
|
|
$("#halfyear_educaDefectHbRate").html(healtheduFillIncompleteHalfYearHb + '%')
|
|
|
|
|
if(healtheduFillIncompleteHalfYearHb >= 0){
|
|
|
|
|
$("#halfyear_educaDefectHbArrow").css("color", "#d92323")
|
|
|
|
|
$("#halfyear_educaDefectHbArrow").html("上升")
|
|
|
|
|
}else{
|
|
|
|
|
$("#halfyear_educaDefectHbArrow").css("color", "#10d710")
|
|
|
|
|
$("#halfyear_educaDefectHbArrow").html("下降")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var healtheduFillIncompleteHalfYearTb = isEmpty(healtheduFillIncompleteRateHalfYearYoy) ? 0 : (healtheduFillIncompleteRateHalfYear - healtheduFillIncompleteRateHalfYearYoy) / healtheduFillIncompleteRateHalfYearYoy * 100;
|
|
|
|
|
$("#halfyear_educaDefectTbRate").html(healtheduFillIncompleteHalfYearTb + '%')
|
|
|
|
|
if(healtheduFillIncompleteHalfYearTb >= 0){
|
|
|
|
|
$("#halfyear_educaDefectTbArrow").css("color", "#d92323")
|
|
|
|
|
$("#halfyear_educaDefectTbArrow").html("上升")
|
|
|
|
|
}else{
|
|
|
|
|
$("#halfyear_educaDefectTbArrow").css("color", "#10d710")
|
|
|
|
|
$("#halfyear_educaDefectTbArrow").html("下降")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 当前一年
|
|
|
|
|
*/
|
|
|
|
|
//知情同意合格率
|
|
|
|
|
var informedconDocNosignRateYear = data.informedconDocNosignRateYear;
|
|
|
|
|
var informedconDocNosignRateYearHb = data.informedconDocNosignRateYearHb;
|
|
|
|
|
var informedconDocNosignRateYearYoy = data.informedconDocNosignRateYearYoy;
|
|
|
|
|
|
|
|
|
|
$("#year_infoConQualRate").html(informedconDocNosignRateYear + '%');
|
|
|
|
|
var informedconDocNosignYearHb = isEmpty(informedconDocNosignRateYearHb) ? 0 : (informedconDocNosignRateYear - informedconDocNosignRateYearHb) / informedconDocNosignRateYearHb * 100;
|
|
|
|
|
$("#year_infoConQualHbRate").html(informedconDocNosignYearHb + '%')
|
|
|
|
|
if(informedconDocNosignYearHb >= 0){
|
|
|
|
|
$("#year_infoConQualHbArrow").css("color", "#d92323")
|
|
|
|
|
$("#year_infoConQualHbArrow").html("上升")
|
|
|
|
|
}else{
|
|
|
|
|
$("#year_infoConQualHbArrow").css("color", "#10d710")
|
|
|
|
|
$("#year_infoConQualHbArrow").html("下降")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var informedconDocNosignYearTb = isEmpty(informedconDocNosignRateYearYoy) ? 0 : (informedconDocNosignRateYear - informedconDocNosignRateYearYoy) / informedconDocNosignRateYearYoy * 100;
|
|
|
|
|
$("#year_infoConQualTbRate").html(informedconDocNosignYearTb + '%')
|
|
|
|
|
if(informedconDocNosignYearTb >= 0){
|
|
|
|
|
$("#year_infoConQualTbArrow").css("color", "#d92323")
|
|
|
|
|
$("#year_infoConQualTbArrow").html("上升")
|
|
|
|
|
}else{
|
|
|
|
|
$("#year_infoConQualTbArrow").css("color", "#10d710")
|
|
|
|
|
$("#year_infoConQualTbArrow").html("下降")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//血净记录缺失率
|
|
|
|
|
var bloodFillIncompleteRateYear = data.bloodFillIncompleteRateYear;
|
|
|
|
|
var bloodFillIncompleteRateYearHb = data.bloodFillIncompleteRateYearHb;
|
|
|
|
|
var bloodFillIncompleteRateYearYoy = data.bloodFillIncompleteRateYearYoy;
|
|
|
|
|
|
|
|
|
|
$("#year_bloodPurRate").html(bloodFillIncompleteRateYear + '%');
|
|
|
|
|
var bloodFillIncompleteYearHb = isEmpty(bloodFillIncompleteRateYearHb) ? 0 : (bloodFillIncompleteRateYear - bloodFillIncompleteRateYearHb) / bloodFillIncompleteRateYearHb * 100;
|
|
|
|
|
$("#year_bloodPurHbRate").html(bloodFillIncompleteYearHb + '%')
|
|
|
|
|
if(bloodFillIncompleteYearHb >= 0){
|
|
|
|
|
$("#year_bloodPurHbArrow").css("color", "#d92323")
|
|
|
|
|
$("#year_bloodPurHbArrow").html("上升")
|
|
|
|
|
}else{
|
|
|
|
|
$("#year_bloodPurHbArrow").css("color", "#10d710")
|
|
|
|
|
$("#year_bloodPurHbArrow").html("下降")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var bloodFillIncompleteYearTb = isEmpty(bloodFillIncompleteRateYearYoy) ? 0 : (bloodFillIncompleteRateYear - bloodFillIncompleteRateYearYoy) / bloodFillIncompleteRateYearYoy * 100;
|
|
|
|
|
$("#year_bloodPurTbRate").html(bloodFillIncompleteYearTb + '%')
|
|
|
|
|
if(bloodFillIncompleteYearTb >= 0){
|
|
|
|
|
$("#year_bloodPurTbArrow").css("color", "#d92323")
|
|
|
|
|
$("#year_bloodPurTbArrow").html("上升")
|
|
|
|
|
}else{
|
|
|
|
|
$("#year_bloodPurTbArrow").css("color", "#10d710")
|
|
|
|
|
$("#year_bloodPurTbArrow").html("下降")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//健康教育缺失率
|
|
|
|
|
var healtheduFillIncompleteRateYear = data.healtheduFillIncompleteRateYear;
|
|
|
|
|
var healtheduFillIncompleteRateYearHb = data.healtheduFillIncompleteRateYearHb;
|
|
|
|
|
var healtheduFillIncompleteRateYearYoy = data.healtheduFillIncompleteRateYearYoy;
|
|
|
|
|
|
|
|
|
|
$("#year_educaDefectRate").html(healtheduFillIncompleteRateYear + '%');
|
|
|
|
|
var healtheduFillIncompleteYearHb = isEmpty(healtheduFillIncompleteRateYearHb) ? 0 : (healtheduFillIncompleteRateYear - healtheduFillIncompleteRateYearHb) / healtheduFillIncompleteRateYearHb * 100;
|
|
|
|
|
$("#year_educaDefectHbRate").html(healtheduFillIncompleteYearHb + '%')
|
|
|
|
|
if(healtheduFillIncompleteYearHb >= 0){
|
|
|
|
|
$("#year_educaDefectHbArrow").css("color", "#d92323")
|
|
|
|
|
$("#year_educaDefectHbArrow").html("上升")
|
|
|
|
|
}else{
|
|
|
|
|
$("#year_educaDefectHbArrow").css("color", "#10d710")
|
|
|
|
|
$("#year_educaDefectHbArrow").html("下降")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var healtheduFillIncompleteYearTb = isEmpty(healtheduFillIncompleteRateYearYoy) ? 0 : (healtheduFillIncompleteRateYear - healtheduFillIncompleteRateYearYoy) / healtheduFillIncompleteRateYearYoy * 100;
|
|
|
|
|
$("#year_educaDefectTbRate").html(healtheduFillIncompleteYearTb + '%')
|
|
|
|
|
if(healtheduFillIncompleteYearTb >= 0){
|
|
|
|
|
$("#year_educaDefectTbArrow").css("color", "#d92323")
|
|
|
|
|
$("#year_educaDefectTbArrow").html("上升")
|
|
|
|
|
}else{
|
|
|
|
|
$("#year_educaDefectTbArrow").css("color", "#10d710")
|
|
|
|
|
$("#year_educaDefectTbArrow").html("下降")
|
|
|
|
|
toastr.warning("暂无数据");
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
toastr.warning(data.msg);
|
|
|
|
|
|