let list2 = [];
for (let month of _this.monthList) {
let item = _this.dataAnalysisAllList.find(function (obj) {
return obj.month == month;
});
if (!isEmpty(item)) {
list2.push(item.frequency);
} else {
list2.push(0);
}
}
03-08
1859