From d1ce79c837650689ab47bbf587d076743fcb3a5f Mon Sep 17 00:00:00 2001
From: riku <risaku@163.com>
Date: 星期一, 19 五月 2025 17:25:38 +0800
Subject: [PATCH] 1. 问题审核界面新增场景信息编辑入口 2. 问题审核界面场景图片查询新增图片类型修改功能

---
 src/views/fysp/check/components/CompSubTaskStatistic.vue |   15 +++++++++------
 1 files changed, 9 insertions(+), 6 deletions(-)

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

--
Gitblit v1.9.3