Authored by 毕凯

Merge branch 'hotfix/student-school' into 'master'

学生认证学校筛选规则



See merge request !47
... ... @@ -210,7 +210,7 @@ Filter.prototype = {
return data;
}
return data.filter(function(item) {
regex = new RegExp('^' + key, 'i');
regex = new RegExp(key, 'i');
return regex.test(item[that.__feild__]);
});
},
... ...