Browse Source

reactor:菜单目录命名调整;外部市民管理新增删除和修改;

zhangchong 6 months ago
parent
commit
cb0b264216
1 changed files with 4 additions and 5 deletions
  1. 4 5
      src/views/business/discern/todo.vue

+ 4 - 5
src/views/business/discern/todo.vue

@@ -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 },