this.copyRightList = [{name:'张三',age:21}{name:'李四',age:21}{name:'王麻子',age:25}]
this.selectedVal :是动态的,下拉选择年龄;或者动态选中字符串
if( this.copyRightList.length>0){
countryInfo = this.copyRightList.filter(item => item.age.indexOf(this.selectedVal) != -1);
return this.rightRealm;
}