diff --git a/ruoyi-admin/src/main/resources/templates/system/checkReport/add.html b/ruoyi-admin/src/main/resources/templates/system/checkReport/add.html index c963a86..47099a2 100644 --- a/ruoyi-admin/src/main/resources/templates/system/checkReport/add.html +++ b/ruoyi-admin/src/main/resources/templates/system/checkReport/add.html @@ -336,7 +336,7 @@ row.realScore = max; } this.calculateTotalScore('realScore') - this.postForm.percentageScore = this.postForm.realScore / this.postForm.totalScore * 100; + this.postForm.percentageScore = (this.postForm.realScore / this.postForm.totalScore * 100).toFixed(2); }, handleInput(row, props) { row.realScore = row.realScore.replace(/[^0-9.]/g, ''); diff --git a/ruoyi-admin/src/main/resources/templates/system/checkReport/checkReport.html b/ruoyi-admin/src/main/resources/templates/system/checkReport/checkReport.html index 70426af..f82bfa6 100644 --- a/ruoyi-admin/src/main/resources/templates/system/checkReport/checkReport.html +++ b/ruoyi-admin/src/main/resources/templates/system/checkReport/checkReport.html @@ -133,6 +133,18 @@ title: '创建时间', sortable: true }, + { + field: 'totalScore', + title: '实有项目总分', + }, + { + field: 'realScore', + title: '实有项目得分', + }, + { + field: 'percentageScore', + title: '得分占比(%)', + }, { title: '操作', align: 'center', diff --git a/ruoyi-admin/src/main/resources/templates/system/checkReport/edit.html b/ruoyi-admin/src/main/resources/templates/system/checkReport/edit.html index 2c3532e..06533c7 100644 --- a/ruoyi-admin/src/main/resources/templates/system/checkReport/edit.html +++ b/ruoyi-admin/src/main/resources/templates/system/checkReport/edit.html @@ -385,7 +385,7 @@ } let realScore = parseFloat(this.postForm.realScore) this.postForm.realScore = realScore + parseFloat(row.realScore) - this.postForm.percentageScore = this.postForm.realScore / this.postForm.totalScore * 100; + this.postForm.percentageScore = (this.postForm.realScore / this.postForm.totalScore * 100).toFixed(2); }, handleInput(row, props) { row.realScore = row.realScore.replace(/[^0-9.]/g, '');