riku
2024-11-13 94ada33570ee530dea1d7567671bbb804a75458e
1. 修复任务管理中,场景分类数量统计错误问题
已修改1个文件
2 ■■■ 文件已修改
src/views/fysp/task/components/CompMonitorObjEdit.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/fysp/task/components/CompMonitorObjEdit.vue
@@ -247,7 +247,7 @@
      this.curMonitorObjList.forEach((e) => {
        const d = e.scene
        if (!map.has(d.type)) {
          map.set(d.type, { num: 1 });
          map.set(d.type, { num: 0 });
        }
        map.get(d.type).num++;
      });