-
This commit is contained in:
@ -163,7 +163,7 @@ export class DatatableFundReportingComponent implements OnInit {
|
||||
title: '本地校验',
|
||||
type: 'string',
|
||||
enum: [
|
||||
{ label: '校验中', value: '0' },
|
||||
{ label: '检测中', value: '0' },
|
||||
{ label: '通过', value: '1' },
|
||||
{ label: '不通过', value: '2' }
|
||||
],
|
||||
|
||||
@ -169,7 +169,7 @@ export class DatatableOrderReportingComponent implements OnInit {
|
||||
title: '本地校验',
|
||||
type: 'string',
|
||||
enum: [
|
||||
{ label: '校验中', value: 0 },
|
||||
{ label: '检测中', value: 0 },
|
||||
{ label: '通过', value: 1 },
|
||||
{ label: '不通过', value: 2 }
|
||||
],
|
||||
@ -583,7 +583,7 @@ export class DatatableOrderReportingComponent implements OnInit {
|
||||
filterCheckStatus(status: number) {
|
||||
switch (status) {
|
||||
case 0:
|
||||
return '校验中';
|
||||
return '检测中';
|
||||
case 1:
|
||||
return '通过';
|
||||
case 2:
|
||||
|
||||
Reference in New Issue
Block a user