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

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

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