|
@@ -118,6 +118,15 @@
|
|
|
key: 'score',
|
|
|
minWidth:100
|
|
|
},
|
|
|
+ {
|
|
|
+ title: this.$t('totalAnalysis.sca_chart_text1'),
|
|
|
+ sortable: 'custom',
|
|
|
+ key: 'sRate',
|
|
|
+ minWidth:100,
|
|
|
+ renderType: function(h, params) {
|
|
|
+ return h('span', (Number(params.row.sRate)).toFixed(2) + '%')
|
|
|
+ },
|
|
|
+ },
|
|
|
{
|
|
|
title: this.$t('totalAnalysis.ach_table_text8'),
|
|
|
key: 'classRank',
|
|
@@ -233,9 +242,9 @@
|
|
|
minWidth:100
|
|
|
})
|
|
|
})
|
|
|
- this.earlyPercentColumns.splice(5,this.earlyPercentColumns.length - 5,...itemsColumns)
|
|
|
+ this.earlyPercentColumns.splice(6,this.earlyPercentColumns.length - 6,...itemsColumns)
|
|
|
}else{
|
|
|
- this.earlyPercentColumns.splice(5,this.earlyPercentColumns.length - 5)
|
|
|
+ this.earlyPercentColumns.splice(6,this.earlyPercentColumns.length - 6)
|
|
|
}
|
|
|
return result
|
|
|
},
|