-
This commit is contained in:
@ -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:
|
||||
|
||||
Reference in New Issue
Block a user