Commit 3b8fab81 authored by 姬鋆屾's avatar 姬鋆屾

feated:优化考勤汇总查询筛选

parent e5c96af7
...@@ -270,7 +270,15 @@ export default { ...@@ -270,7 +270,15 @@ export default {
}, },
beforeRender(row) { beforeRender(row) {
this.tableData.dict = row.dict; this.tableData.dict = row.dict;
console.log(this.tableData.dict);
this.tableData.dict["summaryTypeList"] = {
正常: "正常",
: "请假",
缺卡: "缺卡",
迟到: "迟到",
早退: "早退",
其他: "其他",
};
row.data.forEach((element) => { row.data.forEach((element) => {
if ( if (
element.attendanceStaffStatEntities && element.attendanceStaffStatEntities &&
...@@ -431,12 +439,13 @@ export default { ...@@ -431,12 +439,13 @@ export default {
label: "部门", label: "部门",
fuzzy: false, fuzzy: false,
}, },
// { {
// name: "groupId", name: "summaryTypeList",
// type: "select", type: "select",
// label: "全部考勤组", label: "状态",
// fuzzy: false, fuzzy: false,
// }, multiple: true,
},
// { // {
// name: "classId", // name: "classId",
// type: "select", // type: "select",
......
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