|
@@ -184,6 +184,7 @@ function resizeBox(){
|
|
|
dateType = 1
|
|
|
getBarData(1)
|
|
|
getAverageScoreLis()
|
|
|
+ getEveryDeptLevel()
|
|
|
})
|
|
|
$(".monthYear .year").click(function(){
|
|
|
$(this).css({
|
|
@@ -196,8 +197,9 @@ function resizeBox(){
|
|
|
backgroundColor:'#203463'
|
|
|
})
|
|
|
dateType = 2
|
|
|
- getAverageScoreLis()
|
|
|
getBarData(2)
|
|
|
+ getAverageScoreLis()
|
|
|
+ getEveryDeptLevel()
|
|
|
})
|
|
|
}
|
|
|
//控制台数
|
|
@@ -1061,6 +1063,11 @@ function barChartLevel(dataX,dataY){
|
|
|
position: 'right',
|
|
|
axisPointer: { // 坐标轴指示器,坐标轴触发有效
|
|
|
type: 'line' // 默认为直线,可选为:'line' | 'shadow'
|
|
|
+ },
|
|
|
+ formatter: function(param) {
|
|
|
+ return `<div style="color:#fff;">${param[0].name}<br>
|
|
|
+ <i style="background:#00A1FF;margin-right:5px;display:inline-block;width:8px;height:8px;border-radius:50%"></i>病案首页合格率:${param[0]&¶m[0].value}%<br>
|
|
|
+ </div>`
|
|
|
}
|
|
|
},
|
|
|
grid: {
|
|
@@ -1119,7 +1126,7 @@ function barChartLevel(dataX,dataY){
|
|
|
|
|
|
],
|
|
|
title:[{
|
|
|
- text: dataX.length>0?'分数':'',
|
|
|
+ text: dataX.length>0?'百分比':'',
|
|
|
top: 15,
|
|
|
left: 10,
|
|
|
textStyle: {
|