|
@@ -64,14 +64,14 @@
|
|
>
|
|
>
|
|
<template #sopNo="{ col, row }">
|
|
<template #sopNo="{ col, row }">
|
|
<more-content
|
|
<more-content
|
|
- :content="row[col.colKey]"
|
|
|
|
- @action="openDetailDialog(row)"
|
|
|
|
|
|
+ :content="row[col.colKey]"
|
|
|
|
+ @action="openDetailDialog(row)"
|
|
></more-content>
|
|
></more-content>
|
|
</template>
|
|
</template>
|
|
<template #archivesInfo="{ col, row }">
|
|
<template #archivesInfo="{ col, row }">
|
|
<more-content
|
|
<more-content
|
|
- :content="row[col.colKey]"
|
|
|
|
- @action="openDetailDialog(row)"
|
|
|
|
|
|
+ :content="row[col.colKey]"
|
|
|
|
+ @action="openDetailDialog(row)"
|
|
></more-content>
|
|
></more-content>
|
|
</template>
|
|
</template>
|
|
<template #role="{ col, row }">
|
|
<template #role="{ col, row }">
|
|
@@ -127,8 +127,8 @@
|
|
</t-table>
|
|
</t-table>
|
|
</div>
|
|
</div>
|
|
<detail-dialog
|
|
<detail-dialog
|
|
- v-model:visible="showDetailDialog"
|
|
|
|
- :row="curRow"
|
|
|
|
|
|
+ v-model:visible="showDetailDialog"
|
|
|
|
+ :row="curRow"
|
|
></detail-dialog>
|
|
></detail-dialog>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
@@ -369,7 +369,7 @@ const columns = [
|
|
{ colKey: 'weekdays', title: '工作日(天)', width: 130 },
|
|
{ colKey: 'weekdays', title: '工作日(天)', width: 130 },
|
|
{ colKey: 'weekends', title: '周末(天)', width: 120 },
|
|
{ colKey: 'weekends', title: '周末(天)', width: 120 },
|
|
{ colKey: 'legalHolidays', title: '法定节假日(天)', width: 160 },
|
|
{ colKey: 'legalHolidays', title: '法定节假日(天)', width: 160 },
|
|
- { colKey: 'workHours', title: '累计工时(天)', width: 140 },
|
|
|
|
|
|
+ { colKey: 'workHours', title: '累计工时(小时)', width: 140 },
|
|
{ colKey: 'violationDays', title: '违规工时(天)', width: 140 },
|
|
{ colKey: 'violationDays', title: '违规工时(天)', width: 140 },
|
|
{ colKey: 'dingExceptionCount', title: '考勤异常数(天)', width: 150 },
|
|
{ colKey: 'dingExceptionCount', title: '考勤异常数(天)', width: 150 },
|
|
{ colKey: 'remainCount', title: '剩余补卡次数', width: 120 },
|
|
{ colKey: 'remainCount', title: '剩余补卡次数', width: 120 },
|
|
@@ -395,6 +395,7 @@ const { pagination, tableData, fetchData, search, onChange } = useFetchTable(
|
|
{
|
|
{
|
|
fetchDataHandle: () => {
|
|
fetchDataHandle: () => {
|
|
selectedRowKeys.value = [];
|
|
selectedRowKeys.value = [];
|
|
|
|
+ selectedRowDatas.value = [];
|
|
},
|
|
},
|
|
params,
|
|
params,
|
|
}
|
|
}
|