Commit 7ffbb399 authored by 姬鋆屾's avatar 姬鋆屾

tui

parent 62db9c98
......@@ -299,7 +299,16 @@ export default {
{ label: "其他(天)", prop: "otherDays" },
{ label: "出勤率%", prop: "attendanceRate" },
{
label: "出勤率%",
prop: "attendanceRate",
formatter: (row) => {
console.log(row);
return row.attendanceRate
? Number(row.attendanceRate) * 100 + "%"
: "--";
},
},
{ label: "未按规定打卡(含忘记打卡)", prop: "nonCompliancePunch" },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment