diff --git a/Assets/Scripts/4001/MobileAttach10004_4001.cs b/Assets/Scripts/4001/MobileAttach10004_4001.cs index 3dabb7c..579d5a2 100644 --- a/Assets/Scripts/4001/MobileAttach10004_4001.cs +++ b/Assets/Scripts/4001/MobileAttach10004_4001.cs @@ -30,7 +30,7 @@ public class MobileAttach10004_4001 : MonoBehaviour { panel.Init(triggerName, "好的", "班组成员", 1, (intTemp) => { - ScoreManager.instance.Check(triggerName, "线损异常类型研判完成"); + ScoreManager.instance.Check(triggerName, "异常分析"); GameManager.ProcessMgr.IsRightSubProcessStepsTriggerID(triggerName, true); GameManager.UIMgr.HidePanel(); }); diff --git a/Assets/Scripts/ComputerSystem/UI_ComputerSystemJLZXJCPanel.cs b/Assets/Scripts/ComputerSystem/UI_ComputerSystemJLZXJCPanel.cs index dc87401..e1ddfff 100644 --- a/Assets/Scripts/ComputerSystem/UI_ComputerSystemJLZXJCPanel.cs +++ b/Assets/Scripts/ComputerSystem/UI_ComputerSystemJLZXJCPanel.cs @@ -92,7 +92,7 @@ public class UI_ComputerSystemJLZXJCPanel : UI_ComputerSystemBasePanel if (IsTranscribed && IsInterrogation) { GameManager.ProcessMgr.IsRightSubProcessStepsTriggerID(triggerName, true); - ScoreManager.instance.Check(triggerName, "͸"); + ScoreManager.instance.Check(triggerName, "쳣"); if (GameManager.RunModelMgr.ModeType == E_ModeType.Study) { if (tween != null) diff --git a/Assets/Scripts/Score_6001.cs b/Assets/Scripts/Score_6001.cs index da9c088..796a13c 100644 --- a/Assets/Scripts/Score_6001.cs +++ b/Assets/Scripts/Score_6001.cs @@ -153,14 +153,14 @@ public class Score_6001 : ScoreBase base.CheckScore(triggerName, para); if (triggerName == "") { - if (para.ToString() == "͸") + if (para.ToString() == "쳣") { steps[1].SetScore(true);//쳣 } } if (triggerName == "ֻ") { - if (para.ToString() == "쳣") + if (para.ToString() == "쳣") { steps[2].SetScore(true);//1->2 쳣 } diff --git a/Assets/Template/Scripts/Project/Manager/NetManager.cs b/Assets/Template/Scripts/Project/Manager/NetManager.cs index dc2cb20..ff301ed 100644 --- a/Assets/Template/Scripts/Project/Manager/NetManager.cs +++ b/Assets/Template/Scripts/Project/Manager/NetManager.cs @@ -272,7 +272,11 @@ public class NetManager : BaseManager } if (operationType == "3") { - string examUrl = url + webURLDic["试卷"] + examId; + var _cipher = Sm4Base.EncryptECB(Encoding.UTF8.GetBytes(examId), Encrypt._key); + string _id = Hex.ToHexString((Sm4Base.EncryptECB(Encoding.UTF8.GetBytes(examId), Encrypt._key))); + + string examUrl = url + webURLDic["试卷"] + _id; + //string examUrl = url + webURLDic["试卷"] + examId; currentExamData = await Get(examUrl); taskListData = JsonConvert.DeserializeObject(currentExamData.data.backJson); action?.Invoke(true);