Commit 7310edf3 authored by 姬鋆屾's avatar 姬鋆屾

推修改考勤绩效记录表格

parent 7d53eba5
......@@ -201,10 +201,15 @@ export default {
},
],
columns: [
{ type: "selection", width: 50 },
{ type: "index", label: "序号", width: 50 },
{ type: "selection", width: 50, fixed: "left" },
{ type: "index", label: "序号", width: 50, fixed: "left" },
{ label: "姓名", prop: "staffName", formatter: this.formatter },
{
label: "姓名",
prop: "staffName",
formatter: this.formatter,
fixed: "left",
},
{ label: "窗口编号", prop: "windowNum", formatter: this.formatter },
......@@ -221,20 +226,20 @@ export default {
{
label: "异常时间",
prop: "errorTime",
width: 240,
width: 100,
formatter: this.formatterDate,
},
{
label: "上下班时间",
width: 100,
width: 110,
prop: "goOffTimeStr",
},
{
label: "实际打卡时间",
prop: "actualAttendTime",
width: 240,
width: 100,
formatter: this.formatterDate,
},
......@@ -274,7 +279,7 @@ export default {
{
label: "加分/扣分时间",
prop: "deductTime",
width: 150,
width: 100,
formatter: this.formatterDate,
},
......@@ -313,6 +318,7 @@ export default {
{
label: "操作",
width: 110,
fixed: "right",
formatter: (row) => {
return row.checkStatus == 1 ? (
......
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