heyujie
2021-11-10 f1c611bf480463cac5bcaabcd3f45b8dd0622e7a
src/pages/shuohuangMonitorAnalyze/components/searchForVideoAnalyze.vue
@@ -713,9 +713,25 @@
      });
    },
    hasError(data) {
      let status = true;
      if (!data.EventLst || data.EventLst.length == 0) {
        return false;
      }
      data.EventLst.forEach((item) => {
        if (
          item.Event.indexOf("瞭望") > -1 ||
          item.Event.indexOf("人数变化") > -1
        ) {
          status = false;
          false;
        }
      });
      if (!status) {
        return false;
      }
      const t = data.EventLst.some((x) => x.state == 0);
      return t && data.IsOperate == "1";
    },