This commit is contained in:
qsh
2024-12-30 18:05:58 +08:00
parent f70cdfb074
commit e10fedb4dc
2 changed files with 4 additions and 3 deletions

View File

@@ -198,7 +198,8 @@ function getSummaries({ columns, data }) {
const values = data.map((item) => Number(item[column.property]))
if (!values.every((value) => Number.isNaN(value))) {
if (column.property == 'weightSocre') {
sums[index] = 5.6
const employee = employeeOptions.value.find((it) => it.examinedUser == employeeId.value)
sums[index] = employee.scoreTotal + '分'
} else {
sums[index] = ''
}