Bladeren bron

系统自检状态改为判断Status

xujunjie 2 jaren geleden
bovenliggende
commit
8d9cf65647
1 gewijzigde bestanden met toevoegingen van 1 en 1 verwijderingen
  1. 1 1
      src/pages/Home/index.js

+ 1 - 1
src/pages/Home/index.js

@@ -123,7 +123,7 @@ const SelfInspection = connect(({ eqSelfInspection, loading }) => ({
 
   const renderStatus = () => {
     if (loading) return <LoadingOutlined />;
-    if (autoReport.warningTotalNum) {
+    if (autoReport.Status > 0) {
       return <span style={{ color: '#FE5850' }}>异常</span>;
     }
     return <span style={{ color: '#F5A623' }}>正常</span>;