|
@@ -171,7 +171,6 @@ const VisitDetailCom = defineAsyncComponent(() => import('@/views/business/visit
|
|
|
// 定义变量内容
|
|
|
const proTableRef = ref<RefType>(); // 表格ref
|
|
|
// 表格配置项
|
|
|
-const columns = ref<any[]>([]);
|
|
|
const columnsTodo = ref<any[]>([
|
|
|
{ prop: 'statusText', label: '甄别状态', minWidth: 90 },
|
|
|
{ prop: 'screenSendBackApply', label: '重提甄别' },
|
|
@@ -204,21 +203,21 @@ const columnsDone = ref<any[]>([
|
|
|
{ prop: 'order.isProvinceText', label: '省/市工单', minWidth: 90 },
|
|
|
{ prop: 'statusText', label: '甄别状态', minWidth: 100 },
|
|
|
{
|
|
|
- prop: 'screenDetail.newestAuditTime',
|
|
|
+ prop: 'newestAuditTime',
|
|
|
label: '审批时间',
|
|
|
sortable: 'custom',
|
|
|
minWidth: 170,
|
|
|
render: (scope) => {
|
|
|
- return <span>{formatDate(scope.row.screenDetail?.newestAuditTime, 'YYYY-mm-dd HH:MM:SS')}</span>;
|
|
|
+ return <span>{formatDate(scope.row.newestAuditTime, 'YYYY-mm-dd HH:MM:SS')}</span>;
|
|
|
},
|
|
|
},
|
|
|
{
|
|
|
- prop: 'screenDetail.newestBackTime',
|
|
|
+ prop: 'sendBackTime',
|
|
|
label: '退回时间',
|
|
|
sortable: 'custom',
|
|
|
minWidth: 170,
|
|
|
render: (scope) => {
|
|
|
- return <span>{formatDate(scope.row.screenDetail?.actualHandleTime, 'YYYY-mm-dd HH:MM:SS')}</span>;
|
|
|
+ return <span>{formatDate(scope.row.sendBackTime, 'YYYY-mm-dd HH:MM:SS')}</span>;
|
|
|
},
|
|
|
},
|
|
|
{ prop: 'creatorName', label: '申请人', minWidth: 120 },
|