src/views/fysp/check/components/CompSubTaskStatistic.vue
@@ -195,6 +195,7 @@ export default { props: { loading: Boolean, sceneType: Number, subtasks: { type: Array, default: () => [] @@ -269,6 +270,7 @@ reviewTimes: 0 }; this.monitorObjList.forEach((m) => { if (this.sceneType == undefined || m.sceneTypeId == this.sceneType) { _res.total++; const times = parseInt(m.extension1); if (times) { @@ -276,6 +278,7 @@ _res.completedTimes += times; _res.reviewTimes += times - 1; } } }); return _res; }