riku
2024-10-21 e8b4c98c16b6721a7d6617aecf82bfbc23655a58
src/views/fysp/check/ProCheck.vue
@@ -237,8 +237,9 @@
      });
    },
    // 关闭设备图弹窗
    beforeDeviceShowDialogclose() {
      this.deviceShowDialog = false;
    beforeDeviceShowDialogclose(done) {
      // this.deviceShowDialog = false;
      done()
    },
    // 关闭任意图片弹窗
    beforeAnyPhotoDialogclose() {
@@ -252,12 +253,16 @@
    },
    //查询子任务统计信息
    search(formSearch) {
      this.topTask = formSearch.obj;
      this.topTask = formSearch.topTask;
      this.sideLoading = true;
      this.mainLoading = true;
      this.curProList = [];
      this.curSubtask = {};
      taskApi.getSubtaskSummary(formSearch).then((res) => {
      const param = {
        topTaskId: formSearch.topTask.tguid,
        sceneTypeId :formSearch.sceneTypeId
      }
      taskApi.getSubtaskSummary(param).then((res) => {
        const list = [];
        res.forEach((s) => {
          const t = this.getSubtaskType(s);