This commit is contained in:
qsh
2024-12-10 17:17:14 +08:00
parent 82f7d4be5e
commit 17208922ad
10 changed files with 629 additions and 31 deletions

View File

@@ -268,6 +268,9 @@ async function getList() {
} else {
tableList.value = data.list.map((it, index) => ({
...it,
userDingAttendanceRespVOList: it.userDingAttendanceRespVOList.sort((pre, cur) =>
pre.employeeName.localeCompare(cur.employeeName)
),
id: index + 1,
edit: it.status == 1 ? '2' : '0'
}))