|
@@ -69,7 +69,7 @@ const gridOptions = reactive<any>({
|
|
|
rowConfig: { isHover: true, height: 30, isCurrent: true, useKey: true },
|
|
|
height: 'auto',
|
|
|
columns: [
|
|
|
- { field: 'userName', title: '坐席名称' },
|
|
|
+ { field: 'userName', title: '姓名' },
|
|
|
{
|
|
|
field: 'sendOrderNum',
|
|
|
title: '派单件总量',
|
|
@@ -98,6 +98,10 @@ const gridOptions = reactive<any>({
|
|
|
},
|
|
|
},
|
|
|
},
|
|
|
+ {
|
|
|
+ field: 'sendOrderBackRate',
|
|
|
+ title: '派单件退办信件率',
|
|
|
+ },
|
|
|
{
|
|
|
field: 'sendOrderBackNumber',
|
|
|
title: '退回次数',
|
|
@@ -114,7 +118,7 @@ const gridOptions = reactive<any>({
|
|
|
},
|
|
|
{
|
|
|
field: 'centreFileNum',
|
|
|
- title: '中心归档件总量',
|
|
|
+ title: '话务部归档件总量',
|
|
|
sortable: true,
|
|
|
slots: {
|
|
|
default: ({ row }) => {
|
|
@@ -128,7 +132,7 @@ const gridOptions = reactive<any>({
|
|
|
},
|
|
|
{
|
|
|
field: 'centreFileBackNum',
|
|
|
- title: '中心退回件数',
|
|
|
+ title: '发布退回件数',
|
|
|
sortable: true,
|
|
|
slots: {
|
|
|
default: ({ row }) => {
|
|
@@ -140,9 +144,13 @@ const gridOptions = reactive<any>({
|
|
|
},
|
|
|
},
|
|
|
},
|
|
|
+ {
|
|
|
+ field: 'centreFileBackRate',
|
|
|
+ title: '发布退回件占比',
|
|
|
+ },
|
|
|
{
|
|
|
field: 'centreFileBackNumber',
|
|
|
- title: '中心退回次数',
|
|
|
+ title: '发布退回次数',
|
|
|
sortable: true,
|
|
|
slots: {
|
|
|
default: ({ row }) => {
|