|
@@ -78,23 +78,23 @@ const columns = [
|
|
|
{ colKey: 'c', title: '客户名称' },
|
|
|
{ colKey: 'd', title: '省份' },
|
|
|
{ colKey: 'e', title: '城市' },
|
|
|
- { colKey: 'f', title: '进场时间' },
|
|
|
- { colKey: 'g', title: '撤场时间' },
|
|
|
- { colKey: 'h', title: '姓名(人员档案号)' },
|
|
|
+ { colKey: 'f', title: '进场时间', width: 170 },
|
|
|
+ { colKey: 'g', title: '撤场时间', width: 170 },
|
|
|
+ { colKey: 'h', title: '姓名(人员档案号)', width: 150 },
|
|
|
{ colKey: 'i', title: '项目角色' },
|
|
|
{ colKey: 'j', title: '供应商' },
|
|
|
- { colKey: 'k', title: '实际出勤(天)' },
|
|
|
- { colKey: 'l', title: '工作日(天)' },
|
|
|
- { colKey: 'm', title: '周末(天)' },
|
|
|
- { colKey: 'n', title: '法定节假日(天)' },
|
|
|
- { colKey: 'o', title: '累计工时(天)' },
|
|
|
- { colKey: 'p', title: '违规工时(天)' },
|
|
|
- { colKey: 'q', title: '考勤异常数(天)' },
|
|
|
- { colKey: 'r', title: '剩余补卡次数' },
|
|
|
- { colKey: 's', title: '待处理异常数' },
|
|
|
+ { colKey: 'k', title: '实际出勤(天)', width: 120 },
|
|
|
+ { colKey: 'l', title: '工作日(天)', width: 110 },
|
|
|
+ { colKey: 'm', title: '周末(天)', width: 100 },
|
|
|
+ { colKey: 'n', title: '法定节假日(天)', width: 140 },
|
|
|
+ { colKey: 'o', title: '累计工时(天)', width: 120 },
|
|
|
+ { colKey: 'p', title: '违规工时(天)', width: 120 },
|
|
|
+ { colKey: 'q', title: '考勤异常数(天)', width: 140 },
|
|
|
+ { colKey: 'r', title: '剩余补卡次数', width: 110 },
|
|
|
+ { colKey: 's', title: '待处理异常数', width: 110 },
|
|
|
{ colKey: 't', title: '提交状态' },
|
|
|
{ colKey: 'u', title: '提交人' },
|
|
|
- { colKey: 'v', title: '提交时间' },
|
|
|
+ { colKey: 'v', title: '提交时间', width: 170 },
|
|
|
{
|
|
|
title: '操作',
|
|
|
colKey: 'operate',
|
|
@@ -264,6 +264,7 @@ const multSubmit = () => {
|
|
|
);
|
|
|
if (!res) return;
|
|
|
MessagePlugin.success('操作成功');
|
|
|
+ selectedRowKeys.value = [];
|
|
|
fetchData();
|
|
|
},
|
|
|
});
|
|
@@ -285,6 +286,7 @@ const multExport = () => {
|
|
|
);
|
|
|
if (!res) return;
|
|
|
MessagePlugin.success('开始下载');
|
|
|
+ selectedRowKeys.value = [];
|
|
|
},
|
|
|
});
|
|
|
};
|