fix(高级搜索): 自定义字段相关搜索问题
This commit is contained in:
parent
5d9004e809
commit
9578fb6318
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue