2 Commits ad5594b728 ... 835e16ff0e

Author SHA1 Message Date
  ZhaoJun 835e16ff0e Merge branch 'develop' of http://120.55.44.4:10080/xujunjie/gt_client_pad into develop 1 year ago
  ZhaoJun b17f2b1018 fix: 修改与unity的通知消息 1 year ago

+ 2 - 2
src/pages/SmartOps/index.js

@@ -351,7 +351,7 @@ function SmartOps(props) {
             },
             {
               label: `预测分析`,
-              key: '6',
+              key: '5',
               children: <PredictionAnalysis />,
             },
             {
@@ -377,7 +377,7 @@ function SmartOps(props) {
             },
             {
               label: `经营分析`,
-              key: '5',
+              key: '6',
               children: <OperationManage />,
             },
           ]}

+ 1 - 1
src/pages/SmartOps/predictionAnalysis/PredictionAnalysis.js

@@ -26,7 +26,7 @@ const PredictionAnalysis = () => {
       SysName: '超滤工艺单元',
       SysDevs: devs,
     };
-    UnityAction.sendMsg('ProcessAnalysisDetail', JSON.stringify(msg));
+    UnityAction.sendMsg('ProcessPredictDetail', JSON.stringify(msg));
 
     history.push(`/smart-ops/prediction/${projectId}?code=${code}`);
   };

+ 1 - 1
src/pages/SmartOps/predictionAnalysis/PredictionDetail.js

@@ -47,7 +47,7 @@ const PredictionDetail = () => {
   });
 
   const handleBackClick = () => {
-    UnityAction.sendMsg('ProcessAnalysisDetailBack');
+    UnityAction.sendMsg('ProcessPredictBack');
     history.back();
   };