feat(cost): 新增生产月报复制功能,修复考勤校验参数问题,优化表格列操作

This commit is contained in:
2026-05-27 13:19:55 +08:00
parent 454d8de6a2
commit e95e9adfcd
6 changed files with 188 additions and 43 deletions

View File

@@ -841,7 +841,7 @@ export default {
startDate: this.dateRangeParams.startDate,
endDate: this.dateRangeParams.endDate
}
this.selectedUserIds = this.allEmployees.map(emp => emp.infoId)
this.selectedUserIds = []
},
cancelCheck() {
@@ -857,7 +857,7 @@ export default {
this.checkLoading = true
const params = {
...this.checkForm,
employeeIds: this.selectedUserIds.join(',')
userIds: this.selectedUserIds.join(',')
}
generateAttendanceCheck(params).then(response => {
this.$modal.msgSuccess("比对成功")