This commit is contained in:
潘晓云
2022-04-18 17:38:38 +08:00
parent ce002d94df
commit 08c00e7aa8
4 changed files with 28 additions and 30 deletions

View File

@ -64,13 +64,13 @@ export class DatatableReportingVerifyResultComponent implements OnInit {
},
{ title: '上传值', index: 'fieldValue', className: 'text-center', width: '150px', },
{
title: '本地校验', index: 'checkStatus', className: 'text-center', width: '100px',
type: 'enum',
enum: {
0: '校验中',
1: '通过',
2: '不通过'
}
title: '本地校验', render: 'checkStatus', className: 'text-center', width: '100px',
// type: 'enum',
// enum: {
// 0: '校验中',
// 1: '通过',
// 2: '不通过'
// }
},
{ title: '错误内容', index: 'remark', className: 'text-center', width: '150px', },
]
@ -120,7 +120,7 @@ export class DatatableReportingVerifyResultComponent implements OnInit {
filterCheckStatus(status: number) {
switch (status) {
case 0:
return '校验中';
return '检测中';
case 1:
return '通过';
case 2: