@@ -597,7 +597,8 @@ function filterData(sourceData, handleCfg, prjData) {
let rst = false;
if (arr.length > 0) {
for (let arrItem of arr) {
- if (arrItem[key]) {
+ if (arrItem[key] !== undefined) {
+ // 可以为null值去判断
rst = private_chkVal(arrItem[key], compVal, compStr);
}
if (rst) {