fix: 日志打印实体左侧筛选点击事件

This commit is contained in:
chenjinsong
2022-05-23 20:10:24 +08:00
parent 89a71f44f7
commit fa336559ec
2 changed files with 1 additions and 2 deletions

View File

@@ -65,6 +65,7 @@ export default {
computed: {
totalCount2 () {
return function (row) {
console.info(this.totalCount, row, (this.totalCount === 0 ? 0 : parseFloat(row.count / this.totalCount) * 100).toFixed(2))
return (this.totalCount === 0 ? 0 : parseFloat(row.count / this.totalCount) * 100).toFixed(2)
}
}