|
@ -260,8 +260,8 @@ function getTopTagDatas(data, vm) {
|
|
|
vm.total=parseFloat(data.index_98+data.index_99)
|
|
|
vm.sendCount=data.index_98
|
|
|
vm.noSendCount=data.index_99
|
|
|
vm.sendRate=vm.total!=0?data.index_98 / vm.total *100 +'%':'0%'
|
|
|
vm.noSendRate=vm.total!=0?data.index_99 / vm.total *100 +'%':'0%'
|
|
|
vm.sendRate=vm.total!=0?(data.index_98 / vm.total *100).toFixed(2) +'%':'0%'
|
|
|
vm.noSendRate=vm.total!=0?(data.index_99 / vm.total *100).toFixed(2) +'%':'0%'
|
|
|
window.onresize = function () {
|
|
|
window.lineCharts.resize(); //日周月折线图
|
|
|
}
|