From 6a2457772a2ee6b1dd017a67bab1918c05253c35 Mon Sep 17 00:00:00 2001 From: huqibin <762612145@qq.com> Date: Mon, 10 Mar 2025 11:16:37 +0800 Subject: [PATCH] =?UTF-8?q?6001=EF=BC=8C=E7=94=B5=E8=84=91=E3=80=81?= =?UTF-8?q?=E6=89=8B=E6=9C=BA=E5=88=86=E6=95=B0=E8=A7=A6=E5=8F=91tag?= =?UTF-8?q?=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/Scripts/4001/MobileAttach10004_4001.cs | 2 +- .../Scripts/ComputerSystem/UI_ComputerSystemJLZXJCPanel.cs | 2 +- Assets/Scripts/Score_6001.cs | 4 ++-- Assets/Template/Scripts/Project/Manager/NetManager.cs | 6 +++++- 4 files changed, 9 insertions(+), 5 deletions(-) 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);