//过滤出需要的值
this.dataItemTypeSelectOption = response.data.filter(ele => ele.dictValue === 'tree'||ele.dictValue === 'float4');
//过滤不需要的值
this.dataItemTypeSelectOption = response.data.filter((item) => {
return item.dictValue !== "float4"&&item.dictValue !== "tree"&&item.dictValue !== "float";
});
过滤前
数据类型
过滤后