|
@@ -124,19 +124,19 @@
|
|
|
<vxe-column field="outAnsweredRateString" title="呼出接通率" sortable width="120"></vxe-column>
|
|
|
<vxe-column field="outDurationAvg" title="呼出平均时长" width="130" sortable></vxe-column>
|
|
|
<vxe-column field="loginDuration" title="登录时长" width="120" sortable>
|
|
|
- <template #default="scope">
|
|
|
- {{ formatDurationDay(scope.row.loginDuration) }}
|
|
|
+ <template #default="{ row }">
|
|
|
+ {{ row.loginDurationString }}
|
|
|
</template>
|
|
|
<template #footer="{ row }">
|
|
|
- {{ formatDurationDay(row.loginDuration) }}
|
|
|
+ {{ row.loginDurationString }}
|
|
|
</template>
|
|
|
</vxe-column>
|
|
|
<vxe-column field="restDuration" title="小休时长" width="120" sortable>
|
|
|
- <template #default="scope">
|
|
|
- {{ formatDurationDay(scope.row.restDuration) }}
|
|
|
+ <template #default="{ row }">
|
|
|
+ {{ row.restDurationString }}
|
|
|
</template>
|
|
|
<template #footer="{ row }">
|
|
|
- {{ formatDurationDay(row.restDuration) }}
|
|
|
+ {{ row.restDurationString }}
|
|
|
</template>
|
|
|
</vxe-column>
|
|
|
<vxe-column field="workRateString" title="工作效率" width="120" sortable></vxe-column>
|