flyzto 3 月之前
父节点
当前提交
ba5cf066c1
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      web/apps/web-antd/src/views/match/datatest/index.vue

+ 2 - 0
web/apps/web-antd/src/views/match/datatest/index.vue

@@ -187,6 +187,7 @@ const verifyData = () => {
       invalidSolutions.push(solution)
     }
   });
+  dataCount.value = invalidSolutions.length;
   showDataPretty(invalidSolutions, 2);
   console.log('invalidSolutions', invalidSolutions);
 }
@@ -197,6 +198,7 @@ const filterLive = () => {
     const { info: { ob, hg, ps } } = solution;
     return ps.stage;
   });
+  dataCount.value = liveSolutions.length;
   showDataPretty(liveSolutions, 2);
   console.log('liveSolutions', liveSolutions);
 }