refactor(接口测试): 高级筛选-MOCK-补充接口路径字段

This commit is contained in:
teukkk 2024-10-23 16:13:11 +08:00 committed by Craftsman
parent 81a2c17ad6
commit b08abe6691
3 changed files with 11 additions and 6 deletions

View File

@ -367,8 +367,8 @@
type: FilterType.BOOLEAN,
selectProps: {
options: [
{ label: t('case.withoutChanges'), value: false },
{ label: t('case.withChanges'), value: true },
{ label: t('case.withoutChanges'), value: 'false' },
{ label: t('case.withChanges'), value: 'true' },
],
},
},

View File

@ -725,8 +725,8 @@
type: FilterType.BOOLEAN,
selectProps: {
options: [
{ label: t('case.withoutChanges'), value: false },
{ label: t('case.withChanges'), value: true },
{ label: t('case.withoutChanges'), value: 'false' },
{ label: t('case.withChanges'), value: 'true' },
],
},
},

View File

@ -478,6 +478,11 @@
options: protocolList.value,
},
},
{
title: 'mockManagement.apiPath',
dataIndex: 'apiPath',
type: FilterType.INPUT,
},
{
title: 'apiTestManagement.apiType',
dataIndex: 'apiMethod',
@ -494,8 +499,8 @@
type: FilterType.BOOLEAN,
selectProps: {
options: [
{ label: t('system.config.email.close'), value: false },
{ label: t('system.config.email.open'), value: true },
{ label: t('system.config.email.close'), value: 'false' },
{ label: t('system.config.email.open'), value: 'true' },
],
},
},