|
@@ -78,13 +78,19 @@
|
|
|
@action="openDetailDialog(row)"
|
|
|
></more-content>
|
|
|
</template>
|
|
|
- <template #role="{ col, row }">
|
|
|
+ <!-- <template #role="{ col, row }">
|
|
|
{{ roleTypeFilter(row[col.colKey]) }}
|
|
|
+ </template> -->
|
|
|
+ <template #scanStartTime="{ col, row }">
|
|
|
+ {{ timestampFilter(row[col.colKey]) }}
|
|
|
+ </template>
|
|
|
+ <template #scanEndTime="{ col, row }">
|
|
|
+ {{ timestampFilter(row[col.colKey]) }}
|
|
|
</template>
|
|
|
- <template #enter-time="{ col, row }">
|
|
|
+ <template #markPaperStartTime="{ col, row }">
|
|
|
{{ timestampFilter(row[col.colKey]) }}
|
|
|
</template>
|
|
|
- <template #outer-time="{ col, row }">
|
|
|
+ <template #markPaperEndTime="{ col, row }">
|
|
|
{{ timestampFilter(row[col.colKey]) }}
|
|
|
</template>
|
|
|
<template #submit-time="{ col, row }">
|
|
@@ -359,19 +365,23 @@ const columns = [
|
|
|
{ colKey: 'customName', title: '客户名称', width: 120 },
|
|
|
{ colKey: 'province', title: '省份', width: 120 },
|
|
|
{ colKey: 'city', title: '城市', width: 120 },
|
|
|
- { colKey: 'approachTime', title: '进场时间', cell: 'enter-time', width: 180 },
|
|
|
- {
|
|
|
- colKey: 'departureTime',
|
|
|
- title: '撤场时间',
|
|
|
- cell: 'outer-time',
|
|
|
- width: 180,
|
|
|
- },
|
|
|
+ { colKey: 'scanStartTime', title: '扫描开始时间', width: 180 },
|
|
|
+ { colKey: 'scanEndTime', title: '扫描结束时间', width: 180 },
|
|
|
+ { colKey: 'markPaperStartTime', title: '阅卷开始时间', width: 180 },
|
|
|
+ { colKey: 'markPaperEndTime', title: '阅卷结束时间', width: 180 },
|
|
|
+ // { colKey: 'approachTime', title: '进场时间', cell: 'enter-time', width: 180 },
|
|
|
+ // {
|
|
|
+ // colKey: 'departureTime',
|
|
|
+ // title: '撤场时间',
|
|
|
+ // cell: 'outer-time',
|
|
|
+ // width: 180,
|
|
|
+ // },
|
|
|
{
|
|
|
colKey: 'archivesInfo',
|
|
|
title: '姓名(人员档案号)',
|
|
|
width: 260,
|
|
|
},
|
|
|
- { colKey: 'roleType', title: '项目角色', width: 120, cell: 'role' },
|
|
|
+ { colKey: 'roleName', title: '项目角色', width: 120 },
|
|
|
{ colKey: 'supplierName', title: '供应商' },
|
|
|
{ colKey: 'actualDays', title: '实际出勤(天)', width: 140 },
|
|
|
{ colKey: 'weekdays', title: '工作日(天)', width: 130 },
|