@@ -166,7 +166,7 @@ export default defineComponent({
if (res.length === 0) seriesData.push(0);
else {
const obj = res.find(
- (item) => item['STATISTICS_START_TIME'] === moment(t).format(YYYYMM)
+ (item) => item['STATISTICS_START_TIME'] === moment(t).format('YYYYMM')
);
seriesData.push(obj ? parseInt(obj['SUM(COUNT)']) : 0);
}