|
@@ -183,7 +183,7 @@ export default {
|
|
|
break;
|
|
|
}
|
|
|
// 人员绩效排名
|
|
|
- this.$http.post('/evaluation/report/find/ranking', this.mixins_query).then(({ status, data, msg }) => {
|
|
|
+ this.$http.post('/sc-community/evaluation/report/find/ranking', this.mixins_query).then(({ status, data, msg }) => {
|
|
|
if (status === 0) {
|
|
|
this.kpiSortOption=histogramOption(data);
|
|
|
} else {
|
|
@@ -191,7 +191,7 @@ export default {
|
|
|
}
|
|
|
});
|
|
|
// 绩效等级分布
|
|
|
- this.$http.post('/evaluation/report/find/grade/percentage', this.mixins_query).then(({ status, data, msg }) => {
|
|
|
+ this.$http.post('/sc-community/evaluation/report/find/grade/percentage', this.mixins_query).then(({ status, data, msg }) => {
|
|
|
if (status === 0) {
|
|
|
let chartDataArr = data.map(item=>{return {'name':item.evaluationGrade,'value':item.percentage,'rate':item.percentageRate }})
|
|
|
this.kpiLevelOption=ringFigureOption(chartDataArr);
|
|
@@ -201,7 +201,7 @@ export default {
|
|
|
});
|
|
|
if(this.mixins_query.cycle){
|
|
|
// 绩效人数合格变化趋势
|
|
|
- this.$http.post('/evaluation/report/count/qualified/number', this.mixins_query).then(({ status, data, msg }) => {
|
|
|
+ this.$http.post('/sc-community/evaluation/report/count/qualified/number', this.mixins_query).then(({ status, data, msg }) => {
|
|
|
if (status === 0) {
|
|
|
let chartDataArr = data.map(item=>{return {'mouth':this.mixins_query.year+'年'+ item.month+'月','num':item.qualifiedNumber}})
|
|
|
this.qualifiedOption=lineChartOption('人','#29B6FF',chartDataArr);
|
|
@@ -210,7 +210,7 @@ export default {
|
|
|
}
|
|
|
});
|
|
|
// 人均绩效得分变化趋势
|
|
|
- this.$http.post('/evaluation/report/count/performance/avg', this.mixins_query).then(({ status, data, msg }) => {
|
|
|
+ this.$http.post('/sc-community/evaluation/report/count/performance/avg', this.mixins_query).then(({ status, data, msg }) => {
|
|
|
if (status === 0) {
|
|
|
let chartDataArr = data.map(item=>{return {'mouth':this.mixins_query.year+'年'+ item.month+'月','num':item.avg}})
|
|
|
this.scoreOption=lineChartOption('分','#B72EF6',chartDataArr);
|