fix(测试计划): 去掉默认值
This commit is contained in:
parent
5bf2f5295a
commit
c0f310a2e7
|
@ -29,7 +29,8 @@
|
||||||
<CaseLevel :case-level="filterContent.value" />
|
<CaseLevel :case-level="filterContent.value" />
|
||||||
</template>
|
</template>
|
||||||
<template #caseLevel="{ record }">
|
<template #caseLevel="{ record }">
|
||||||
<CaseLevel :case-level="record.caseLevel" />
|
<CaseLevel v-if="record.caseLevel" :case-level="record.caseLevel" />
|
||||||
|
<span v-else>-</span>
|
||||||
</template>
|
</template>
|
||||||
<template #[FilterSlotNameEnum.CASE_MANAGEMENT_EXECUTE_RESULT]="{ filterContent }">
|
<template #[FilterSlotNameEnum.CASE_MANAGEMENT_EXECUTE_RESULT]="{ filterContent }">
|
||||||
<ExecuteResult :execute-result="filterContent.value" />
|
<ExecuteResult :execute-result="filterContent.value" />
|
||||||
|
@ -204,7 +205,7 @@
|
||||||
function getCaseLevel(record: TableData) {
|
function getCaseLevel(record: TableData) {
|
||||||
if (record.customFields && record.customFields.length) {
|
if (record.customFields && record.customFields.length) {
|
||||||
const caseItem = record.customFields.find((item: any) => item.fieldName === '用例等级' && item.internal);
|
const caseItem = record.customFields.find((item: any) => item.fieldName === '用例等级' && item.internal);
|
||||||
return caseItem?.options.find((item: any) => item.value === caseItem?.defaultValue)?.text || 'P0';
|
return caseItem?.options.find((item: any) => item.value === caseItem?.defaultValue)?.text;
|
||||||
}
|
}
|
||||||
return undefined;
|
return undefined;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue