fix(高级搜索): 自定义字段相关搜索问题

This commit is contained in:
shiziyuan9527 2022-07-25 18:31:47 +08:00 committed by shiziyuan9527
parent 5d9004e809
commit 9578fb6318
1 changed files with 5 additions and 2 deletions

View File

@ -109,9 +109,12 @@ export default {
this.visible = false;
},
setCondition(condition, component) {
// custom false
// custom false
//
if (component.custom || (component.label === '严重程度' || component.label === '处理人' || component.label === '状态')) {
if (component.custom ||
(component.label === '严重程度' || component.label === '处理人' || component.label === '状态'
|| component.label === '用例状态' || component.label === '责任人' || component.label === '用例等级'
|| component.label === '测试阶段')) {
this.handleCustomField(condition, component);
return;
}