fix(接口测试): 高级筛选-修改状态字段下拉值的类型为boolean
This commit is contained in:
parent
8803147b1e
commit
b4c2825ca8
|
@ -367,8 +367,8 @@
|
||||||
type: FilterType.BOOLEAN,
|
type: FilterType.BOOLEAN,
|
||||||
selectProps: {
|
selectProps: {
|
||||||
options: [
|
options: [
|
||||||
{ label: t('case.withoutChanges'), value: 'false' },
|
{ label: t('case.withoutChanges'), value: false },
|
||||||
{ label: t('case.withChanges'), value: 'true' },
|
{ label: t('case.withChanges'), value: true },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -725,8 +725,8 @@
|
||||||
type: FilterType.BOOLEAN,
|
type: FilterType.BOOLEAN,
|
||||||
selectProps: {
|
selectProps: {
|
||||||
options: [
|
options: [
|
||||||
{ label: t('case.withoutChanges'), value: 'false' },
|
{ label: t('case.withoutChanges'), value: false },
|
||||||
{ label: t('case.withChanges'), value: 'true' },
|
{ label: t('case.withChanges'), value: true },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -499,8 +499,8 @@
|
||||||
type: FilterType.BOOLEAN,
|
type: FilterType.BOOLEAN,
|
||||||
selectProps: {
|
selectProps: {
|
||||||
options: [
|
options: [
|
||||||
{ label: t('system.config.email.close'), value: 'false' },
|
{ label: t('system.config.email.close'), value: false },
|
||||||
{ label: t('system.config.email.open'), value: 'true' },
|
{ label: t('system.config.email.open'), value: true },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue